From 0b3d6c3f5a70894aa5a6d37646543c6dce114b2d Mon Sep 17 00:00:00 2001 From: "Richard Redditch:. 'The Artist" <83588736+richardredditch@users.noreply.github.com> Date: Sat, 4 Feb 2023 13:02:40 +0000 Subject: [PATCH] app-fuzz/smtp-fuzz :: ebuild update updated ebuild to emerge cleanly with no errors --- app-fuzz/smtp-fuzz/smtp-fuzz-0.1.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app-fuzz/smtp-fuzz/smtp-fuzz-0.1.ebuild b/app-fuzz/smtp-fuzz/smtp-fuzz-0.1.ebuild index f832219f7..5b8eb5915 100644 --- a/app-fuzz/smtp-fuzz/smtp-fuzz-0.1.ebuild +++ b/app-fuzz/smtp-fuzz/smtp-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/smtp-fuzz/smtp-fuzz-0.1.ebuild,v 1.1.1.1 2006/03/08 21:22:06 grimmlin Exp $ +EAPI=8 + DESCRIPTION="A smtp fuzzer" HOMEPAGE="none" SRC_URI="" @@ -13,7 +15,11 @@ IUSE="" DEPEND="" RDEPEND="dev-lang/perl" +BDEPEND="" + +# required by Portage, as we have no SRC_URI... +S="${WORKDIR}" src_install() { - newbin "${FILESDIR}"/"${PN}".pl "${PN}" + newbin "${FILESDIR}/${PN}".pl "${PN}" }