Received: by mail.netbsd.org (Postfix, from userid 605) id A4D4B84DB1; Wed, 13 May 2020 04:30:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2BA9984DAF for ; Wed, 13 May 2020 04:30:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id rEC2wsooQOXS for ; Wed, 13 May 2020 04:30:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 81BAB84D63 for ; Wed, 13 May 2020 04:30:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 794FEFB27; Wed, 13 May 2020 04:30:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158934424035780" MIME-Version: 1.0 Date: Wed, 13 May 2020 04:30:40 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/net/smokeping To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200513043040.794FEFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158934424035780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Wed May 13 04:30:40 UTC 2020 Modified Files: pkgsrc/net/smokeping: Makefile Log Message: net/smokeping: fix library path To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/net/smokeping/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158934424035780 Content-Disposition: inline Content-Length: 937 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/smokeping/Makefile diff -u pkgsrc/net/smokeping/Makefile:1.45 pkgsrc/net/smokeping/Makefile:1.46 --- pkgsrc/net/smokeping/Makefile:1.45 Thu Apr 30 12:03:32 2020 +++ pkgsrc/net/smokeping/Makefile Wed May 13 04:30:40 2020 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.45 2020/04/30 12:03:32 bouyer Exp $ +# $NetBSD: Makefile,v 1.46 2020/05/13 04:30:40 rillig Exp $ DISTNAME= smokeping-2.7.3 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= http://oss.oetiker.ch/smokeping/pub/ @@ -70,7 +71,7 @@ SUBST_MESSAGE.files= Fixing configuratio SUBST_CLASSES+= libs SUBST_STAGE.libs= pre-configure SUBST_FILES.libs= bin/smokeping_cgi bin/smokeping bin/smokeinfo bin/tSmoke -SUBST_SED.libs= -e "s|FindBin::Bin/../lib|FindBin::Bin/../lib/smokeping|g" +SUBST_SED.libs= -e "s|FindBin::RealBin/../lib|FindBin::RealBin/../lib/smokeping|g" SUBST_MESSAGE.libs= Fixing library path OWN_DIRS+= ${SMOKEPING_HOME} --_----------=_158934424035780--