2018-04-20 11:53:21 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= regex2dfa
|
|
|
|
DISTVERSION= 0.1.6
|
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
2019-07-26 20:46:53 +00:00
|
|
|
PORTREVISION= 3
|
2018-04-20 11:53:21 +00:00
|
|
|
CATEGORIES= textproc
|
|
|
|
|
2018-12-05 14:09:12 +00:00
|
|
|
MAINTAINER= egypcio@FreeBSD.org
|
2018-04-20 11:53:21 +00:00
|
|
|
COMMENT= Command-line utility that converts regular expressions to DFA
|
|
|
|
|
|
|
|
LICENSE= APACHE20
|
|
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
|
2018-09-22 05:30:31 +00:00
|
|
|
USES= compiler:c++11-lang gmake libtool
|
2018-04-20 11:53:21 +00:00
|
|
|
USE_GITHUB= yes
|
2018-10-23 12:32:59 +00:00
|
|
|
|
2018-04-20 11:53:21 +00:00
|
|
|
GH_ACCOUNT= kpdyer
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME} include/${PORTNAME}.h lib/lib${PORTNAME}.a
|
|
|
|
|
|
|
|
post-patch:
|
|
|
|
${REINPLACE_CMD} -e 's|-ldl||g' \
|
|
|
|
${WRKSRC}/Makefile.in \
|
|
|
|
${WRKSRC}/third_party/openfst/src/bin/Makefile.in \
|
|
|
|
${WRKSRC}/third_party/openfst/src/extensions/far/Makefile.in \
|
|
|
|
${WRKSRC}/third_party/openfst/src/extensions/linear/Makefile.in \
|
|
|
|
${WRKSRC}/third_party/openfst/src/extensions/pdt/Makefile.in \
|
|
|
|
${WRKSRC}/third_party/openfst/src/test/Makefile.in
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/src/${PORTNAME}.h ${STAGEDIR}${PREFIX}/include
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/.libs/lib${PORTNAME}.a ${STAGEDIR}${PREFIX}/lib
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|