diff --git a/app-fuzz/http-fuzz/http-fuzz-0.1.ebuild b/app-fuzz/http-fuzz/http-fuzz-0.1.ebuild index 1fa5793b2..014f151f3 100644 --- a/app-fuzz/http-fuzz/http-fuzz-0.1.ebuild +++ b/app-fuzz/http-fuzz/http-fuzz-0.1.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2023 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /root/portage/app-fuzz/http-fuzz/http-fuzz-0.1.ebuild,v 1.1.1.1 2006/03/08 21:22:06 grimmlin Exp $ +EAPI=8 + DESCRIPTION="A http fuzzer" HOMEPAGE="none" SRC_URI="" @@ -12,7 +14,13 @@ KEYWORDS="~x86 ~amd64 ~ppc" IUSE="" DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +# required by Portage, as we have no SRC_URI... +S="${WORKDIR}" src_install() { - newbin "${FILESDIR}"/"${PN}".pl "${PN}" + newbin "${FILESDIR}/${PN}".pl "${PN}" + }