Received: by mail.netbsd.org (Postfix, from userid 605) id 249C484E6F; Fri, 3 Feb 2023 00:07:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 53D6584CF9 for ; Fri, 3 Feb 2023 00:07:10 +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 i5L4nM5W006n for ; Fri, 3 Feb 2023 00:07:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9F45984C2C for ; Fri, 3 Feb 2023 00:07:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 98492FA90; Fri, 3 Feb 2023 00:07:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1675382829226790" MIME-Version: 1.0 Date: Fri, 3 Feb 2023 00:07:09 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/gnunet To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230203000709.98492FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1675382829226790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Feb 3 00:07:09 UTC 2023 Modified Files: pkgsrc/net/gnunet: Makefile Log Message: gnunet: add missing tool move post-configure steps to post-install since it installs files into ${DESTDIR} To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/gnunet/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1675382829226790 Content-Disposition: inline Content-Length: 1396 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/gnunet/Makefile diff -u pkgsrc/net/gnunet/Makefile:1.3 pkgsrc/net/gnunet/Makefile:1.4 --- pkgsrc/net/gnunet/Makefile:1.3 Wed Feb 1 19:03:03 2023 +++ pkgsrc/net/gnunet/Makefile Fri Feb 3 00:07:09 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2023/02/01 19:03:03 nikita Exp $ +# $NetBSD: Makefile,v 1.4 2023/02/03 00:07:09 wiz Exp $ DISTNAME= gnunet-0.19.2 PKGREVISION= 1 @@ -10,7 +10,7 @@ HOMEPAGE= https://gnunet.org/ COMMENT= Framework for secure P2P networking LICENSE= gnu-agpl-v3 -USE_TOOLS+= msgfmt pkg-config gmake automake autoconf autoreconf +USE_TOOLS+= msgfmt pkg-config gmake automake autoconf autoreconf autopoint USE_LANGUAGES= c GNU_CONFIGURE= yes USE_LIBTOOL= yes @@ -86,11 +86,9 @@ SUBST_SED.sysconfdir+= -e 's,^GNUNET_DA SUBST_SED.sysconfdir+= -e 's,^GNUNET_RUNTIME_DIR.*,GNUNET_RUNTIME_DIR = ${GNUNET_DIR},g' SUBST_SED.sysconfdir+= -e 's,^GNUNET_HOME.*,GNUNET_HOME = ${GNUNET_DIR},g' -post-configure: - ${MKDIR} ${DESTDIR}${EGDIR} +post-install: ${INSTALL_DATA} ${WRKSRC}/gnunet.conf ${DESTDIR}${EGDIR}/gnunet.conf ${INSTALL_DATA} ${WRKSRC}/gnunet_user.conf ${DESTDIR}${EGDIR}/gnunet_user.conf - ${MKDIR} ${DESTDIR}${PREFIX}/share/doc/gnunet/ ${INSTALL_DATA} ${WRKSRC}/README.pkgsrc.txt ${DESTDIR}${PREFIX}/share/doc/gnunet/README.pkgsrc.txt # All helpers have to be suid. fs helper must not be suid. --_----------=_1675382829226790--