blob: 34681c25f9c2c3b5e49e979758601377d325cfd2 (
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
|
# Copyright 1999-2006 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.ebuild,v 1.6 2006/08/13 10:58:43 spock Exp $
inherit flag-o-matic
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}${PV//./}.tar.bz2"
SLOT="0"
KEYWORDS="x86 amd64"
LICENSE="GPL-2"
DEPEND="ncurses? ( >=sys-libs/ncurses-5.3 )
slang? ( <sys-libs/slang-2.0.0 )"
S="${WORKDIR}/${PN}-${PV//./}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/biew-562-lvalue-casts.patch
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/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() {
cd ${S}
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} || 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/*
}
|