2012-10-31 11:16:57 +00:00
|
|
|
# Created by: Alex Dupre <sysadmin@alexdupre.com>
|
2003-05-22 18:26:28 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2012-05-16 09:46:51 +00:00
|
|
|
PORTNAME= php53
|
2013-12-14 23:30:36 +00:00
|
|
|
PORTVERSION= 5.3.28
|
2014-07-06 14:42:15 +00:00
|
|
|
PORTREVISION?= 3
|
2003-05-22 18:26:28 +00:00
|
|
|
CATEGORIES?= lang devel www
|
2007-06-04 18:30:55 +00:00
|
|
|
MASTER_SITES= ${MASTER_SITE_PHP}
|
|
|
|
MASTER_SITE_SUBDIR= distributions
|
|
|
|
DISTNAME= php-${PORTVERSION}
|
2003-05-22 18:26:28 +00:00
|
|
|
|
2012-05-02 21:22:47 +00:00
|
|
|
MAINTAINER= flo@FreeBSD.org
|
2007-09-14 06:29:31 +00:00
|
|
|
COMMENT= PHP Scripting Language
|
2004-07-19 07:05:36 +00:00
|
|
|
|
|
|
|
LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}
|
2003-05-22 18:26:28 +00:00
|
|
|
|
2014-06-04 16:54:47 +00:00
|
|
|
USES= tar:bzip2 cpe
|
2006-05-06 13:26:49 +00:00
|
|
|
.if !defined(PKGNAMESUFFIX)
|
2010-12-04 07:34:27 +00:00
|
|
|
USE_AUTOTOOLS= autoconf
|
2003-05-22 18:26:28 +00:00
|
|
|
|
2013-11-01 23:49:56 +00:00
|
|
|
LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
|
2010-05-10 06:03:31 +00:00
|
|
|
|
2014-06-04 16:54:47 +00:00
|
|
|
CPE_PRODUCT= php
|
|
|
|
|
2007-09-14 06:29:31 +00:00
|
|
|
CONFIGURE_ARGS= \
|
2003-05-22 18:26:28 +00:00
|
|
|
--with-layout=GNU \
|
2010-07-27 15:13:54 +00:00
|
|
|
--localstatedir=/var \
|
2004-07-28 08:59:35 +00:00
|
|
|
--with-config-file-scan-dir=${PREFIX}/etc/php \
|
2004-07-19 07:05:36 +00:00
|
|
|
--disable-all \
|
|
|
|
--enable-libxml \
|
2012-01-12 16:19:13 +00:00
|
|
|
--enable-mysqlnd \
|
2004-07-19 07:05:36 +00:00
|
|
|
--with-libxml-dir=${LOCALBASE} \
|
2010-05-10 06:03:31 +00:00
|
|
|
--with-pcre-regex=${LOCALBASE} \
|
2010-08-25 12:42:20 +00:00
|
|
|
--with-zlib-dir=/usr \
|
2006-05-06 13:26:49 +00:00
|
|
|
--program-prefix=""
|
2004-07-19 07:05:36 +00:00
|
|
|
|
|
|
|
USE_GNOME= libxml2
|
2003-05-22 18:26:28 +00:00
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
OPTIONS_DEFINE= CLI CGI FPM APACHE AP2FILTER DEBUG SUHOSIN MULTIBYTE IPV6 \
|
|
|
|
MAILHEAD LINKTHR
|
|
|
|
|
2013-02-25 16:48:45 +00:00
|
|
|
OPTIONS_DEFAULT= CLI CGI SUHOSIN IPV6 LINKTHR
|
2012-07-11 23:48:40 +00:00
|
|
|
|
|
|
|
CLI_DESC= Build CLI version
|
|
|
|
CGI_DESC= Build CGI version
|
|
|
|
FPM_DESC= Build FPM version (experimental)
|
|
|
|
APACHE_DESC= Build Apache module
|
|
|
|
AP2FILTER_DESC= Use Apache 2.x filter interface (experimental)
|
|
|
|
SUHOSIN_DESC= Suhosin protection system
|
|
|
|
MULTIBYTE_DESC= zend multibyte support
|
|
|
|
MAILHEAD_DESC= mail header patch
|
|
|
|
LINKTHR_DESC= Link thread lib (for threaded extensions)
|
2003-07-04 02:26:08 +00:00
|
|
|
|
2012-05-16 09:46:51 +00:00
|
|
|
CONFLICTS= php52-5* php5-5*
|
2006-05-06 13:26:49 +00:00
|
|
|
|
2013-11-01 23:49:56 +00:00
|
|
|
DESTDIRNAME= INSTALL_ROOT
|
2006-05-06 13:26:49 +00:00
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2006-09-04 07:59:15 +00:00
|
|
|
PATCH_DIST_STRIP= -p1
|
2006-12-10 15:04:17 +00:00
|
|
|
|
2012-10-31 23:17:44 +00:00
|
|
|
PATCH_SITES+= ${MASTER_SITE_LOCAL} \
|
|
|
|
http://people.freebsd.org/~flo/
|
2012-10-31 11:16:57 +00:00
|
|
|
PATCH_SITE_SUBDIR= flo
|
2011-03-18 09:23:19 +00:00
|
|
|
|
2012-07-12 06:32:05 +00:00
|
|
|
.if ${PORT_OPTIONS:MSUHOSIN}
|
2013-04-22 20:30:36 +00:00
|
|
|
PATCHFILES+= suhosin-patch-5.3.x-0.9.10.4.patch.gz
|
2006-09-04 07:59:15 +00:00
|
|
|
PLIST_SUB+= SUHOSIN=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= SUHOSIN="@comment "
|
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MMAILHEAD}
|
2012-05-02 21:22:47 +00:00
|
|
|
PATCHFILES+= php-5.3.x-mail-header.patch:mail
|
2006-12-10 15:04:17 +00:00
|
|
|
PATCH_SITES+= http://choon.net/opensource/php/:mail
|
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MCLI}
|
2006-05-06 13:26:49 +00:00
|
|
|
PHP_SAPI+= cli
|
|
|
|
PLIST_SUB+= CLI=""
|
2003-05-22 18:26:28 +00:00
|
|
|
.else
|
2006-05-06 13:26:49 +00:00
|
|
|
PLIST_SUB+= CLI="@comment "
|
|
|
|
CONFIGURE_ARGS+=--disable-cli
|
2003-05-22 18:26:28 +00:00
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MCGI}
|
2006-05-06 13:26:49 +00:00
|
|
|
PHP_SAPI+= cgi
|
|
|
|
PLIST_SUB+= CGI=""
|
2003-05-22 18:26:28 +00:00
|
|
|
.else
|
2006-05-06 13:26:49 +00:00
|
|
|
PLIST_SUB+= CGI="@comment "
|
|
|
|
CONFIGURE_ARGS+=--disable-cgi
|
2003-05-22 18:26:28 +00:00
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MFPM}
|
2010-07-27 15:13:54 +00:00
|
|
|
PHP_SAPI+= fpm
|
|
|
|
USE_RC_SUBR+= php-fpm
|
|
|
|
CONFIGURE_ARGS+=--enable-fpm \
|
|
|
|
--with-fpm-user=${WWWOWN} \
|
2010-12-20 11:34:20 +00:00
|
|
|
--with-fpm-group=${WWWGRP}
|
2010-07-27 15:13:54 +00:00
|
|
|
PLIST_SUB+= FPM=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= FPM="@comment "
|
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MAPACHE}
|
2006-05-06 13:26:49 +00:00
|
|
|
PHP_SAPI+= mod
|
2012-08-18 14:29:08 +00:00
|
|
|
USE_APACHE= 22+
|
2006-05-06 13:26:49 +00:00
|
|
|
.include "${PORTSDIR}/Mk/bsd.apache.mk"
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MAP2FILTER}
|
2010-07-27 15:13:54 +00:00
|
|
|
CONFIGURE_ARGS+=--with-apxs2filter=${APXS}
|
|
|
|
.else
|
2006-05-06 13:26:49 +00:00
|
|
|
CONFIGURE_ARGS+=--with-apxs2=${APXS}
|
2010-07-27 15:13:54 +00:00
|
|
|
.endif
|
2006-05-06 13:26:49 +00:00
|
|
|
PKGMESSAGE= ${PKGDIR}/pkg-message.mod
|
2012-05-18 09:33:39 +00:00
|
|
|
MODULENAME= libphp5
|
|
|
|
SHORTMODNAME= php5
|
2004-07-19 07:05:36 +00:00
|
|
|
PLIST_SUB+= APACHE=""
|
2004-01-24 13:15:54 +00:00
|
|
|
.else
|
2004-07-19 07:05:36 +00:00
|
|
|
PLIST_SUB+= APACHE="@comment "
|
2003-05-22 18:26:28 +00:00
|
|
|
.endif
|
|
|
|
|
2006-05-06 13:26:49 +00:00
|
|
|
.if !defined(WITH_REGEX_TYPE) || ${WITH_REGEX_TYPE} == "php"
|
|
|
|
CONFIGURE_ARGS+=--with-regex=php
|
|
|
|
.elif defined(WITH_REGEX_TYPE) && ${WITH_REGEX_TYPE} == "system"
|
|
|
|
CONFIGURE_ARGS+=--with-regex=system
|
2003-05-22 18:26:28 +00:00
|
|
|
.endif
|
|
|
|
|
2006-05-07 14:47:28 +00:00
|
|
|
.if !defined(WITH_ZEND_VM) || ${WITH_ZEND_VM} == "CALL"
|
|
|
|
CONFIGURE_ARGS+=--with-zend-vm=CALL
|
|
|
|
.elif defined(WITH_ZEND_VM) && ${WITH_ZEND_VM} == "SWITCH"
|
|
|
|
CONFIGURE_ARGS+=--with-zend-vm=SWITCH
|
|
|
|
.elif defined(WITH_ZEND_VM) && ${WITH_ZEND_VM} == "GOTO"
|
|
|
|
CONFIGURE_ARGS+=--with-zend-vm=GOTO
|
|
|
|
.endif
|
|
|
|
|
2009-09-22 10:36:31 +00:00
|
|
|
CONFIGURE_ENV+= ac_cv_pthreads_lib="" \
|
|
|
|
ac_cv_pthreads_cflags="" \
|
2009-03-11 14:02:59 +00:00
|
|
|
pthreads_working="yes" \
|
2012-01-12 16:19:13 +00:00
|
|
|
lt_cv_path_SED="sed"
|
2004-02-12 14:24:55 +00:00
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MLINKTHR}
|
2014-06-11 14:49:59 +00:00
|
|
|
LIBS+= ${PTHREAD_LIBS}
|
2010-06-25 07:44:18 +00:00
|
|
|
.endif
|
2006-01-31 08:36:02 +00:00
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
2004-01-10 16:49:00 +00:00
|
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MMULTIBYTE}
|
2005-06-14 20:38:26 +00:00
|
|
|
CONFIGURE_ARGS+=--enable-zend-multibyte
|
|
|
|
.endif
|
|
|
|
|
2012-07-11 23:48:40 +00:00
|
|
|
.if empty(PORT_OPTIONS:MIPV6)
|
2003-10-30 01:52:16 +00:00
|
|
|
CONFIGURE_ARGS+=--disable-ipv6
|
|
|
|
.endif
|
|
|
|
|
2003-05-22 18:26:28 +00:00
|
|
|
post-patch:
|
2004-07-19 07:05:36 +00:00
|
|
|
@${TOUCH} ${WRKSRC}/ext/php_config.h
|
2013-12-24 21:22:21 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|freetype/||g' ${WRKSRC}/configure
|
2004-07-19 22:12:09 +00:00
|
|
|
@${REINPLACE_CMD} "s|^\(extension_dir\)|; \1|" ${WRKSRC}/php.ini-*
|
2012-07-11 23:48:40 +00:00
|
|
|
.if ${PORT_OPTIONS:MFPM}
|
2010-07-27 15:13:54 +00:00
|
|
|
@${REINPLACE_CMD} -e "s|^;\(pid\)|\1|;s|^;\(pm\.[a-z_]*_servers\)|\1|" \
|
|
|
|
${WRKSRC}/sapi/fpm/php-fpm.conf.in
|
|
|
|
.endif
|
2003-05-22 18:26:28 +00:00
|
|
|
|
2010-09-15 18:35:24 +00:00
|
|
|
# Work around issues with newer (>=2.64) autoconf
|
2003-05-22 18:26:28 +00:00
|
|
|
pre-configure:
|
2010-09-15 18:35:24 +00:00
|
|
|
@${REINPLACE_CMD} -E 's:^((m4_)?divert)[(]([0-9]*)[)]:\1(600\3):' \
|
|
|
|
${WRKSRC}/configure.in `${FIND} ${WRKSRC} -name '*.m4'`
|
|
|
|
@${RM} ${WRKSRC}/configure
|
2006-05-06 13:26:49 +00:00
|
|
|
@${CAT} ${WRKSRC}/acinclude.m4 ${WRKSRC}/build/libtool.m4 > ${WRKSRC}/aclocal.m4
|
2003-05-22 18:26:28 +00:00
|
|
|
|
|
|
|
post-build:
|
2012-05-16 09:46:51 +00:00
|
|
|
@${ECHO_CMD} "PHP_VER=53" > ${WRKDIR}/php.conf
|
2003-11-20 11:10:00 +00:00
|
|
|
@${ECHO_CMD} "PHP_VERSION=${PORTVERSION}" >> ${WRKDIR}/php.conf
|
2004-07-19 07:05:36 +00:00
|
|
|
@${ECHO_CMD} "PHP_SAPI=${PHP_SAPI}" >> ${WRKDIR}/php.conf
|
2010-04-09 09:34:43 +00:00
|
|
|
@${ECHO_CMD} "PHP_EXT_INC=pcre spl" >> ${WRKDIR}/php.conf
|
|
|
|
|
|
|
|
test: build
|
|
|
|
@(cd ${WRKSRC} && ${MAKE} test)
|
2003-05-22 18:26:28 +00:00
|
|
|
|
|
|
|
post-install:
|
2013-11-01 23:49:56 +00:00
|
|
|
@${INSTALL_DATA} ${WRKSRC}/php.ini-development ${WRKSRC}/php.ini-production \
|
|
|
|
${WRKDIR}/php.conf ${STAGEDIR}/${PREFIX}/etc
|
2003-05-22 18:26:28 +00:00
|
|
|
|
2004-07-19 07:05:36 +00:00
|
|
|
.else
|
|
|
|
.include "${MASTERDIR}/Makefile.ext"
|
|
|
|
.endif
|
2003-05-22 18:26:28 +00:00
|
|
|
.include <bsd.port.post.mk>
|