mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
4d78e8f921
Changelog: https://github.com/westes/flex/releases/tag/v2.6.4 PR: 226546 Approved by: johans@FreeBSD.org (maintainer timeout; 103 days)
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= flex
|
|
PORTVERSION= 2.6.4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://github.com/westes/flex/releases/download/v${PORTVERSION}/
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Fast lexical analyzer generator
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= help2man:misc/help2man \
|
|
gm4:devel/m4
|
|
RUN_DEPENDS= gm4:devel/m4
|
|
|
|
USES= bison gmake libtool makeinfo
|
|
GNU_CONFIGURE= yes
|
|
# install flex header to its own dir to avoid conflict with system flex.
|
|
CONFIGURE_ARGS= --includedir=${PREFIX}/include/flex --disable-shared
|
|
CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 MAKEINFO="${MAKEINFO} --no-split"
|
|
INSTALL_TARGET= install-strip
|
|
|
|
INFO= flex
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES NLS
|
|
OPTIONS_SUB= yes
|
|
NLS_USES= gettext iconv
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
post-patch: .SILENT
|
|
${REINPLACE_CMD} -Ee 's/tests//' \
|
|
-e '/mode=compile ..CC/s/\\$$/-fPIC -DPIC &/' \
|
|
${WRKSRC}/Makefile.in
|
|
${RM} ${WRKSRC}/doc/*.info*
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${CP} -r ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}/
|
|
${RM} ${STAGEDIR}${EXAMPLESDIR}/Makefile.am
|
|
|
|
.include <bsd.port.mk>
|