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 /mail/tnef2txt | |
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 'mail/tnef2txt')
-rw-r--r-- | mail/tnef2txt/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/tnef2txt/Makefile b/mail/tnef2txt/Makefile index 0f37ad26269..e19f2ee930b 100644 --- a/mail/tnef2txt/Makefile +++ b/mail/tnef2txt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2006/03/04 21:30:02 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2008/03/04 17:57:20 jlam Exp $ # DISTNAME= tnef2txt-1.4 @@ -10,12 +10,13 @@ HOMEPAGE= http://www.fiction.net/blong/programs/ COMMENT= Portable application/ms-tnef parser PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir BUILD_TARGET= tnef2txt INSTALLATION_DIRS= bin do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/tnef2txt ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/tnef2txt ${DESTDIR}${PREFIX}/bin .include "../../mk/bsd.pkg.mk" |