diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2011-07-29 21:13:17 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2011-07-29 21:13:17 +0800 |
commit | e7533864e7a7574c2d1b20a6b10f81c0561e4621 (patch) | |
tree | 709c0318625f1fe2eca8e12b791e969926c96e91 /textproc/da-hyphen | |
parent | 3bc9ecccbd8279e4254d8eade21cc1a1837decfb (diff) | |
download | freebsd-ports-gnome-e7533864e7a7574c2d1b20a6b10f81c0561e4621.tar.gz freebsd-ports-gnome-e7533864e7a7574c2d1b20a6b10f81c0561e4621.tar.zst freebsd-ports-gnome-e7533864e7a7574c2d1b20a6b10f81c0561e4621.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
Diffstat (limited to 'textproc/da-hyphen')
-rw-r--r-- | textproc/da-hyphen/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/textproc/da-hyphen/Makefile b/textproc/da-hyphen/Makefile index 67a08c6312fa..3918f3f174d6 100644 --- a/textproc/da-hyphen/Makefile +++ b/textproc/da-hyphen/Makefile @@ -5,10 +5,12 @@ # $FreeBSD$ # -PORTNAME= da-hyphen +PORTNAME= hyphen PORTVERSION= 2007.09.30 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/ +PKGNAMEPREFIX= da- DISTNAME= hyph_da_DK MAINTAINER= office@FreeBSD.org @@ -19,11 +21,11 @@ LICENSE= LGPL21 USE_ZIP= yes NO_BUILD= yes -PLIST_FILES= share/hyphen/hyph_da_DK.dic -PLIST_DIRS= share/hyphen +PLIST_FILES= %%DATADIR%%/hyph_da_DK.dic +PLIST_DIRSTRY= %%DATADIR%% do-install: - @${MKDIR} ${PREFIX}/share/hyphen - @${INSTALL_DATA} ${WRKDIR}/hyph_da_DK.dic ${PREFIX}/share/hyphen + ${MKDIR} ${DATADIR}/ + ${INSTALL_DATA} ${WRKDIR}/hyph_da_DK.dic ${DATADIR}/ .include <bsd.port.mk> |