Received: by mail.netbsd.org (Postfix, from userid 605) id D3E9984E50; Sat, 12 Oct 2019 20:00:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5D15184E4F for ; Sat, 12 Oct 2019 20:00:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id kd_tIVZCOa5K for ; Sat, 12 Oct 2019 20:00:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B8A8A84CE8 for ; Sat, 12 Oct 2019 20:00:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B6374FBF4; Sat, 12 Oct 2019 20:00:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157091043011840" MIME-Version: 1.0 Date: Sat, 12 Oct 2019 20:00:30 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/games/fillets-ng To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20191012200030.B6374FBF4@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. --_----------=_157091043011840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat Oct 12 20:00:30 UTC 2019 Modified Files: pkgsrc/games/fillets-ng: Makefile Log Message: games/fillets-ng: fix path to documentation files To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/games/fillets-ng/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157091043011840 Content-Disposition: inline Content-Length: 948 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/fillets-ng/Makefile diff -u pkgsrc/games/fillets-ng/Makefile:1.37 pkgsrc/games/fillets-ng/Makefile:1.38 --- pkgsrc/games/fillets-ng/Makefile:1.37 Sat Sep 7 14:49:58 2019 +++ pkgsrc/games/fillets-ng/Makefile Sat Oct 12 20:00:30 2019 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.37 2019/09/07 14:49:58 nia Exp $ +# $NetBSD: Makefile,v 1.38 2019/10/12 20:00:30 rillig Exp $ # DISTNAME= fillets-ng-1.0.1 +PKGREVISION= 1 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fillets/} @@ -25,7 +26,7 @@ SUBST_CLASSES+= man SUBST_STAGE.man= pre-configure SUBST_FILES.man= fillets.6 SUBST_MESSAGE.man= Fixing documentation path in the manual page. -SUBST_SED.man= "s,/usr/share/doc/fillets-ng/html/manual.html,${PREFIX}/share/doc/html/fillets-ng/manual.html," +SUBST_SED.man= -e "s,/usr/share/doc/fillets-ng/html/manual.html,${PREFIX}/share/doc/fillets-ng/manual.html," LUA_VERSIONS_ACCEPTED= 51 --_----------=_157091043011840--