blob: bb9a161eb665298ce6a1fb2d6774da71129ae814 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/biew/biew-5.6.2-r1.ebuild,v 1.2 2008/10/05 11:57:02 spock Exp $
inherit flag-o-matic
DESCRIPTION="A portable viewer of binary files, hexadecimal and disassembler modes."
HOMEPAGE="http://biew.sourceforge.net"
SRC_URI="mirror://sourceforge/biew/${PN}${PV//./}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="slang ncurses gpm"
DEPEND="gpm? ( sys-libs/gpm )
ncurses? ( >=sys-libs/ncurses-5.3 )
slang? ( >=sys-libs/slang-1.4 )"
S=${WORKDIR}/${PN}-${PV//./}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/biew-562-lvalue-casts.patch
local mouse
if use gpm; then
mouse=y
else
mouse=n
fi
sed -i "s/USE_MOUSE=.*/USE_MOUSE=${mouse}/" makefile
sed -i 's:/usr/local:/usr:' biewlib/sysdep/generic/unix/os_dep.c
sed -i "s/CFLAGS += -O2 -fomit-frame-pointer/CFLAGS +=/" makefile.inc
sed -i 's/bool/__bool/g' plugins/bin/ne.c
# sed -i "s/TARGET_OS=.*/TARGET_OS=linux/" makefile
# disable inline assembly for non-x86 platforms
use x86 || sed -i "s/TARGET_PLATFORM=.*/TARGET_PLATFORM=generic/" makefile
}
src_compile() {
local scrnlib
if use ncurses ; then
scrnlib="ncurses"
elif use slang ; then
scrnlib="slang"
else
scrnlib="vt100"
fi
filter-flags -fPIC
emake HOST_CFLAGS="${CFLAGS}" \
TARGET_SCREEN_LIB=${scrnlib} compilation="debug" || die
}
src_install() {
dobin biew
dodoc doc/*.txt
insinto /usr/lib/biew
doins bin_rc/biew.hlp
doins bin_rc/skn/standard.skn
insinto /usr/lib/biew/skn
doins bin_rc/skn/*
insinto /usr/lib/biew/xlt
doins bin_rc/xlt/*
}
|