You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
972 B
41 lines
972 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit multilib toolchain-funcs flag-o-matic
|
|
|
|
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:*
|
|
sys-devel/clang"
|
|
RDEPEND="${DEPEND}"
|
|
QA_PREBUILT="/usr/share/afl/testcases/others/elf/small_exec.elf"
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" \
|
|
PREFIX="/usr" \
|
|
HELPER_PATH="/usr/$(get_libdir)/afl" \
|
|
DOC_PATH="/usr/share/doc/${PF}"
|
|
CC="clang" CXX="clang++" strip-unsupported-flags
|
|
cd llvm_mode
|
|
emake \
|
|
PREFIX="/usr" \
|
|
HELPER_PATH="/usr/$(get_libdir)/afl" \
|
|
DOC_PATH="/usr/share/doc/${PF}"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" \
|
|
PREFIX="/usr" \
|
|
HELPER_PATH="/usr/$(get_libdir)/afl" \
|
|
DOC_PATH="/usr/share/doc/${PF}" \
|
|
install
|
|
}
|