diff options
author | wiz <wiz@pkgsrc.org> | 2020-03-18 20:54:33 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2020-03-18 20:54:33 +0000 |
commit | efe015ba42a343bcfa62d35066ee412068714f08 (patch) | |
tree | 20f9b6db2dac0eaf476bd127f238131b5e188e1d /databases/gramps5 | |
parent | 7b80d5ab0138c40ced7db9188cea55356ef14d1c (diff) | |
download | pkgsrc-efe015ba42a343bcfa62d35066ee412068714f08.tar.gz |
gramps5: fix startup
A path included ${DESTDIR} which made the program not start up correctly.
Bump PKGREVISION.
Diffstat (limited to 'databases/gramps5')
-rw-r--r-- | databases/gramps5/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/databases/gramps5/Makefile b/databases/gramps5/Makefile index e59bc8bef78..dc1e2b62e5b 100644 --- a/databases/gramps5/Makefile +++ b/databases/gramps5/Makefile @@ -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" |