Received: by mail.netbsd.org (Postfix, from userid 605) id 33F2E84DCA; Sat, 12 Oct 2019 20:23:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B197484DBE for ; Sat, 12 Oct 2019 20:23:07 +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 iLFcrFFJ3ayq for ; Sat, 12 Oct 2019 20:23:07 +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 3B0F584C6C for ; Sat, 12 Oct 2019 20:23:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 34854FBF4; Sat, 12 Oct 2019 20:23:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157091178757040" MIME-Version: 1.0 Date: Sat, 12 Oct 2019 20:23:07 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/misc/bbweather To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20191012202307.34854FBF4@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. --_----------=_157091178757040 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:23:07 UTC 2019 Modified Files: pkgsrc/misc/bbweather: Makefile PLIST Log Message: misc/bbweather: fix location of HTML documentation To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/misc/bbweather/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/misc/bbweather/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157091178757040 Content-Disposition: inline Content-Length: 1808 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/bbweather/Makefile diff -u pkgsrc/misc/bbweather/Makefile:1.32 pkgsrc/misc/bbweather/Makefile:1.33 --- pkgsrc/misc/bbweather/Makefile:1.32 Sun Aug 11 13:21:54 2019 +++ pkgsrc/misc/bbweather/Makefile Sat Oct 12 20:23:07 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.32 2019/08/11 13:21:54 wiz Exp $ +# $NetBSD: Makefile,v 1.33 2019/10/12 20:23:07 rillig Exp $ # DISTNAME= bbweather-0.6.3 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= misc MASTER_SITES= http://www.netmeister.org/apps/ EXTRACT_SUFX= .tar.bz2 @@ -17,6 +17,7 @@ GNU_CONFIGURE= YES REPLACE_PERL= GrabWeather USE_LANGUAGES= c c++ USE_TOOLS+= gunzip perl:run +MAKE_FLAGS+= docdir=${PREFIX}/share/doc/${PKGBASE} post-install: cd ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 && ${GUNZIP_CMD} GrabWeather.1.gz Index: pkgsrc/misc/bbweather/PLIST diff -u pkgsrc/misc/bbweather/PLIST:1.5 pkgsrc/misc/bbweather/PLIST:1.6 --- pkgsrc/misc/bbweather/PLIST:1.5 Sun Jun 14 20:52:11 2009 +++ pkgsrc/misc/bbweather/PLIST Sat Oct 12 20:23:07 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2009/06/14 20:52:11 joerg Exp $ +@comment $NetBSD: PLIST,v 1.6 2019/10/12 20:23:07 rillig Exp $ bin/GrabWeather bin/bbweather man/man1/GrabWeather.1 @@ -8,9 +8,9 @@ share/bbtools/bbtoolsrc.in share/bbtools/bbweather.conf share/bbtools/bbweather.nobb share/bbtools/bbweather.style -share/doc/html/bbweather/index-1.html -share/doc/html/bbweather/index-2.html -share/doc/html/bbweather/index-3.html -share/doc/html/bbweather/index-4.html -share/doc/html/bbweather/index-5.html -share/doc/html/bbweather/index.html +share/doc/bbweather/index-1.html +share/doc/bbweather/index-2.html +share/doc/bbweather/index-3.html +share/doc/bbweather/index-4.html +share/doc/bbweather/index-5.html +share/doc/bbweather/index.html --_----------=_157091178757040--