diff options
author | 2012-10-06 08:43:17 +0000 | |
---|---|---|
committer | 2012-10-06 08:43:17 +0000 | |
commit | 88e54b91cd8b2980f5948d0e66c664b85f8705e5 (patch) | |
tree | 38e02278d012dedea99ef46b0a747010b1b800f9 /app-forensics/examiner | |
parent | Version bump (bug #437302). Remove old. (diff) | |
download | gentoo-2-88e54b91cd8b2980f5948d0e66c664b85f8705e5.tar.gz gentoo-2-88e54b91cd8b2980f5948d0e66c664b85f8705e5.tar.bz2 gentoo-2-88e54b91cd8b2980f5948d0e66c664b85f8705e5.zip |
New revision, fixes bug #241256 and a lot of QA issues. Bumped to EAPI 4
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/examiner')
-rw-r--r-- | app-forensics/examiner/ChangeLog | 7 | ||||
-rw-r--r-- | app-forensics/examiner/examiner-0.5-r2.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/app-forensics/examiner/ChangeLog b/app-forensics/examiner/ChangeLog index 59312ef727fe..3c8ac831642b 100644 --- a/app-forensics/examiner/ChangeLog +++ b/app-forensics/examiner/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-forensics/examiner # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/examiner/ChangeLog,v 1.8 2012/09/08 02:18:50 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/examiner/ChangeLog,v 1.9 2012/10/06 08:43:17 pinkbyte Exp $ + +*examiner-0.5-r2 (06 Oct 2012) + + 06 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> +examiner-0.5-r2.ebuild: + New revision, fixes bug #241256 and a lot of QA issues. Bumped to EAPI 4 08 Sep 2012; Tim Harder <radhermit@gentoo.org> metadata.xml: Remove redundant maintainer from metadata. diff --git a/app-forensics/examiner/examiner-0.5-r2.ebuild b/app-forensics/examiner/examiner-0.5-r2.ebuild new file mode 100644 index 000000000000..e42304615b75 --- /dev/null +++ b/app-forensics/examiner/examiner-0.5-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/examiner/examiner-0.5-r2.ebuild,v 1.1 2012/10/06 08:43:17 pinkbyte Exp $ + +EAPI="4" + +inherit eutils + +DESCRIPTION="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="" +RDEPEND="dev-lang/perl" + +src_prepare() { + # Do not install docs through Makefile wrt bug #241256 + sed -i -e '/$(DOC)/d' Makefile || die 'sed failed' +} + +src_compile() { + : +} + +src_install() { + epatch "${FILESDIR}"/${P}-perl.patch + dodir /usr/bin /usr/share/examiner /usr/share/man/man1 + + make MAN="${D}/usr/share/man/man1" \ + BIN="${D}/usr/bin" SHARE="${D}/usr/share/examiner" install + dodoc docs/{README*,BUGS,CHANGELOG,TODO,TUTORIAL} + dodoc -r utils +} |