diff options
author | Hanno Böck <hanno@gentoo.org> | 2014-11-27 23:00:17 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2014-11-27 23:00:17 +0000 |
commit | 2869e1081ae2855e810a6ba6a42fc2a4989fb07e (patch) | |
tree | 08399f5c6a6720fce9824abdbeb420ddc6e7983a /app-forensics | |
parent | Add guava:14 dependency. Change virtual-jdk to version 1.6. (diff) | |
download | gentoo-2-2869e1081ae2855e810a6ba6a42fc2a4989fb07e.tar.gz gentoo-2-2869e1081ae2855e810a6ba6a42fc2a4989fb07e.tar.bz2 gentoo-2-2869e1081ae2855e810a6ba6a42fc2a4989fb07e.zip |
Bump.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key BBB51E42)
Diffstat (limited to 'app-forensics')
-rw-r--r-- | app-forensics/afl/ChangeLog | 7 | ||||
-rw-r--r-- | app-forensics/afl/afl-0.74b.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/app-forensics/afl/ChangeLog b/app-forensics/afl/ChangeLog index e409662578be..5f6dae0ea39f 100644 --- a/app-forensics/afl/ChangeLog +++ b/app-forensics/afl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-forensics/afl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/afl/ChangeLog,v 1.2 2014/11/19 23:52:32 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-forensics/afl/ChangeLog,v 1.3 2014/11/27 23:00:17 hanno Exp $ + +*afl-0.74b (27 Nov 2014) + + 27 Nov 2014; <hanno@gentoo.org> +afl-0.74b.ebuild: + Bump. *afl-0.57b (19 Nov 2014) diff --git a/app-forensics/afl/afl-0.74b.ebuild b/app-forensics/afl/afl-0.74b.ebuild new file mode 100644 index 000000000000..dd710c47646a --- /dev/null +++ b/app-forensics/afl/afl-0.74b.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/afl/afl-0.74b.ebuild,v 1.1 2014/11/27 23:00:17 hanno Exp $ + +EAPI=5 +inherit multilib toolchain-funcs + +DESCRIPTION="american fuzzy lop - compile-time instrumentation fuzzer" +HOMEPAGE="http://lcamtuf.coredump.cx/afl/" +SRC_URI="http://lcamtuf.coredump.cx/afl/releases//${P}.tgz" +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +DEPEND="sys-devel/gcc" +RDEPEND="${DEPEND}" + +src_compile() { + emake CC="$(tc-getCC)" \ + HELPER_PATH="/usr/$(get_libdir)/afl" +} + +src_install() { + emake DESTDIR="${D}" \ + PREFIX="/usr" \ + HELPER_PATH="/usr/$(get_libdir)/afl" \ + DOC_PATH="/usr/share/doc/${PF}" \ + install +} |