Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EAD0984E57 for ; Tue, 11 Jul 2023 05:40:17 +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 54n78e_sh-ND for ; Tue, 11 Jul 2023 05:40:17 +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 4534084E56 for ; Tue, 11 Jul 2023 05:40:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C900FBDB; Tue, 11 Jul 2023 05:40:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168905401778240" MIME-Version: 1.0 Date: Tue, 11 Jul 2023 05:40:17 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/time/projectlibre To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230711054017.3C900FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168905401778240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Jul 11 05:40:17 UTC 2023 Modified Files: pkgsrc/time/projectlibre: Makefile Log Message: projectlibre: pax must be in USE_TOOLS if we use it in do-install To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/time/projectlibre/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168905401778240 Content-Disposition: inline Content-Length: 1007 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/projectlibre/Makefile diff -u pkgsrc/time/projectlibre/Makefile:1.5 pkgsrc/time/projectlibre/Makefile:1.6 --- pkgsrc/time/projectlibre/Makefile:1.5 Tue Apr 27 14:14:26 2021 +++ pkgsrc/time/projectlibre/Makefile Tue Jul 11 05:40:17 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2021/04/27 14:14:26 ryoon Exp $ +# $NetBSD: Makefile,v 1.6 2023/07/11 05:40:17 nia Exp $ DISTNAME= projectlibre-1.9.3 CATEGORIES= time @@ -8,7 +8,7 @@ MAINTAINER= asau@inbox.ru HOMEPAGE= http://www.projectlibre.org/ COMMENT= Project management software -USE_TOOLS+= bash:run +USE_TOOLS+= bash:run pax USE_JAVA= run USE_JAVA2= 7 @@ -31,7 +31,7 @@ NO_BUILD= yes INSTALLATION_DIRS= bin share/${PKGBASE} do-install: - cd ${WRKSRC} && pax -rwpm . ${DESTDIR}${PREFIX}/share/${PKGBASE} + cd ${WRKSRC} && ${PAX} -rwpm . ${DESTDIR}${PREFIX}/share/${PKGBASE} ${LN} -sf ${PREFIX}/share/${PKGBASE}/projectlibre.sh ${DESTDIR}${PREFIX}/bin/projectlibre .include "../../mk/java-vm.mk" --_----------=_168905401778240--