mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
2b206948bb
Approved by: portmgr (blanket)
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
PORTNAME= oniguruma
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 6.9.7.1
|
|
CATEGORIES= devel textproc
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Regular expressions library compatible with POSIX/GNU/Perl
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf cpe pathfix libtool # configure provided in the tarball breaks: https://github.com/kkos/oniguruma/issues/73
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kkos
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-static --enable-posix-api=yes
|
|
PATHFIX_MAKEFILEIN= Makefile.am
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
TEST_WRKSRC= ${WRKSRC}/test
|
|
TEST_TARGET= test
|
|
CPE_VENDOR= oniguruma_project
|
|
|
|
OPTIONS_DEFINE= STATISTICS DOCS EXAMPLES
|
|
STATISTICS_DESC= Take matching time statistical data (debug feature)
|
|
|
|
STATISTICS_CONFIGURE_WITH= statistics
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} HISTORY README ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/sample && ${INSTALL_DATA} *.c ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|