1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/french/hyphen/Makefile
Baptiste Daroussin e459ffe3d9 - update to 3.0
2012-09-21 07:26:55 +00:00

33 lines
681 B
Makefile

# $FreeBSD$
PORTNAME= hyphen
PORTVERSION= 3.0
CATEGORIES= french textproc
MASTER_SITES= http://www.dicollecte.org/download/fr/
DISTNAME= hyph-fr-v${PORTVERSION}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= office@FreeBSD.org
COMMENT= French hyphenation rules
USE_ZIP= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
PLIST_FILES= %%DATADIR%%/hyph_fr.dic
PLIST_DIRSTRY= %%DATADIR%%
FRALIASES= fr_FR fr_BE fr_CA fr_CH fr_LU
.for ALIAS in ${FRALIASES}
PLIST_FILES+= %%DATADIR%%/hyph_${ALIAS}.dic
.endfor
do-install:
${MKDIR} ${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/hyph_fr.dic ${DATADIR}/
.for ALIAS in ${FRALIASES}
${LN} -s hyph_fr.dic ${DATADIR}/hyph_${ALIAS}.dic
.endfor
.include <bsd.port.mk>