diff options
author | jlam <jlam> | 2008-03-03 17:45:33 +0000 |
---|---|---|
committer | jlam <jlam> | 2008-03-03 17:45:33 +0000 |
commit | 6382667881b228651106070be0587fe300bf858b (patch) | |
tree | 620d08cc8bf79f9bacb7746632192670c7d6350d /devel/monotone-viz | |
parent | 2faf5f3f31238b3c0a70766d4e716138a636c86b (diff) | |
download | pkgsrc-6382667881b228651106070be0587fe300bf858b.tar.gz |
Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'devel/monotone-viz')
-rw-r--r-- | devel/monotone-viz/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/monotone-viz/Makefile b/devel/monotone-viz/Makefile index bc0d7e31c5d..9d61e0a715c 100644 --- a/devel/monotone-viz/Makefile +++ b/devel/monotone-viz/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2008/01/18 05:14:34 tnn Exp $ +# $NetBSD: Makefile,v 1.20 2008/03/03 17:45:36 jlam Exp $ # DISTNAME= monotone-viz-0.15 @@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://oandrieu.nerim.net/monotone-viz/ COMMENT= Visualize monotone ancestry graphs +PKG_DESTDIR_SUPPORT= user-destdir + BUILD_TARGET= monotone-viz GNU_CONFIGURE= yes USE_TOOLS+= gmake pkg-config @@ -20,7 +22,7 @@ CONFIGURE_ARGS+= --without-local-lablgtk INSTALLATION_DIRS= bin do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/monotone-viz ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/monotone-viz ${DESTDIR}${PREFIX}/bin .include "../../databases/sqlite3/buildlink3.mk" .include "../../graphics/graphviz/buildlink3.mk" |