blob: 99ebcd48cda4f864fa61c9021484e651ac60590d (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/fenris/fenris-0.07m.ebuild,v 1.5 2003/04/12 10:25:07 seemant Exp $
IUSE=""
S=${WORKDIR}/${PN}
DESCRIPTION="Fenris is a tracer, GUI debugger, analyzer, partial decompiler and much more"
HOMEPAGE="http://razor.bindview.com/tools/fenris/"
SRC_URI="http://razor.bindview.com/tools/fenris/${PN}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND=">=sys-apps/portage-2.0.47-r10
sys-libs/libtermcap-compat
app-misc/screen
sys-libs/ncurses
sys-devel/gdb"
RDEPEND="sys-apps/gawk"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/makefile.diff
epatch ${FILESDIR}/build.diff
}
src_compile() {
# We need to obtain libc version, this should be a reliable way :)
# because internal script doesn't detect libc version during the emerge
LIBC=`ls /lib/libc-* | awk -F- '{print $2}' | awk -F.so '{print $1}'`
make all CFLAGS="$CFLAGS" LIBCVER=${LIBC} || die
}
src_install() {
# We are doing make install by hand
cd ${S}
dodir /usr/share/fenris
# Man pages
doman doc/man/*
# Documents
dodir /usr/share/fenris/doc
insinto /usr/share/fenris/doc
doins doc/*
# Fingeprints
insinto /etc
doins fnprints.dat
# Executables
into /usr
dobin fenris fprints getfprints ragnarok fenris-bug \
ragsplit dress aegir nc-aegir spliter.pl
einfo "These new tools are installed in /usr/bin:"
einfo "fenris fprints getfprints ragnarok fenris-bug ragsplit "
einfo "dress aegir nc-aegir spliter.pl"
einfo "Please refer to the manpage for fenris for further information"
}
|