Received: by mail.netbsd.org (Postfix, from userid 605) id 460DA84DFD; Thu, 14 May 2020 08:47:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C23E384DC2 for ; Thu, 14 May 2020 08:47:12 +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 AT8cZgcxKdW4 for ; Thu, 14 May 2020 08:47:12 +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 4A13384CE3 for ; Thu, 14 May 2020 08:47:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41D32FB27; Thu, 14 May 2020 08:47:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589446032179510" MIME-Version: 1.0 Date: Thu, 14 May 2020 08:47:12 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/archivers/star To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20200514084712.41D32FB27@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. --_----------=_1589446032179510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Thu May 14 08:47:12 UTC 2020 Modified Files: pkgsrc/archivers/star: Makefile Log Message: archivers/star: Workaround for man page handling tbl of NetBSD 9 does not work. Install man pages with unprocessed tables as workaround. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/archivers/star/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589446032179510 Content-Disposition: inline Content-Length: 1819 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/star/Makefile diff -u pkgsrc/archivers/star/Makefile:1.47 pkgsrc/archivers/star/Makefile:1.48 --- pkgsrc/archivers/star/Makefile:1.47 Tue May 12 09:41:40 2020 +++ pkgsrc/archivers/star/Makefile Thu May 14 08:47:12 2020 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.47 2020/05/12 09:41:40 micha Exp $ +# $NetBSD: Makefile,v 1.48 2020/05/14 08:47:12 micha Exp $ DISTNAME= schily-2020-05-11 PKGNAME= star-1.6.1 -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=schilytools/} EXTRACT_SUFX= .tar.bz2 @@ -14,7 +14,9 @@ LICENSE= cddl-1.0 MAKE_JOBS_SAFE= no -USE_TOOLS+= tbl +# tbl(1) of NetBSD 9 can't process the man page, but man(1) can. +# Install man page with unprocessed tables as workaround (may break other OS) +#USE_TOOLS+= tbl TOOL_DEPENDS+= smake-[0-9]*:../../devel/smake SMAKE= MAKEFLAGS= smake MAKE_FLAGS+= DESTDIR=${DESTDIR} INS_BASE=${PREFIX} DEFMANBASE=. MANDIR=${PKGMANDIR} @@ -65,15 +67,15 @@ do-build: cd ${WRKSRC}/star && ${SMAKE} ${MAKE_FLAGS} # Process tables in manpage -post-build: - cd ${WRKSRC} && if ${TEST} -f star/pkgsrc_tbl.done; then :; \ - else \ - ${TBL} star/spax.1 >star/spax.1.tmp && \ - ${MV} -f star/spax.1.tmp star/spax.1 && \ - ${TBL} star/star.4 >star/star.4.tmp && \ - ${MV} -f star/star.4.tmp star/star.4 && \ - ${TOUCH} star/pkgsrc_tbl.done; \ - fi +#post-build: +# cd ${WRKSRC} && if ${TEST} -f star/pkgsrc_tbl.done; then :; \ +# else \ +# ${TBL} star/spax.1 >star/spax.1.tmp && \ +# ${MV} -f star/spax.1.tmp star/spax.1 && \ +# ${TBL} star/star.4 >star/star.4.tmp && \ +# ${MV} -f star/star.4.tmp star/star.4 && \ +# ${TOUCH} star/pkgsrc_tbl.done; \ +# fi do-test: cd ${WRKSRC}/star && cd tests ; ${SMAKE} ${MAKE_FLAGS} tests --_----------=_1589446032179510--