summaryrefslogtreecommitdiff
path: root/misc/latin-words-bin
diff options
context:
space:
mode:
authorjlam <jlam>2008-03-04 19:21:10 +0000
committerjlam <jlam>2008-03-04 19:21:10 +0000
commit476429c9f7b93362ea027fafcaa1bb835868c0d1 (patch)
tree49bcc2e4ee778e69c05972f13c0e319fdf272a66 /misc/latin-words-bin
parentdf44780831cf4dadccea821bb560fbdd11bda60b (diff)
downloadpkgsrc-476429c9f7b93362ea027fafcaa1bb835868c0d1.tar.gz
Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'misc/latin-words-bin')
-rw-r--r--misc/latin-words-bin/Makefile17
1 files changed, 10 insertions, 7 deletions
diff --git a/misc/latin-words-bin/Makefile b/misc/latin-words-bin/Makefile
index 0510e4bdff8..c3ba9b13c2a 100644
--- a/misc/latin-words-bin/Makefile
+++ b/misc/latin-words-bin/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2007/07/29 05:19:35 jlam Exp $
+# $NetBSD: Makefile,v 1.9 2008/03/04 19:21:11 jlam Exp $
#
DISTNAME= words-1.97-linux
@@ -14,6 +14,8 @@ COMMENT= Latin-to-English dictionary program (Linux binary)
EMUL_PLATFORMS= linux-i386
EMUL_MODULES.linux= base
+PKG_DESTDIR_SUPPORT= user-destdir
+
WRKSRC= ${WRKDIR}/words-1.97
INSTALLATION_DIRS= bin libexec
@@ -22,16 +24,17 @@ do-build:
> ${WRKSRC}/latin-words
do-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/latin-words ${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/words ${PREFIX}/libexec/latin-words
- ${INSTALL_DATA_DIR} ${PREFIX}/libdata/latin-words
+ ${INSTALL_SCRIPT} ${WRKSRC}/latin-words ${DESTDIR}${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/words \
+ ${DESTDIR}${PREFIX}/libexec/latin-words
+ ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/libdata/latin-words
.for f in ADDONS.LAT DICTFILE.GEN INDXFILE.GEN INFLECTS.SEC \
STEMFILE.GEN UNIQUES.LAT
- ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/libdata/latin-words
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/libdata/latin-words
.endfor
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/latin-words
+ ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/latin-words
.for f in README wordsdoc.html wordsdoc.txt
- ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/latin-words
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/share/doc/latin-words
.endfor
.include "../../mk/bsd.pkg.mk"