From ece7813b689349abf929bf7007997e95e6540db0 Mon Sep 17 00:00:00 2001 From: "Rick Farina (Zero_Chaos)" Date: Tue, 5 May 2020 15:51:23 -0400 Subject: [PATCH] ppscan: fix fatal qa error and ldflags --- .../ppscan/{ppscan-0.3.ebuild => ppscan-0.3-r1.ebuild} | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) rename net-analyzer/ppscan/{ppscan-0.3.ebuild => ppscan-0.3-r1.ebuild} (77%) diff --git a/net-analyzer/ppscan/ppscan-0.3.ebuild b/net-analyzer/ppscan/ppscan-0.3-r1.ebuild similarity index 77% rename from net-analyzer/ppscan/ppscan-0.3.ebuild rename to net-analyzer/ppscan/ppscan-0.3-r1.ebuild index feb59b43a..69bc9c989 100644 --- a/net-analyzer/ppscan/ppscan-0.3.ebuild +++ b/net-analyzer/ppscan/ppscan-0.3-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2020 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=7 DESCRIPTION="Port scanner with HTTP and FTP tunneling support" HOMEPAGE="https://packetstormsecurity.com/files/82897/PPScan-Portscanner-0.3.html" @@ -17,11 +17,10 @@ DEPEND="" RDEPEND="" src_compile() { - gcc -o ppscan ppscan.c -lpthread $CFLAGS || die "failed to compile" + gcc -o ppscan ppscan.c -lpthread ${CFLAGS} ${LDFLAGS} || die "failed to compile" } src_install() { dobin ppscan dodoc README - prepall }