diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-04 17:57:17 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-04 17:57:17 +0000 |
commit | a80fd13efc426f96e55870df48a2030daea0f14b (patch) | |
tree | ea772f1017a149bdf8c86107c24d16246695614e /math/abs | |
parent | 31c6c3a796edf9dd9bae5586339c5e2e023ca408 (diff) | |
download | pkgsrc-a80fd13efc426f96e55870df48a2030daea0f14b.tar.gz |
Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'math/abs')
-rw-r--r-- | math/abs/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/abs/Makefile b/math/abs/Makefile index 349cdeacdc8..84d07f8f8dc 100644 --- a/math/abs/Makefile +++ b/math/abs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2006/12/27 13:37:39 joerg Exp $ +# $NetBSD: Makefile,v 1.20 2008/03/04 18:12:58 jlam Exp $ # DISTNAME= abs-src-0.8 @@ -12,13 +12,15 @@ MAINTAINER= pkgsrc-users@NetBSD.org # AWOL COMMENT= Free spreadsheet with graphical user interface +PKG_DESTDIR_SUPPORT= user-destdir + USE_X11BASE= YES MAKE_FILE= Makefile.netBSD INSTALLATION_DIRS= bin do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/abs ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/abs ${DESTDIR}${PREFIX}/bin .include "../../x11/libXaw/buildlink3.mk" .include "../../x11/libXpm/buildlink3.mk" |