mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
44eaadcb75
Where possible, correct a few instances where PORTDOCS was being used to flag stuff in EXAMPLESDIR. For some ports, mostly those owned by ruby@, PORTDOCS is applied to pretty much everything whether it's documentation or example.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= oniguruma
|
|
PORTVERSION= 4.7.1
|
|
CATEGORIES= devel textproc
|
|
MASTER_SITES= http://www.geocities.jp/kosako3/oniguruma/archive/
|
|
DISTNAME= onig-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= BSDL Regular Expressions library compatible with POSIX/GNU/Perl
|
|
|
|
NO_LATEST_LINK= yes
|
|
CONFLICTS= oniguruma-2.*
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
DOCS= HISTORY README doc/*
|
|
|
|
PKGNAMESUFFIX= 4
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|echo aout|echo elf|' \
|
|
-e 's|freebsd1|freebsd1.|' \
|
|
${WRKSRC}/configure
|
|
|
|
post-configure:
|
|
${SED} -e 's|%%PREFIX%%|${PREFIX}|' \
|
|
${FILESDIR}/onig-config > ${WRKSRC}/onig-config
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/onig-config ${STAGEDIR}${PREFIX}/bin/
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/*.c ${WRKSRC}/sample/Makefile* \
|
|
${STAGEDIR}${EXAMPLESDIR}/
|
|
|
|
.include <bsd.port.mk>
|