diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-02 06:10:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-02 06:10:30 +0000 |
commit | 76ed4a57975c0d7c08dcc86ebda15457c3e83793 (patch) | |
tree | e69a307404c85a610aac593940553b400d40a654 /audio/rip/Makefile | |
parent | 5c458b597ca0742153b3a339088ba80f14b598ef (diff) | |
download | pkgsrc-76ed4a57975c0d7c08dcc86ebda15457c3e83793.tar.gz |
Mechanical changes to add full DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'audio/rip/Makefile')
-rw-r--r-- | audio/rip/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/audio/rip/Makefile b/audio/rip/Makefile index 877695ae4d6..8f0f77318e3 100644 --- a/audio/rip/Makefile +++ b/audio/rip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2006/03/04 21:28:58 jlam Exp $ +# $NetBSD: Makefile,v 1.9 2008/03/02 06:10:34 jlam Exp $ # DISTNAME= rip-1.07 @@ -12,6 +12,8 @@ COMMENT= Command-line based audio CD ripper and encoder DEPENDS+= p5-CDDB_get>=2.23:../../audio/p5-CDDB_get DEPENDS+= p5-MP3-Info>=1.00:../../audio/p5-MP3-Info +PKG_DESTDIR_SUPPORT= user-destdir + NO_BUILD= yes USE_TOOLS+= perl:run REPLACE_PERL= rip @@ -22,10 +24,10 @@ DOCDIR= ${PREFIX}/share/doc/rip INSTALLATION_DIRS= bin do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/rip ${PREFIX}/bin/rip - ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/rip ${DESTDIR}${PREFIX}/bin/rip + ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR} for i in ${DOCFILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${DOCDIR}; \ + ${INSTALL_DATA} ${WRKSRC}/$$i ${DESTDIR}${DOCDIR}; \ done .include "../../mk/bsd.pkg.mk" |