diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-04 19:21:10 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-04 19:21:10 +0000 |
commit | 39843c2c61acd3e8f1b7d0fa6eb0f76884067d10 (patch) | |
tree | 49bcc2e4ee778e69c05972f13c0e319fdf272a66 /misc/gkrellm-launch/Makefile | |
parent | 0523c1825d9b781d6f10c2ef70daf0a164e0f142 (diff) | |
download | pkgsrc-39843c2c61acd3e8f1b7d0fa6eb0f76884067d10.tar.gz |
Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'misc/gkrellm-launch/Makefile')
-rw-r--r-- | misc/gkrellm-launch/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/misc/gkrellm-launch/Makefile b/misc/gkrellm-launch/Makefile index 7b4466b9048..bc1ef37c6ac 100644 --- a/misc/gkrellm-launch/Makefile +++ b/misc/gkrellm-launch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2008/01/18 05:08:33 tnn Exp $ +# $NetBSD: Makefile,v 1.14 2008/03/04 19:21:11 jlam Exp $ # DISTNAME= gkrellmlaunch-0.5 @@ -11,13 +11,16 @@ MAINTAINER= cube@NetBSD.org HOMEPAGE= http://gkrellmlaunch.sourceforge.net/ COMMENT= GKrellM plugin to allow quick launch of applications +PKG_DESTDIR_SUPPORT= user-destdir + BUILD_TARGET= gkrellmlaunch.so USE_TOOLS+= pkg-config INSTALLATION_DIRS= lib/gkrellm2/plugins do-install: - ${INSTALL_DATA} ${WRKSRC}/gkrellmlaunch.so ${PREFIX}/lib/gkrellm2/plugins + ${INSTALL_DATA} ${WRKSRC}/gkrellmlaunch.so \ + ${DESTDIR}${PREFIX}/lib/gkrellm2/plugins .include "../../sysutils/gkrellm/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |