39 lines
839 B
Makefile
39 lines
839 B
Makefile
# New ports collection makefile for: de-hyphen
|
|
# Date created: 2011-07-21
|
|
# Whom: Baptiste Daroussin <bapt@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hyphen
|
|
PORTVERSION= 2007.02.17
|
|
PORTREVISION= 1
|
|
CATEGORIES= german textproc
|
|
MASTER_SITES= http://ftp.osuosl.org/pub/openoffice/contrib/dictionaries/
|
|
DISTNAME= hyph_de_DE
|
|
|
|
MAINTAINER= office@FreeBSD.org
|
|
COMMENT= German hyphenation rules
|
|
|
|
LICENSE= LGPL21
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= %%DATADIR%%/hyph_de_DE.dic
|
|
PLIST_DIRSTRY= %%DATADIR%%
|
|
|
|
DEALIASES= de_AT de_BE de_CH de_LI de_LU
|
|
.for ALIAS in ${DEALIASES}
|
|
PLIST_FILES+= %%DATADIR%%/hyph_${ALIAS}.dic
|
|
.endfor
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/hyph_de_DE.dic ${DATADIR}/
|
|
.for ALIAS in ${DEALIASES}
|
|
${LN} -s hyph_de_DE.dic ${DATADIR}/hyph_${ALIAS}.dic
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|