1998-07-13 00:59:19 +02:00
|
|
|
# New ports collection makefile for: pcre
|
|
|
|
# Date created: 08 July 1998
|
|
|
|
# Whom: dom
|
|
|
|
#
|
1999-08-25 07:57:29 +02:00
|
|
|
# $FreeBSD$
|
1998-07-13 00:59:19 +02:00
|
|
|
#
|
|
|
|
|
2000-04-11 23:30:15 +02:00
|
|
|
PORTNAME= pcre
|
2004-01-19 23:30:50 +01:00
|
|
|
PORTVERSION= 4.5
|
2000-04-11 23:30:15 +02:00
|
|
|
CATEGORIES= devel
|
2003-07-10 03:04:52 +02:00
|
|
|
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/%SUBDIR%/ \
|
2003-10-15 07:28:54 +02:00
|
|
|
ftp://ftp.fu-berlin.de/unix/misc/%SUBDIR%/ \
|
|
|
|
ftp://ftp.tin.org/pub/libs/%SUBDIR%/
|
|
|
|
MASTER_SITE_SUBDIR= \
|
|
|
|
${PORTNAME}
|
1998-07-13 00:59:19 +02:00
|
|
|
|
2003-11-14 01:29:48 +01:00
|
|
|
MAINTAINER= eik@FreeBSD.org
|
2003-02-21 12:23:04 +01:00
|
|
|
COMMENT= Perl Compatible Regular Expressions library
|
1998-07-13 00:59:19 +02:00
|
|
|
|
2003-07-10 03:04:52 +02:00
|
|
|
USE_BZIP2= yes
|
2001-11-24 02:56:44 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2003-09-25 08:40:26 +02:00
|
|
|
USE_LIBTOOL_VER= \
|
2004-01-19 23:30:50 +01:00
|
|
|
14
|
2001-11-24 02:56:44 +01:00
|
|
|
INSTALLS_SHLIB= yes
|
2003-09-25 08:40:26 +02:00
|
|
|
USE_REINPLACE= yes
|
2000-03-24 02:57:51 +01:00
|
|
|
|
2004-01-19 23:30:50 +01:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
PORTDOCS= *
|
|
|
|
.endif
|
|
|
|
|
2003-02-21 18:54:37 +01:00
|
|
|
.if defined(WITH_UTF8)
|
2003-09-25 08:40:26 +02:00
|
|
|
CONFIGURE_ARGS+= \
|
|
|
|
--enable-utf8
|
2003-02-21 02:17:51 +01:00
|
|
|
.endif
|
|
|
|
|
2003-09-25 08:40:26 +02:00
|
|
|
CONFIGURE_TARGET= \
|
|
|
|
--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
|
2001-11-24 02:56:44 +01:00
|
|
|
MAN1= pcregrep.1 pcretest.1
|
2003-07-10 03:04:52 +02:00
|
|
|
MAN3= pcre.3 pcre_compile.3 pcre_config.3 \
|
|
|
|
pcre_copy_named_substring.3 pcre_copy_substring.3 pcre_exec.3 \
|
|
|
|
pcre_free_substring.3 pcre_free_substring_list.3 pcre_fullinfo.3 \
|
|
|
|
pcre_get_named_substring.3 pcre_get_stringnumber.3 pcre_get_substring.3 \
|
|
|
|
pcre_get_substring_list.3 pcre_info.3 pcre_maketables.3 \
|
|
|
|
pcre_study.3 pcre_version.3 pcreapi.3 \
|
|
|
|
pcrebuild.3 pcrecallout.3 pcrecompat.3 \
|
|
|
|
pcrepattern.3 pcreperform.3 pcreposix.3 \
|
|
|
|
pcresample.3
|
|
|
|
|
2003-09-25 08:40:26 +02:00
|
|
|
pre-configure:
|
|
|
|
@${REINPLACE_CMD} -e '/^LIBTOOL=/s,\$$(top_builddir)/libtool,${LIBTOOL},g' \
|
|
|
|
${WRKSRC}/configure
|
|
|
|
|
2003-07-10 03:04:52 +02:00
|
|
|
post-install:
|
|
|
|
@${STRIP_CMD} ${STRIP} ${PREFIX}/bin/pcregrep
|
|
|
|
@${STRIP_CMD} ${STRIP} ${PREFIX}/bin/pcretest
|
|
|
|
.if !defined(NOPORTDOCS)
|
2004-01-19 23:30:50 +01:00
|
|
|
@${MKDIR} ${DOCSDIR} ${DOCSDIR}/html
|
|
|
|
@cd ${WRKSRC}; ${INSTALL_DATA} ChangeLog NEWS doc/Tech.Notes doc/*.txt ${DOCSDIR}
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${DOCSDIR}/html
|
2003-07-10 03:04:52 +02:00
|
|
|
.endif
|
2000-10-26 01:54:27 +02:00
|
|
|
|
1998-07-13 00:59:19 +02:00
|
|
|
.include <bsd.port.mk>
|