1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/devel/oniguruma/Makefile
Akinori MUSHA f0631c9279 Update to 1.7 (20030204), with improved performance.
According to the author's post on a mailing list, a simple benchmark
shows that Oniguruma is 10-20% faster than PCRE 3.9 under the ASCII
(single byte) encoding.
2003-02-04 09:39:50 +00:00

40 lines
769 B
Makefile

# New ports collection makefile for: Oniguruma
# Date created: 31 January 2003
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= oniguruma
PORTVERSION= 1.7
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_RUBY}
MASTER_SITE_SUBDIR= contrib
DISTNAME= onigd20030204
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
WRKSRC= ${WRKDIR}/${PORTNAME}
GNU_CONFIGURE= yes
MAKEFILE= BSDmakefile
MAKE_ARGS= NOPROFILE=true
INSTALLS_SHLIB= yes
DOCS= README doc/*
pre-build:
${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}/
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}/
${MKDIR} ${DOCSDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
.endfor
.endif
.include <bsd.port.mk>