blob: e864a1612595a662303b5ea4443c33be8a1f8090 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/examiner/examiner-0.5-r1.ebuild,v 1.1 2005/05/22 00:49:26 dragonheart Exp $
inherit eutils
DESCRIPTION="Examiner is an application that utilizes the objdump command to disassemble and comment foreign executable binaries"
HOMEPAGE="http://www.academicunderground.org/examiner/"
SRC_URI="http://www.academicunderground.org/examiner/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND="dev-lang/perl"
src_compile() {
einfo "nothing to compile"
}
src_install() {
epatch ${FILESDIR}/${P}-perl.patch
dodir /usr/bin /usr/share/examiner /usr/share/man/man1
dodir /usr/share/doc/examiner-0.5
make MAN=${D}/usr/share/man/man1 DOC=${D}/usr/share/doc/examiner-0.5 \
BIN=${D}/usr/bin SHARE=${D}/usr/share/examiner install
dodoc docs/*
gzip ${D}/usr/share/doc/examiner-0.5/utils/*
}
|