66 lines
1.5 KiB
Bash
66 lines
1.5 KiB
Bash
# 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.ebuild,v 1.9 2008/02/09 11:08:40 drac 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"
|
|
|
|
DEPEND="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
|
|
|
|
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() {
|
|
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/*
|
|
}
|