Received: by mail.netbsd.org (Postfix, from userid 605) id 44AF284E1F; Wed, 18 Mar 2020 20:54:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C20BB84E0A for ; Wed, 18 Mar 2020 20:54:34 +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 A3BEbw_cgNHu for ; Wed, 18 Mar 2020 20:54:34 +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 2353684E03 for ; Wed, 18 Mar 2020 20:54:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 17214FB27; Wed, 18 Mar 2020 20:54:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584564874149880" MIME-Version: 1.0 Date: Wed, 18 Mar 2020 20:54:34 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/gramps5 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200318205434.17214FB27@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. --_----------=_1584564874149880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Mar 18 20:54:34 UTC 2020 Modified Files: pkgsrc/databases/gramps5: Makefile Log Message: gramps5: fix startup A path included ${DESTDIR} which made the program not start up correctly. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/gramps5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584564874149880 Content-Disposition: inline Content-Length: 962 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/gramps5/Makefile diff -u pkgsrc/databases/gramps5/Makefile:1.3 pkgsrc/databases/gramps5/Makefile:1.4 --- pkgsrc/databases/gramps5/Makefile:1.3 Tue Feb 18 08:27:48 2020 +++ pkgsrc/databases/gramps5/Makefile Wed Mar 18 20:54:33 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2020/02/18 08:27:48 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2020/03/18 20:54:33 wiz Exp $ DISTNAME= gramps-5.1.2 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gramps/} @@ -33,6 +33,10 @@ CONFIGURE_ARGS+= --enable-packager-mode DEPENDS+= librsvg-[0-9]*:../../graphics/librsvg DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3 +# setup.py target includes ${DESTDIR}, which is wrong +post-install: + ${ECHO} -n ${PREFIX}/share > ${DESTDIR}${PREFIX}/${PYSITELIB}/gramps/gen/utils/resource-path + .include "options.mk" .include "../../databases/py-bsddb3/buildlink3.mk" --_----------=_1584564874149880--