diff options
author | joerg <joerg> | 2008-06-12 02:14:13 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-06-12 02:14:13 +0000 |
commit | 168a3246f0e3c46b0ef3b5dcf5d18607cff1583f (patch) | |
tree | c12b9c282e2706cb6bac87456615dfdf2b256e55 /shells | |
parent | 63309a20a533bc79929c9bd5b3bf872561762300 (diff) | |
download | pkgsrc-168a3246f0e3c46b0ef3b5dcf5d18607cff1583f.tar.gz |
Add DESTDIR support.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/posh/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/shells/posh/Makefile b/shells/posh/Makefile index 29629550d1d..68076596fd2 100644 --- a/shells/posh/Makefile +++ b/shells/posh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/03/04 21:30:39 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2008/06/12 02:14:45 joerg Exp $ # DISTNAME= posh_0.3.14 @@ -12,13 +12,15 @@ HOMEPAGE= http://packages.debian.org/posh COMMENT= Debian Policy-compliant Ordinary SHell PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= YES PKG_SHELL= bin/posh WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} +INSTALLATION_DIRS= share/doc/posh + post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/posh - ${INSTALL_DATA} ${WRKSRC}/debian/changelog ${PREFIX}/share/doc/posh + ${INSTALL_DATA} ${WRKSRC}/debian/changelog ${DESTDIR}${PREFIX}/share/doc/posh .include "../../mk/bsd.pkg.mk" |