mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
5620c9ba37
- Remove duplicate CONFIGURE_ENV
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= hyphen
|
|
PORTVERSION= 2.8.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/hunspell/Hyphen/${PORTVERSION:R}/
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= office@FreeBSD.org
|
|
COMMENT= Library for high quality hyphenation and justification
|
|
|
|
LICENSE= LGPL21 LGPL3 MPL
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk
|
|
|
|
CONFIGURE_ENV= ac_cv_prog_AWK=gawk
|
|
GNU_CONFIGURE= yes
|
|
USES= libtool pathfix perl5 shebangfix
|
|
USE_LDCONFIG= yes
|
|
SHEBANG_FILES= substrings.pl
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PLIST_FILES= bin/substrings.pl \
|
|
include/hyphen.h \
|
|
lib/libhyphen.a \
|
|
lib/libhyphen.so \
|
|
lib/libhyphen.so.0 \
|
|
lib/libhyphen.so.0.3.0 \
|
|
%%DATADIR%%/hyph_en_US.dic
|
|
PLIST_DIRSTRY= %%DATADIR%%
|
|
|
|
USALIASES= en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK \
|
|
en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW
|
|
|
|
.for ALIAS in ${USALIASES}
|
|
PLIST_FILES+= %%DATADIR%%/hyph_${ALIAS}.dic
|
|
.endfor
|
|
|
|
post-install:
|
|
.for ALIAS in ${USALIASES}
|
|
${LN} -s hyph_en_US.dic ${STAGEDIR}${DATADIR}/hyph_${ALIAS}.dic
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|