blob: 96e792285598750f4c7244eadfb9649722bd9190 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/biew/biew-5.5.0.ebuild,v 1.1 2004/02/12 11:27:20 spock Exp $
IUSE="slang ncurses"
DESCRIPTION="A multiplatform portable viewer of binary files with built-in editor in binary, hexadecimal and disassembler modes."
HOMEPAGE="http://biew.sourceforge.net/"
SRC_URI="mirror://sourceforge/biew/${PN}-550.tar.bz2"
SLOT="0"
KEYWORDS="~x86"
LICENSE="GPL-2"
DEPEND="ncurses? ( >=sys-libs/ncurses-5.3 )
slang? ( >=sys-libs/slang-1.4.9 )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-550"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s/USE_MOUSE=.*/USE_MOUSE=y/" makefile
sed -i 's:/usr/local:/usr:' biewlib/sysdep/generic/unix/os_dep.c
sed -i "s/CFLAGS += -O2 -fomit-frame-pointer -DNDEBUG=1/CFLAGS +=/" makefile.inc
# sed -i "s/TARGET_OS=.*/TARGET_OS=linux/" makefile
}
src_compile() {
cd ${S}
local scrnlib
if [ `use ncurses` ] ; then
scrnlib="ncurses"
elif [ `use slang` ] ; then
scrnlib="slang"
else
scrnlib="vt100"
fi
emake HOST_CFLAGS="${CFLAGS}" \
TARGET_SCREEN_LIB=${scrnlib} || 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/*
}
|