diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2011-07-29 13:13:17 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2011-07-29 13:13:17 +0000 |
commit | 72c08ec487edbe98662f3278bee17f8726ee4ce4 (patch) | |
tree | a3c6d7d2a4a492c3e55a418f3fa370e951b5ccc7 /textproc/nl-hyphen | |
parent | a600d4522cadfa512ce465f98566cee7b9bec843 (diff) | |
download | ports-72c08ec487edbe98662f3278bee17f8726ee4ce4.tar.gz ports-72c08ec487edbe98662f3278bee17f8726ee4ce4.zip |
- Move language prefix to PKGNAMEPREFIX
- Use DATADIR
- Use PLIST_DIRSTRY for DATADIR
- Explicitly list installing filenames
- Bump PORTREVISION for PORTNAME and PLIST change
- Sort PLIST
- Cosmetic change
Notes
Notes:
svn path=/head/; revision=278527
Diffstat (limited to 'textproc/nl-hyphen')
-rw-r--r-- | textproc/nl-hyphen/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/textproc/nl-hyphen/Makefile b/textproc/nl-hyphen/Makefile index 71fd1070a043..debb22abf779 100644 --- a/textproc/nl-hyphen/Makefile +++ b/textproc/nl-hyphen/Makefile @@ -5,10 +5,12 @@ # $FreeBSD$ # -PORTNAME= nl-hyphen +PORTNAME= hyphen PORTVERSION= 2005.10.16 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/ +PKGNAMEPREFIX= nl- DISTNAME= hyph_nl_NL MAINTAINER= office@FreeBSD.org @@ -19,11 +21,11 @@ LICENSE= LGPL21 USE_ZIP= yes NO_BUILD= yes -PLIST_FILES= share/hyphen/hyph_nl_NL.dic -PLIST_DIRS= share/hyphen +PLIST_FILES= %%DATADIR%%/hyph_nl_NL.dic +PLIST_DIRSTRY= %%DATADIR%% do-install: - @${MKDIR} ${PREFIX}/share/hyphen - @${INSTALL_DATA} ${WRKDIR}/hyph_nl_NL.dic ${PREFIX}/share/hyphen + ${MKDIR} ${DATADIR}/ + ${INSTALL_DATA} ${WRKDIR}/hyph_nl_NL.dic ${DATADIR}/ .include <bsd.port.mk> |