Index: head/Mk/bsd.php.mk =================================================================== --- head/Mk/bsd.php.mk (revision 229564) +++ head/Mk/bsd.php.mk (revision 229565) @@ -1,361 +1,360 @@ # # bsd.php.mk - Support for PHP-based ports. # # Created by: Alex Dupre # # For FreeBSD committers: # Please send all suggested changes to the maintainer instead of committing # them to CVS yourself. # # $FreeBSD$ # # Adding 'USE_PHP=yes' to a port includes this Makefile after bsd.ports.pre.mk. # If the port requires a predefined set of PHP extensions, they can be # listed in this way: # # USE_PHP= ext1 ext2 ext3 # # The port can set these options in its Makefile before bsd.ports.pre.mk: # # DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed. # IGNORE_WITH_PHP=N - The port doesn't work with PHP version N. # USE_PHPIZE=yes - Use to build a PHP extension. # USE_PHPEXT=yes - Use to build, install and register a PHP extension. # USE_PHP_BUILD=yes - Set PHP also as a build dependency. # WANT_PHP_CLI=yes - Want the CLI version of PHP. # WANT_PHP_CGI=yes - Want the CGI version of PHP. # WANT_PHP_MOD=yes - Want the Apache Module for PHP. # WANT_PHP_WEB=yes - Want the Apache Module or the CGI version of PHP. # # You may combine multiple WANT_PHP_* knobs. # Don't specify any WANT_PHP_* knob if your port will work with every PHP SAPI. # .if !defined(_PHPMKINCLUDED) PHP_Include_MAINTAINER= ale@FreeBSD.org _PHPMKINCLUDED= yes PHPBASE?= ${LOCALBASE} .if exists(${PHPBASE}/etc/php.conf) .include "${PHPBASE}/etc/php.conf" PHP_EXT_DIR!= ${PHPBASE}/bin/php-config --extension-dir | ${SED} -ne 's,^${PHPBASE}/lib/php/\(.*\),\1,p' .else DEFAULT_PHP_VER?= 5 PHP_VER?= ${DEFAULT_PHP_VER} .if ${PHP_VER} == 4 PHP_EXT_DIR= 20020429 .else PHP_EXT_DIR= 20060613 -PHP_EXT_INC= pcre .endif HTTPD?= ${LOCALBASE}/sbin/httpd .if exists(${HTTPD}) APACHE_VERSION!= ${HTTPD} -V | ${SED} -ne 's/^Server version: Apache\/\([0-9]\)\.\([0-9]*\).*/\1\2/p' . if ${APACHE_VERSION} > 13 APXS?= ${LOCALBASE}/sbin/apxs APACHE_MPM!= ${APXS} -q MPM_NAME . if ${APACHE_MPM} == "worker" PHP_EXT_DIR:= ${PHP_EXT_DIR}-zts . endif . endif .elif defined(APACHE_PORT) APACHE_VERSION!= ${ECHO_CMD} ${APACHE_PORT} | ${SED} -ne 's,.*/apache\([0-9]*\).*,\1,p' . if ${APACHE_VERSION} > 13 && defined(WITH_MPM) && ${WITH_MPM} == "worker" PHP_EXT_DIR:= ${PHP_EXT_DIR}-zts . endif .endif .if defined(WITH_DEBUG) PHP_EXT_DIR:= ${PHP_EXT_DIR}-debug .endif PHP_SAPI?= "" .endif PHP_EXT_INC?= "" # compatability shim .if defined(BROKEN_WITH_PHP) IGNORE_WITH_PHP=${BROKEN_WITH_PHP} .endif .if defined(IGNORE_WITH_PHP) . for VER in ${IGNORE_WITH_PHP} . if ${PHP_VER} == "${VER}" IGNORE= cannot install: doesn't work with PHP version : ${PHP_VER} (Doesn't support PHP ${IGNORE_WITH_PHP}) . endif . endfor .endif .if defined(WANT_PHP_WEB) . if defined(WANT_PHP_CGI) || defined(WANT_PHP_MOD) check-makevars:: @${ECHO_CMD} "If you define WANT_PHP_WEB you cannot set also WANT_PHP_CGI" @${ECHO_CMD} "or WANT_PHP_MOD. Use only one of them." @${FALSE} . else . if defined(PHP_VERSION) && ${PHP_SAPI:Mcgi} == "" && ${PHP_SAPI:Mmod} == "" check-makevars:: @${ECHO_CMD} "This port requires the Apache Module or the CGI version of PHP, but you have" @${ECHO_CMD} "already installed a PHP port without them." @${FALSE} . endif . endif .else .if defined(WANT_PHP_CGI) . if defined(PHP_VERSION) && ${PHP_SAPI:Mcgi} == "" check-makevars:: @${ECHO_CMD} "This port requires the CGI version of PHP, but you have already" @${ECHO_CMD} "installed a PHP port without CGI." @${FALSE} . endif .else .if defined(WANT_PHP_CLI) . if defined(PHP_VERSION) && ${PHP_SAPI:Mcli} == "" check-makevars:: @${ECHO_CMD} "This port requires the CLI version of PHP, but you have already" @${ECHO_CMD} "installed a PHP port without CLI." @${FALSE} . endif .else .if defined(WANT_PHP_MOD) . if defined(PHP_VERSION) && ${PHP_SAPI:Mmod} == "" check-makevars:: @${ECHO_CMD} "This port requires the Apache Module for PHP, but you have already" @${ECHO_CMD} "installed a PHP port without the Apache Module." @${FALSE} . endif .endif .endif .endif .endif PHP_PORT= ${PORTSDIR}/lang/php${PHP_VER} .if defined(USE_PHP_BUILD) BUILD_DEPENDS+= ${PHPBASE}/include/php/main/php.h:${PHP_PORT} .endif RUN_DEPENDS+= ${PHPBASE}/include/php/main/php.h:${PHP_PORT} PLIST_SUB+= PHP_EXT_DIR=${PHP_EXT_DIR} SUB_LIST+= PHP_EXT_DIR=${PHP_EXT_DIR} .if defined(USE_PHPIZE) || defined(USE_PHPEXT) BUILD_DEPENDS+= ${PHPBASE}/bin/phpize:${PHP_PORT} GNU_CONFIGURE= yes USE_AUTOTOOLS+= autoconf:262:env CONFIGURE_ARGS+=--with-php-config=${PHPBASE}/bin/php-config configure-message: phpize-message do-phpize phpize-message: @${ECHO_MSG} "===> PHPizing for ${PKGNAME}" do-phpize: @(cd ${WRKSRC}; ${SETENV} ${SCRIPTS_ENV} ${PHPBASE}/bin/phpize) .endif -.if defined(USE_PHPEXT) +.endif + +.if defined(_POSTMKINCLUDED) && defined(USE_PHPEXT) PHP_MODNAME?= ${PORTNAME} PHP_HEADER_DIRS?= "" do-install: @${MKDIR} ${PREFIX}/lib/php/${PHP_EXT_DIR} @${INSTALL_DATA} ${WRKSRC}/modules/${PHP_MODNAME}.so \ ${PREFIX}/lib/php/${PHP_EXT_DIR} . for header in . ${PHP_HEADER_DIRS} @${MKDIR} ${PREFIX}/include/php/ext/${PHP_MODNAME}/${header} @${INSTALL_DATA} ${WRKSRC}/${header}/*.h \ ${PREFIX}/include/php/ext/${PHP_MODNAME}/${header} . endfor @${RM} -f ${PREFIX}/include/php/ext/${PHP_MODNAME}/config.h @${GREP} "#define \(COMPILE\|HAVE\|USE\)_" ${WRKSRC}/config.h \ > ${PREFIX}/include/php/ext/${PHP_MODNAME}/config.h @${ECHO_CMD} \#include \"ext/${PHP_MODNAME}/config.h\" \ >> ${PREFIX}/include/php/ext/php_config.h @${MKDIR} ${PREFIX}/etc/php @${ECHO_CMD} extension=${PHP_MODNAME}.so \ >> ${PREFIX}/etc/php/extensions.ini add-plist-info: add-plist-phpext add-plist-phpext: @${ECHO_CMD} "lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec rmdir %D/lib/php/${PHP_EXT_DIR} 2> /dev/null || true" \ >> ${TMPPLIST} @${FIND} -P ${PREFIX}/include/php/ext/${PHP_MODNAME} ! -type d 2>/dev/null | \ ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} @${FIND} -P -d ${PREFIX}/include/php/ext/${PHP_MODNAME} -type d 2>/dev/null | \ ${SED} -ne 's,^${PREFIX}/,@dirrm ,p' >> ${TMPPLIST} @${ECHO_CMD} "@exec echo \#include \\\"ext/${PHP_MODNAME}/config.h\\\" >> %D/include/php/ext/php_config.h" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec cp %D/include/php/ext/php_config.h %D/include/php/ext/php_config.h.orig" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec grep -v ext/${PHP_MODNAME}/config.h %D/include/php/ext/php_config.h.orig > %D/include/php/ext/php_config.h || true" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec rm %D/include/php/ext/php_config.h.orig" \ >> ${TMPPLIST} @${ECHO_CMD} "@exec mkdir -p %D/etc/php" \ >> ${TMPPLIST} @${ECHO_CMD} "@exec echo extension=${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec grep -v extension=${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec rm %D/etc/php/extensions.ini.orig" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ >> ${TMPPLIST} @${ECHO_CMD} "@unexec rmdir %D/etc/php 2> /dev/null || true" \ >> ${TMPPLIST} security-check: php-ini php-ini: @${ECHO_CMD} "****************************************************************************" @${ECHO_CMD} "" @${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini" @${ECHO_CMD} "configuration file to automatically load the installed extension:" @${ECHO_CMD} "" @${ECHO_CMD} "extension=${PHP_MODNAME}.so" @${ECHO_CMD} "" @${ECHO_CMD} "****************************************************************************" -.endif - .endif # Extensions .if defined(_POSTMKINCLUDED) && ${USE_PHP:L} != "yes" # non-version specific components _USE_PHP_ALL= apc bcmath bitset bz2 calendar ctype curl dba dbase \ exif fileinfo fribidi ftp gd gettext gmp \ hash iconv imap interbase json ldap mbstring mcrypt \ memcache mhash mssql mysql ncurses odbc \ openssl pcntl pcre pdf pgsql posix \ pspell radius readline recode session shmop snmp \ sockets sybase_ct sysvmsg sysvsem sysvshm \ tokenizer wddx xml xmlrpc yaz zip zlib # version specific components _USE_PHP_VER4= ${_USE_PHP_ALL} crack dbx dio domxml filepro mcal mcve \ mnogosearch oracle overload pfpro xslt yp _USE_PHP_VER5= ${_USE_PHP_ALL} dom filter ming mysqli oci8 pdo \ pdo_mysql pdo_sqlite \ simplexml soap spl sqlite tidy xmlreader xmlwriter xsl apc_DEPENDS= www/pecl-APC bcmath_DEPENDS= math/php${PHP_VER}-bcmath bitset_DEPENDS= math/pecl-bitset bz2_DEPENDS= archivers/php${PHP_VER}-bz2 calendar_DEPENDS= misc/php${PHP_VER}-calendar crack_DEPENDS= security/php${PHP_VER}-crack ctype_DEPENDS= textproc/php${PHP_VER}-ctype curl_DEPENDS= ftp/php${PHP_VER}-curl dba_DEPENDS= databases/php${PHP_VER}-dba dbase_DEPENDS= databases/php${PHP_VER}-dbase dbx_DEPENDS= databases/php${PHP_VER}-dbx dio_DEPENDS= devel/php${PHP_VER}-dio dom_DEPENDS= textproc/php${PHP_VER}-dom domxml_DEPENDS= textproc/php${PHP_VER}-domxml exif_DEPENDS= graphics/php${PHP_VER}-exif fileinfo_DEPENDS= sysutils/pecl-fileinfo filepro_DEPENDS=databases/php${PHP_VER}-filepro filter_DEPENDS= security/php${PHP_VER}-filter fribidi_DEPENDS=converters/pecl-fribidi ftp_DEPENDS= ftp/php${PHP_VER}-ftp gd_DEPENDS= graphics/php${PHP_VER}-gd gettext_DEPENDS=devel/php${PHP_VER}-gettext gmp_DEPENDS= math/php${PHP_VER}-gmp iconv_DEPENDS= converters/php${PHP_VER}-iconv imap_DEPENDS= mail/php${PHP_VER}-imap interbase_DEPENDS= databases/php${PHP_VER}-interbase ldap_DEPENDS= net/php${PHP_VER}-ldap mbstring_DEPENDS= converters/php${PHP_VER}-mbstring mcal_DEPENDS= misc/php${PHP_VER}-mcal mcrypt_DEPENDS= security/php${PHP_VER}-mcrypt mcve_DEPENDS= devel/php${PHP_VER}-mcve memcache_DEPENDS= databases/pecl-memcache mhash_DEPENDS= security/php${PHP_VER}-mhash ming_DEPENDS= graphics/php${PHP_VER}-ming mnogosearch_DEPENDS= www/php${PHP_VER}-mnogosearch mssql_DEPENDS= databases/php${PHP_VER}-mssql mysql_DEPENDS= databases/php${PHP_VER}-mysql mysqli_DEPENDS= databases/php${PHP_VER}-mysqli ncurses_DEPENDS=devel/php${PHP_VER}-ncurses oci8_DEPENDS= databases/php${PHP_VER}-oci8 odbc_DEPENDS= databases/php${PHP_VER}-odbc openssl_DEPENDS=security/php${PHP_VER}-openssl oracle_DEPENDS= databases/php${PHP_VER}-oracle overload_DEPENDS=lang/php${PHP_VER}-overload pcntl_DEPENDS= devel/php${PHP_VER}-pcntl pcre_DEPENDS= devel/php${PHP_VER}-pcre pdf_DEPENDS= print/pecl-pdflib pdo_DEPENDS= databases/php${PHP_VER}-pdo pdo_mysql_DEPENDS= databases/php${PHP_VER}-pdo_mysql pdo_sqlite_DEPENDS= databases/php${PHP_VER}-pdo_sqlite pfpro_DEPENDS= finance/php${PHP_VER}-pfpro pgsql_DEPENDS= databases/php${PHP_VER}-pgsql posix_DEPENDS= sysutils/php${PHP_VER}-posix pspell_DEPENDS= textproc/php${PHP_VER}-pspell radius_DEPENDS= net/pecl-radius readline_DEPENDS= devel/php${PHP_VER}-readline recode_DEPENDS= converters/php${PHP_VER}-recode session_DEPENDS=www/php${PHP_VER}-session shmop_DEPENDS= devel/php${PHP_VER}-shmop simplexml_DEPENDS= textproc/php${PHP_VER}-simplexml snmp_DEPENDS= net-mgmt/php${PHP_VER}-snmp soap_DEPENDS= net/php${PHP_VER}-soap sockets_DEPENDS=net/php${PHP_VER}-sockets spl_DEPENDS= devel/php${PHP_VER}-spl sqlite_DEPENDS= databases/php${PHP_VER}-sqlite sybase_ct_DEPENDS= databases/php${PHP_VER}-sybase_ct sysvmsg_DEPENDS=devel/php${PHP_VER}-sysvmsg sysvsem_DEPENDS=devel/php${PHP_VER}-sysvsem sysvshm_DEPENDS=devel/php${PHP_VER}-sysvshm tidy_DEPENDS= www/php${PHP_VER}-tidy tokenizer_DEPENDS= devel/php${PHP_VER}-tokenizer wddx_DEPENDS= textproc/php${PHP_VER}-wddx xml_DEPENDS= textproc/php${PHP_VER}-xml xmlreader_DEPENDS= textproc/php${PHP_VER}-xmlreader xmlrpc_DEPENDS= net/php${PHP_VER}-xmlrpc xmlwriter_DEPENDS= textproc/php${PHP_VER}-xmlwriter xsl_DEPENDS= textproc/php${PHP_VER}-xsl xslt_DEPENDS= textproc/php${PHP_VER}-xslt yaz_DEPENDS= net/pecl-yaz yp_DEPENDS= net/php${PHP_VER}-yp zlib_DEPENDS= archivers/php${PHP_VER}-zlib .if ${PHP_VER} == 4 hash_DEPENDS= security/pecl-hash json_DEPENDS= devel/pecl-json zip_DEPENDS= archivers/pecl-zip .else hash_DEPENDS= security/php${PHP_VER}-hash json_DEPENDS= devel/php${PHP_VER}-json zip_DEPENDS= archivers/php${PHP_VER}-zip .endif . for extension in ${USE_PHP} . if ${_USE_PHP_VER${PHP_VER}:M${extension}} != "" . if ${PHP_EXT_INC:M${extension}} == "" . if defined(USE_PHP_BUILD) BUILD_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/${extension}.so:${PORTSDIR}/${${extension}_DEPENDS} . endif RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/${extension}.so:${PORTSDIR}/${${extension}_DEPENDS} . endif . else isyes= ${extension} . if ${isyes:L} != "yes" check-makevars:: @${ECHO_CMD} "Unknown extension ${extension} for PHP ${PHP_VER}." @${FALSE} . endif . endif . endfor .endif Property changes on: head/Mk/bsd.php.mk ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.49 \ No newline at end of property +1.50 \ No newline at end of property Index: head/devel/Makefile =================================================================== --- head/devel/Makefile (revision 229564) +++ head/devel/Makefile (revision 229565) @@ -1,2736 +1,2737 @@ # $FreeBSD$ # COMMENT = Development utilities SUBDIR += 9base SUBDIR += ElectricFence SUBDIR += ORBit SUBDIR += ORBit2 SUBDIR += ORBit2-reference SUBDIR += SpecTcl SUBDIR += ZendOptimizer SUBDIR += a2dev SUBDIR += aap SUBDIR += ace SUBDIR += ace+tao SUBDIR += ace+tao-doc SUBDIR += acovea SUBDIR += acovea-gtk SUBDIR += acpicatools SUBDIR += activitymail SUBDIR += adabindx SUBDIR += adabooch SUBDIR += adabooch-doc-html SUBDIR += adacurses SUBDIR += adasdl SUBDIR += adime SUBDIR += adocman SUBDIR += aegis SUBDIR += afay SUBDIR += agide SUBDIR += aifad SUBDIR += alabastra SUBDIR += ald SUBDIR += alf SUBDIR += allegro SUBDIR += allegro-devel SUBDIR += anjuta SUBDIR += antlr SUBDIR += antlrworks SUBDIR += apache-ant SUBDIR += apr SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argtable SUBDIR += arm-elf-binutils SUBDIR += arm-elf-gcc295 SUBDIR += arm-rtems-binutils SUBDIR += arm-rtems-g77 SUBDIR += arm-rtems-gcc SUBDIR += arm-rtems-gdb SUBDIR += arm-rtems-objc SUBDIR += aros-sdk SUBDIR += as31 SUBDIR += asdlgen SUBDIR += asis SUBDIR += asis-gpl SUBDIR += asl SUBDIR += asmutils SUBDIR += asmx SUBDIR += astyle SUBDIR += atlas SUBDIR += atlas-devel SUBDIR += aunit SUBDIR += autobook SUBDIR += autoconf-archive SUBDIR += autoconf-wrapper SUBDIR += autoconf213 SUBDIR += autoconf262 SUBDIR += autodia SUBDIR += autodist SUBDIR += autogen SUBDIR += automake-wrapper SUBDIR += automake110 SUBDIR += automake14 SUBDIR += automake15 SUBDIR += automake16 SUBDIR += automake17 SUBDIR += automake18 SUBDIR += automake19 SUBDIR += automoc4 SUBDIR += autotools SUBDIR += avalon-framework SUBDIR += avarice SUBDIR += avce00 SUBDIR += avltree SUBDIR += avr-binutils SUBDIR += avr-gcc SUBDIR += avr-gcc-3 SUBDIR += avr-gcc-devel SUBDIR += avr-gdb SUBDIR += avr-libc SUBDIR += avra SUBDIR += avrdude SUBDIR += bazaar SUBDIR += bazaar-ng SUBDIR += bcc SUBDIR += bcpp SUBDIR += beautifyphp SUBDIR += bglibs SUBDIR += bicyclerepair SUBDIR += bin86 SUBDIR += bison SUBDIR += bisongen SUBDIR += bnf SUBDIR += bnfc SUBDIR += boaconstructor SUBDIR += boehm-gc SUBDIR += bonobo SUBDIR += bonobo-conf SUBDIR += boost SUBDIR += boost-python SUBDIR += boost_build SUBDIR += bouml SUBDIR += bouml-doc SUBDIR += bufferpool SUBDIR += bug-buddy SUBDIR += bugzilla SUBDIR += bugzilla2 SUBDIR += buildbot SUBDIR += buildtool SUBDIR += buildtool-doc SUBDIR += bullet SUBDIR += bunny SUBDIR += byaccj SUBDIR += bzr-gtk SUBDIR += bzrtools SUBDIR += c2lib SUBDIR += c2man SUBDIR += c2mdoc SUBDIR += c4 SUBDIR += c_c++_reference SUBDIR += c_parser SUBDIR += calibrator SUBDIR += callgrind SUBDIR += cbind SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache SUBDIR += cccc SUBDIR += ccdoc SUBDIR += ccmalloc SUBDIR += ccrtp SUBDIR += cdecl SUBDIR += cdialog SUBDIR += cdk SUBDIR += cdoc SUBDIR += cedet SUBDIR += cflow SUBDIR += cflow2vcg SUBDIR += cgdb SUBDIR += cgilib SUBDIR += cgit SUBDIR += cgprof SUBDIR += charva SUBDIR += cil SUBDIR += cl-asdf SUBDIR += cl-asdf-clisp SUBDIR += cl-asdf-sbcl SUBDIR += cl-infix SUBDIR += cl-infix-sbcl SUBDIR += cl-port SUBDIR += cl-port-clisp SUBDIR += cl-port-sbcl SUBDIR += cl-split-sequence SUBDIR += cl-split-sequence-clisp SUBDIR += cl-split-sequence-sbcl SUBDIR += cl-uffi SUBDIR += cl-uffi-sbcl SUBDIR += clanlib SUBDIR += clewn SUBDIR += clig SUBDIR += clint SUBDIR += clisp-hyperspec SUBDIR += cmake SUBDIR += cmunge SUBDIR += cobf SUBDIR += cocktail SUBDIR += codeblocks SUBDIR += codeville SUBDIR += codeworker SUBDIR += colorer SUBDIR += commoncpp SUBDIR += compiz-bcop SUBDIR += configkit SUBDIR += cons SUBDIR += cons-test SUBDIR += cook SUBDIR += cpan-upload SUBDIR += cppadvio SUBDIR += cppi SUBDIR += cppunit SUBDIR += cproto SUBDIR += cross-binutils SUBDIR += cross-gcc SUBDIR += cross-gdb SUBDIR += crossvc SUBDIR += crow SUBDIR += cscope SUBDIR += cscout SUBDIR += cssc SUBDIR += cstringbuffer SUBDIR += ctags SUBDIR += cunit SUBDIR += cut SUBDIR += cutils SUBDIR += cvs+ipv6 SUBDIR += cvs-devel SUBDIR += cvs-syncmail SUBDIR += cvs2cl SUBDIR += cvs2darcs SUBDIR += cvs2html SUBDIR += cvs2p4 SUBDIR += cvs2svn SUBDIR += cvsadmin SUBDIR += cvsbook SUBDIR += cvschangelogbuilder SUBDIR += cvschk SUBDIR += cvsd SUBDIR += cvsdadm SUBDIR += cvsdelta SUBDIR += cvsdiff2patch SUBDIR += cvsgraph SUBDIR += cvslines SUBDIR += cvsmapfs SUBDIR += cvsmonitor SUBDIR += cvsnt SUBDIR += cvsplot SUBDIR += cvsps SUBDIR += cvsps-devel SUBDIR += cvsspam SUBDIR += cvsstat SUBDIR += cvstrac SUBDIR += cvsutils SUBDIR += cvsweb SUBDIR += cvsweb3 SUBDIR += cvswrap SUBDIR += cweb SUBDIR += cxmon SUBDIR += cxref SUBDIR += cxxtest SUBDIR += darcs SUBDIR += darts SUBDIR += datadesigner SUBDIR += datadraw SUBDIR += dbus SUBDIR += dbus-glib SUBDIR += dbus-qt3 SUBDIR += dbus-qt4 SUBDIR += dbus-sharp SUBDIR += ddd SUBDIR += deputy SUBDIR += desktop-file-utils SUBDIR += dev86 SUBDIR += devhelp SUBDIR += devtodo SUBDIR += dfuife-curses SUBDIR += dia2code SUBDIR += diffconvert SUBDIR += directfb SUBDIR += distcc SUBDIR += distel SUBDIR += distorm SUBDIR += ditrack SUBDIR += dits SUBDIR += djgpp-binutils SUBDIR += djgpp-crx SUBDIR += djgpp-gcc SUBDIR += dmake SUBDIR += dmalloc SUBDIR += dmucs SUBDIR += doctorj SUBDIR += dotconf SUBDIR += dotconf++ SUBDIR += doxygen SUBDIR += dparser SUBDIR += dprog SUBDIR += drpython SUBDIR += dsss SUBDIR += duplo SUBDIR += dwarfdump SUBDIR += dyncall SUBDIR += e00compr SUBDIR += e4graph SUBDIR += e_dbus SUBDIR += ebnf2yacc SUBDIR += eboxy SUBDIR += ecb SUBDIR += ecgi SUBDIR += ecore SUBDIR += ecore-file SUBDIR += ecore-ipc SUBDIR += ecore-job SUBDIR += ecore-main SUBDIR += ecos-tools SUBDIR += eet SUBDIR += egypt SUBDIR += eieio SUBDIR += eiffelstudio SUBDIR += elf SUBDIR += elfio SUBDIR += elfrc SUBDIR += elfsh SUBDIR += elftoaout SUBDIR += elib SUBDIR += elib-emacs21 SUBDIR += engrave SUBDIR += entity SUBDIR += epm SUBDIR += epydoc SUBDIR += eric SUBDIR += eric4 SUBDIR += eris SUBDIR += error SUBDIR += esdl SUBDIR += esvn SUBDIR += etl SUBDIR += etoile-collectionkit SUBDIR += etoile-coreobject SUBDIR += etoile-foundation SUBDIR += etoile-serialize SUBDIR += etoile-unitkit SUBDIR += eventxx SUBDIR += evfs SUBDIR += evolution-gconf-tools SUBDIR += excalibur-configuration SUBDIR += f77flow SUBDIR += fam SUBDIR += fampp SUBDIR += fastcrc SUBDIR += fastdep SUBDIR += fc++ SUBDIR += ffcall SUBDIR += fga SUBDIR += fhist SUBDIR += fib SUBDIR += fistgen SUBDIR += flatzebra SUBDIR += flex-sdk SUBDIR += flex-sdk2 SUBDIR += flex_compiler_shell SUBDIR += flexjson SUBDIR += flick SUBDIR += florist SUBDIR += florist-gpl SUBDIR += flowdesigner SUBDIR += flyspray SUBDIR += fnccheck SUBDIR += fnorb SUBDIR += fortran-utils SUBDIR += fortytwo-encore SUBDIR += fpc-bfd SUBDIR += fpc-fcl-async SUBDIR += fpc-fcl-base SUBDIR += fpc-fcl-db SUBDIR += fpc-fcl-fpcunit SUBDIR += fpc-fcl-image SUBDIR += fpc-fcl-json SUBDIR += fpc-fcl-net SUBDIR += fpc-fcl-passrc SUBDIR += fpc-fcl-process SUBDIR += fpc-fcl-registry SUBDIR += fpc-fcl-web SUBDIR += fpc-fcl-xml SUBDIR += fpc-fpmkunit SUBDIR += fpc-fv SUBDIR += fpc-gdbint SUBDIR += fpc-pthreads SUBDIR += fpc-regexpr SUBDIR += fpc-sdl SUBDIR += fpc-symbolic SUBDIR += fpc-zlib SUBDIR += fpp SUBDIR += freebase SUBDIR += freelibiberty SUBDIR += freeride SUBDIR += freescope SUBDIR += frink SUBDIR += fsmgenerator SUBDIR += ftjam SUBDIR += ftnchek SUBDIR += fujaba SUBDIR += funnelweb SUBDIR += g-wrap SUBDIR += g2c SUBDIR += gaa SUBDIR += gamin SUBDIR += gaphor SUBDIR += gauche-gaunit SUBDIR += gauche-readline SUBDIR += gauche-sdl SUBDIR += gaul SUBDIR += gazpacho SUBDIR += gccmakedep SUBDIR += gccxml SUBDIR += gconf SUBDIR += gconf2 SUBDIR += gconf2-reference SUBDIR += gconfmm SUBDIR += gconfmm26 SUBDIR += gcvs SUBDIR += gdb53 SUBDIR += gdb53-act SUBDIR += gdb6 SUBDIR += gdbmods SUBDIR += geany SUBDIR += gearmand SUBDIR += generate SUBDIR += gengameng SUBDIR += gengetopt SUBDIR += genproto SUBDIR += gettext SUBDIR += gettext-lint SUBDIR += gettext-msghack SUBDIR += getxml SUBDIR += gflags SUBDIR += giggle SUBDIR += gindent SUBDIR += gio-fam-backend SUBDIR += git SUBDIR += gittrac SUBDIR += glade2 SUBDIR += glade3 SUBDIR += glademm SUBDIR += glib-java SUBDIR += glib12 SUBDIR += glib20 SUBDIR += glib20-reference SUBDIR += glibmm SUBDIR += glibmm-reference SUBDIR += global SUBDIR += glog SUBDIR += glrparser SUBDIR += glui SUBDIR += gmake SUBDIR += gnome-build SUBDIR += gnome-common SUBDIR += gnome-crash SUBDIR += gnome-vfs SUBDIR += gnome-vfs-monikers SUBDIR += gnome-vfs-reference SUBDIR += gnome-vfs1 SUBDIR += gnome-vfsmm SUBDIR += gnome2-hacker-tools SUBDIR += gnucflow SUBDIR += gnulibiberty SUBDIR += gnustep SUBDIR += gnustep-make SUBDIR += gob2 SUBDIR += goffice SUBDIR += goffice04 SUBDIR += goffice06 SUBDIR += goffice1 SUBDIR += gonzui SUBDIR += google-perftools SUBDIR += google-sparsehash SUBDIR += googlemock SUBDIR += googletest SUBDIR += gorm SUBDIR += gperf SUBDIR += gpsim SUBDIR += gputils SUBDIR += gsoap SUBDIR += gstreamer-plugins-gconf SUBDIR += gstreamer-plugins-gio SUBDIR += gstreamer-plugins-gnomevfs SUBDIR += gstreamer-plugins-sdl SUBDIR += gstreamer-plugins-soup SUBDIR += gtgt SUBDIR += gtkmozedit SUBDIR += gtranslator SUBDIR += guichan SUBDIR += guikachu SUBDIR += guile-lib SUBDIR += guiloader SUBDIR += guiloader-c++ SUBDIR += gvfs SUBDIR += gwenhywfar SUBDIR += gzstream SUBDIR += hachoir-core SUBDIR += hachoir-parser SUBDIR += hachoir-regex SUBDIR += happydoc SUBDIR += hapy SUBDIR += hcs12mem SUBDIR += hgsvn SUBDIR += hgview SUBDIR += highlighterkit SUBDIR += horde-chora SUBDIR += horde-whups SUBDIR += hp48cc SUBDIR += hp48xgcc SUBDIR += hptools SUBDIR += hs-Stream SUBDIR += hs-alex SUBDIR += hs-binary-ghc SUBDIR += hs-c2hs SUBDIR += hs-cpphs SUBDIR += hs-dlist SUBDIR += hs-drift SUBDIR += hs-haddock SUBDIR += hs-haddock-docs SUBDIR += hs-happy SUBDIR += hs-hat SUBDIR += hs-hdoc SUBDIR += hs-hmake SUBDIR += hs-idoc SUBDIR += hs-pcre-light-ghc SUBDIR += hs-utf8-string-ghc SUBDIR += hs-uuagc SUBDIR += hs-uulib SUBDIR += hypersrc SUBDIR += i386-rtems-binutils SUBDIR += i386-rtems-g77 SUBDIR += i386-rtems-gcc SUBDIR += i386-rtems-gdb SUBDIR += i386-rtems-objc SUBDIR += i960-rtems-binutils SUBDIR += i960-rtems-gcc SUBDIR += i960-rtems-gdb SUBDIR += ice SUBDIR += icu SUBDIR += icu2 SUBDIR += id-utils SUBDIR += ifd-test SUBDIR += imake SUBDIR += inilib SUBDIR += initutil SUBDIR += invitation_to_ruby SUBDIR += ipython SUBDIR += ireport SUBDIR += itext SUBDIR += ixlib SUBDIR += jakarta-commons-chain SUBDIR += jakarta-commons-configuration SUBDIR += jakarta-commons-daemon SUBDIR += jakarta-commons-io SUBDIR += jakarta-commons-jxpath SUBDIR += jakarta-commons-modeler SUBDIR += jakelib2 SUBDIR += jam SUBDIR += java-util-concurrent SUBDIR += javolution SUBDIR += jclassinfo SUBDIR += jcmdline SUBDIR += jep SUBDIR += jline SUBDIR += jrtplib SUBDIR += jsap SUBDIR += jsl SUBDIR += jsmin SUBDIR += json-c SUBDIR += json-glib SUBDIR += jtag SUBDIR += jude-community SUBDIR += judy SUBDIR += k8048 SUBDIR += kBuild SUBDIR += kaptain SUBDIR += kcachegrind SUBDIR += kdbg SUBDIR += kdesdk3 SUBDIR += kdesdk4 SUBDIR += kdesvn SUBDIR += kdesvn-kde4 SUBDIR += kdevelop SUBDIR += kimwitu SUBDIR += kimwitu++ SUBDIR += klassmodeler SUBDIR += kodos SUBDIR += kprof SUBDIR += kscope SUBDIR += kxl SUBDIR += kyra SUBDIR += lasi SUBDIR += lbpp SUBDIR += leaktracer SUBDIR += lemon SUBDIR += lexi SUBDIR += lhs2TeX SUBDIR += libIDL SUBDIR += libPropList SUBDIR += libU77 SUBDIR += libXGP SUBDIR += libYGP SUBDIR += libafterbase SUBDIR += libarena SUBDIR += libassa SUBDIR += libassetml SUBDIR += libast SUBDIR += libaura SUBDIR += libavl SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio SUBDIR += libbnr SUBDIR += libbonobo SUBDIR += libbonobo-reference SUBDIR += libbonobomm SUBDIR += libburn SUBDIR += libcapsinetwork SUBDIR += libccid SUBDIR += libcfg SUBDIR += libcheck SUBDIR += libchipcard SUBDIR += libchipcard-kde SUBDIR += libcii SUBDIR += libclaw SUBDIR += libconfig SUBDIR += libconfuse SUBDIR += libcoro SUBDIR += libcoyotl SUBDIR += libcwd SUBDIR += libdaemon SUBDIR += libdasm SUBDIR += libdfui SUBDIR += libdict SUBDIR += libdisasm SUBDIR += libdlmalloc SUBDIR += libdlna SUBDIR += libdnsres SUBDIR += libds SUBDIR += libdsp SUBDIR += libdwarf SUBDIR += libedit SUBDIR += libelf SUBDIR += libepp-nicbr SUBDIR += libev SUBDIR += libevent SUBDIR += libevocosm SUBDIR += libexecinfo SUBDIR += libffi SUBDIR += libfirm SUBDIR += libfs++ SUBDIR += libftdi SUBDIR += libg++ SUBDIR += libgalago SUBDIR += libgamepad SUBDIR += libgconf-java SUBDIR += libgetline SUBDIR += libghthash SUBDIR += libgii SUBDIR += libgiigic SUBDIR += libglade SUBDIR += libglade-java SUBDIR += libglade2 SUBDIR += libglade2-reference SUBDIR += libglademm SUBDIR += libglademm24 SUBDIR += libgpc SUBDIR += libgsf SUBDIR += libgsf-gnome SUBDIR += libgtop SUBDIR += libgutenfetch SUBDIR += libhash SUBDIR += libhid SUBDIR += libhoard SUBDIR += libical SUBDIR += libiqxmlrpc SUBDIR += libisc SUBDIR += libisofs SUBDIR += libixp SUBDIR += liblas SUBDIR += libleaftag SUBDIR += liblogging SUBDIR += libltdl15 SUBDIR += libmaa SUBDIR += libmatheval SUBDIR += libmba SUBDIR += libmcs SUBDIR += libmimedir SUBDIR += libmonetra SUBDIR += libmowgli SUBDIR += libmpcbdm SUBDIR += libmsocket SUBDIR += libmtrie SUBDIR += libnaji SUBDIR += libnotify SUBDIR += libnotifymm SUBDIR += libnxt SUBDIR += liboil SUBDIR += libol SUBDIR += libole2 SUBDIR += liboobs SUBDIR += liboop SUBDIR += libopendaap SUBDIR += libopensync SUBDIR += libopensync022 SUBDIR += libopkele SUBDIR += libowfat SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libphish SUBDIR += libphk SUBDIR += libpperl SUBDIR += libpthread-stubs SUBDIR += librcc SUBDIR += librcd SUBDIR += libreadline-java SUBDIR += libredblack SUBDIR += librelp SUBDIR += libruin SUBDIR += libs11n SUBDIR += libshbuf SUBDIR += libshhmsg SUBDIR += libshhopt SUBDIR += libsigc++ SUBDIR += libsigc++12 SUBDIR += libsigc++20 SUBDIR += libsigcx SUBDIR += libsigsegv SUBDIR += libslang2 SUBDIR += libsoup SUBDIR += libsoup-reference SUBDIR += libsoup22 SUBDIR += libstatgrab SUBDIR += libstrfunc SUBDIR += libstroke SUBDIR += libtai SUBDIR += libtap SUBDIR += libtar SUBDIR += libtecla SUBDIR += libthai SUBDIR += libticalcs SUBDIR += libtifiles SUBDIR += libtifiles2 SUBDIR += libtool15 SUBDIR += libublio SUBDIR += libukcprog SUBDIR += libunicode SUBDIR += libuninum SUBDIR += libusb SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger SUBDIR += libvanessa_socket SUBDIR += libvc SUBDIR += libvolume_id SUBDIR += libwfut SUBDIR += libx86 SUBDIR += libxalloc SUBDIR += libytnef SUBDIR += libzrtpcpp SUBDIR += libzvbi SUBDIR += lightning SUBDIR += lincvs SUBDIR += linux-allegro SUBDIR += linux-js SUBDIR += linux-kmod-compat SUBDIR += linux-libglade SUBDIR += linux-libglade2 SUBDIR += linux-libsigc++20 SUBDIR += linux-runrev SUBDIR += linux-sdl12 SUBDIR += linux_kdump SUBDIR += linuxthreads SUBDIR += linxt SUBDIR += lion SUBDIR += llvm SUBDIR += llvm-devel SUBDIR += lndir SUBDIR += log4c SUBDIR += log4cplus SUBDIR += log4cpp SUBDIR += log4cxx SUBDIR += log4j SUBDIR += log4sh SUBDIR += log4shib SUBDIR += loki SUBDIR += looks SUBDIR += lrmi SUBDIR += lua-bitlib SUBDIR += lua-filename SUBDIR += lua-gettext SUBDIR += lua-posix SUBDIR += lua-pty SUBDIR += lua50-app SUBDIR += lua50-compat51 SUBDIR += lua50-dfui SUBDIR += lua50-filename SUBDIR += lua50-gettext SUBDIR += lua50-posix SUBDIR += lua50-pty SUBDIR += luabind SUBDIR += luajava SUBDIR += lwp SUBDIR += m17n-db SUBDIR += m17n-docs SUBDIR += m17n-lib SUBDIR += m4 SUBDIR += m6811-binutils SUBDIR += m68k-rtems-binutils SUBDIR += m68k-rtems-g77 SUBDIR += m68k-rtems-gcc SUBDIR += m68k-rtems-gdb SUBDIR += m68k-rtems-objc SUBDIR += make++ SUBDIR += makedepend SUBDIR += makeplus SUBDIR += maketool SUBDIR += maven SUBDIR += maven2 SUBDIR += mcpp SUBDIR += memcheck SUBDIR += menhir SUBDIR += mercator SUBDIR += mercurial SUBDIR += meta-cvs SUBDIR += mico SUBDIR += mime SUBDIR += mimir SUBDIR += mingw32-bin-msvcrt SUBDIR += mingw32-binutils SUBDIR += mingw32-directx SUBDIR += mingw32-gcc SUBDIR += mingw32-pdcurses SUBDIR += mingw32-pthreads SUBDIR += mips-rtems-binutils SUBDIR += mips-rtems-g77 SUBDIR += mips-rtems-gcc SUBDIR += mips-rtems-gdb SUBDIR += mips-rtems-objc SUBDIR += mk SUBDIR += mkcmd SUBDIR += mkmf SUBDIR += ml-doc SUBDIR += mm SUBDIR += mob SUBDIR += mono-addins SUBDIR += mono-tools SUBDIR += monodoc SUBDIR += monotone SUBDIR += monotone-viz SUBDIR += motor SUBDIR += mpatrol SUBDIR += mph SUBDIR += mprof SUBDIR += mq4cpp SUBDIR += msp430-binutils SUBDIR += msp430-gcc SUBDIR += msp430-gdb SUBDIR += msp430-libc SUBDIR += msrc0 SUBDIR += nana SUBDIR += nant SUBDIR += nasm SUBDIR += naturaldocs SUBDIR += ncc SUBDIR += ncnf SUBDIR += ncurses SUBDIR += ncurses-devel SUBDIR += ndesk-dbus SUBDIR += ndesk-dbus-glib SUBDIR += nemiver SUBDIR += netscape-java40 SUBDIR += newfile SUBDIR += newt SUBDIR += ngpt SUBDIR += noweb SUBDIR += nspr SUBDIR += nx SUBDIR += oaf SUBDIR += obby SUBDIR += obfuscatejs SUBDIR += objcunit SUBDIR += objectivelib SUBDIR += ocaml-annexlib SUBDIR += ocaml-calendar SUBDIR += ocaml-camljava SUBDIR += ocaml-camlp5 SUBDIR += ocaml-camomile SUBDIR += ocaml-camomile-examples SUBDIR += ocaml-cfg SUBDIR += ocaml-classes SUBDIR += ocaml-equeue SUBDIR += ocaml-event SUBDIR += ocaml-extlib SUBDIR += ocaml-findlib SUBDIR += ocaml-lacaml SUBDIR += ocaml-lwt SUBDIR += ocaml-magic SUBDIR += ocaml-ounit SUBDIR += ocaml-pcre SUBDIR += ocaml-pomap SUBDIR += ocaml-res SUBDIR += ocaml-sdl SUBDIR += ocaml-sem SUBDIR += ocaml-sexplib SUBDIR += ocaml-typeconv SUBDIR += ocaml-ulex SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 SUBDIR += ocamlweb SUBDIR += ode SUBDIR += ode-devel SUBDIR += ois SUBDIR += omake SUBDIR += omniNotify SUBDIR += omniORB SUBDIR += oniguruma SUBDIR += oniguruma4 SUBDIR += oniguruma5 SUBDIR += open-beagle SUBDIR += opencvs SUBDIR += openwince-include SUBDIR += openzz SUBDIR += orbitcpp SUBDIR += oskit SUBDIR += ossp-al SUBDIR += ossp-cfg SUBDIR += ossp-ex SUBDIR += ossp-l2 SUBDIR += ossp-val SUBDIR += ossp-var SUBDIR += ossp-xds SUBDIR += otrs SUBDIR += p4.el SUBDIR += p4api SUBDIR += p4db SUBDIR += p4delta SUBDIR += p4genpatch SUBDIR += p4v SUBDIR += p5-AI-Pathfinding-AStar SUBDIR += p5-AI-Prolog SUBDIR += p5-Acme-MetaSyntactic SUBDIR += p5-Agent SUBDIR += p5-Algorithm-Accounting SUBDIR += p5-Algorithm-Annotate SUBDIR += p5-Algorithm-Bucketizer SUBDIR += p5-Algorithm-C3 SUBDIR += p5-Algorithm-ChooseSubsets SUBDIR += p5-Algorithm-Cluster SUBDIR += p5-Algorithm-Dependency SUBDIR += p5-Algorithm-Dependency-Objects SUBDIR += p5-Algorithm-Diff SUBDIR += p5-Algorithm-Evolutionary SUBDIR += p5-Algorithm-IncludeExclude SUBDIR += p5-Algorithm-Interval2Prefix SUBDIR += p5-Algorithm-LCS SUBDIR += p5-Algorithm-LUHN SUBDIR += p5-Algorithm-MDiff SUBDIR += p5-Algorithm-MarkovChain SUBDIR += p5-Algorithm-MinMax SUBDIR += p5-Algorithm-NaiveBayes SUBDIR += p5-Algorithm-Networksort SUBDIR += p5-Algorithm-Numerical-Shuffle SUBDIR += p5-Algorithm-Permute SUBDIR += p5-Algorithm-SVM SUBDIR += p5-Alias SUBDIR += p5-Alzabo SUBDIR += p5-Alzabo-GUI-Mason SUBDIR += p5-Any-Moose SUBDIR += p5-AnyData SUBDIR += p5-AnyEvent SUBDIR += p5-App-CLI SUBDIR += p5-App-Cache SUBDIR += p5-App-Cmd SUBDIR += p5-App-Control SUBDIR += p5-App-Info SUBDIR += p5-App-Options SUBDIR += p5-App-Trace SUBDIR += p5-AppConfig SUBDIR += p5-AppConfig-Std SUBDIR += p5-Array-Group SUBDIR += p5-Array-Iterator SUBDIR += p5-Array-Window SUBDIR += p5-AtExit SUBDIR += p5-Attribute-Handlers SUBDIR += p5-Attribute-Handlers-Prospective SUBDIR += p5-Attribute-Persistent SUBDIR += p5-AutoLoader SUBDIR += p5-AutoXS-Header SUBDIR += p5-B-Deobfuscate SUBDIR += p5-B-Generate SUBDIR += p5-B-Graph SUBDIR += p5-B-Hooks-EndOfScope SUBDIR += p5-B-Hooks-OP-Check SUBDIR += p5-B-Keywords SUBDIR += p5-B-Size SUBDIR += p5-B-Utils SUBDIR += p5-BFD SUBDIR += p5-BS-Event SUBDIR += p5-BSD-Resource SUBDIR += p5-BSD-stat SUBDIR += p5-Badger SUBDIR += p5-Best SUBDIR += p5-Bundle-Perl6 SUBDIR += p5-C-Scan SUBDIR += p5-CHI SUBDIR += p5-CLASS SUBDIR += p5-CPAN-DistnameInfo SUBDIR += p5-CPAN-Mini SUBDIR += p5-CPAN-SQLite SUBDIR += p5-CPAN-YACSmoke SUBDIR += p5-CPANPLUS SUBDIR += p5-CPANPLUS-Dist-Build SUBDIR += p5-Cache SUBDIR += p5-Cache-Cache SUBDIR += p5-Cache-FastMmap SUBDIR += p5-Cache-Mmap SUBDIR += p5-Cache-Simple-TimedExpiry SUBDIR += p5-Calendar-Simple SUBDIR += p5-Carp-Always SUBDIR += p5-Carp-Assert SUBDIR += p5-Carp-Assert-More SUBDIR += p5-Carp-Clan SUBDIR += p5-Carp-Datum SUBDIR += p5-Cdk SUBDIR += p5-Check-ISA SUBDIR += p5-Chooser SUBDIR += p5-Class-Accessor SUBDIR += p5-Class-Accessor-Chained SUBDIR += p5-Class-Accessor-Fast-XS SUBDIR += p5-Class-Accessor-Grouped SUBDIR += p5-Class-Accessor-Lvalue SUBDIR += p5-Class-Accessor-Named SUBDIR += p5-Class-Adapter SUBDIR += p5-Class-AlzaboWrapper SUBDIR += p5-Class-ArrayObjects SUBDIR += p5-Class-AutoClass SUBDIR += p5-Class-Autouse SUBDIR += p5-Class-Base SUBDIR += p5-Class-BlackHole SUBDIR += p5-Class-C3 SUBDIR += p5-Class-C3-Componentised SUBDIR += p5-Class-C3-XS SUBDIR += p5-Class-Closure SUBDIR += p5-Class-CodeStyler SUBDIR += p5-Class-Component SUBDIR += p5-Class-Constant SUBDIR += p5-Class-Container SUBDIR += p5-Class-Contract SUBDIR += p5-Class-Data-Accessor SUBDIR += p5-Class-Data-ConfigHash SUBDIR += p5-Class-Data-Inheritable SUBDIR += p5-Class-Date SUBDIR += p5-Class-Default SUBDIR += p5-Class-Delegation SUBDIR += p5-Class-ErrorHandler SUBDIR += p5-Class-Factory SUBDIR += p5-Class-Factory-Util SUBDIR += p5-Class-Field SUBDIR += p5-Class-Fields SUBDIR += p5-Class-Generate SUBDIR += p5-Class-Gomor SUBDIR += p5-Class-Handle SUBDIR += p5-Class-Hook SUBDIR += p5-Class-ISA SUBDIR += p5-Class-Inner SUBDIR += p5-Class-InsideOut SUBDIR += p5-Class-Inspector SUBDIR += p5-Class-Interfaces SUBDIR += p5-Class-Loader SUBDIR += p5-Class-MOP SUBDIR += p5-Class-MakeMethods SUBDIR += p5-Class-Measure SUBDIR += p5-Class-Method-Modifiers SUBDIR += p5-Class-Method-Modifiers-Fast SUBDIR += p5-Class-MethodMaker SUBDIR += p5-Class-MethodMapper SUBDIR += p5-Class-MixinFactory SUBDIR += p5-Class-Multimethods SUBDIR += p5-Class-Multimethods-Pure SUBDIR += p5-Class-NamedParms SUBDIR += p5-Class-OOorNO SUBDIR += p5-Class-ObjectTemplate SUBDIR += p5-Class-ObjectTemplate-DB SUBDIR += p5-Class-Observable SUBDIR += p5-Class-ParmList SUBDIR += p5-Class-Prototyped SUBDIR += p5-Class-ReturnValue SUBDIR += p5-Class-Roles SUBDIR += p5-Class-STL-Containers SUBDIR += p5-Class-Singleton SUBDIR += p5-Class-Spiffy SUBDIR += p5-Class-StateMachine SUBDIR += p5-Class-Std SUBDIR += p5-Class-Std-Fast SUBDIR += p5-Class-StrongSingleton SUBDIR += p5-Class-Tangram SUBDIR += p5-Class-Throwable SUBDIR += p5-Class-Tom SUBDIR += p5-Class-Trigger SUBDIR += p5-Class-Virtual SUBDIR += p5-Class-WhiteHole SUBDIR += p5-Class-Workflow SUBDIR += p5-Class-XPath SUBDIR += p5-Class-XSAccessor SUBDIR += p5-Clone SUBDIR += p5-Clone-Fast SUBDIR += p5-Clone-More SUBDIR += p5-Clone-PP SUBDIR += p5-Code-Perl SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit SUBDIR += p5-Config-Any SUBDIR += p5-Config-ApacheFormat SUBDIR += p5-Config-Auto SUBDIR += p5-Config-Fast SUBDIR += p5-Config-General SUBDIR += p5-Config-INI-Simple SUBDIR += p5-Config-IniFiles SUBDIR += p5-Config-IniHash SUBDIR += p5-Config-IniRegEx SUBDIR += p5-Config-JSON SUBDIR += p5-Config-Model SUBDIR += p5-Config-Objective SUBDIR += p5-Config-Options SUBDIR += p5-Config-Properties SUBDIR += p5-Config-Record SUBDIR += p5-Config-Setting SUBDIR += p5-Config-Simple SUBDIR += p5-Config-Std SUBDIR += p5-Config-Tiny SUBDIR += p5-ConfigReader SUBDIR += p5-ConfigReader-Simple SUBDIR += p5-Contextual-Return SUBDIR += p5-Coro SUBDIR += p5-Curses SUBDIR += p5-Curses-Application SUBDIR += p5-Curses-Forms SUBDIR += p5-Curses-UI SUBDIR += p5-Curses-Widgets SUBDIR += p5-Cvs SUBDIR += p5-Cwd SUBDIR += p5-DB_File-Lock SUBDIR += p5-Danga-Socket SUBDIR += p5-Danga-Socket-Callback SUBDIR += p5-Data-ACL SUBDIR += p5-Data-Alias SUBDIR += p5-Data-Bind SUBDIR += p5-Data-ClearSilver-HDF SUBDIR += p5-Data-Compare SUBDIR += p5-Data-Dump SUBDIR += p5-Data-Dump-Streamer SUBDIR += p5-Data-DumpXML SUBDIR += p5-Data-Dumper SUBDIR += p5-Data-Dumper-Perltidy SUBDIR += p5-Data-Dumper-Simple SUBDIR += p5-Data-Flow SUBDIR += p5-Data-GUID SUBDIR += p5-Data-HexDump SUBDIR += p5-Data-Hexdumper SUBDIR += p5-Data-Hierarchy SUBDIR += p5-Data-Lazy SUBDIR += p5-Data-ObjectDriver SUBDIR += p5-Data-OptList SUBDIR += p5-Data-ParseBinary SUBDIR += p5-Data-Postponed SUBDIR += p5-Data-Properties SUBDIR += p5-Data-Random SUBDIR += p5-Data-RoundRobin SUBDIR += p5-Data-Serializer SUBDIR += p5-Data-ShowTable SUBDIR += p5-Data-Stag SUBDIR += p5-Data-Stream-Bulk SUBDIR += p5-Data-Structure-Util SUBDIR += p5-Data-Swap SUBDIR += p5-Data-Table SUBDIR += p5-Data-Taxonomy-Tags SUBDIR += p5-Data-TemporaryBag SUBDIR += p5-Data-Throttler SUBDIR += p5-Data-Throttler-Memcached SUBDIR += p5-Data-TreeDumper SUBDIR += p5-Data-TreeDumper-Renderer-GTK SUBDIR += p5-Data-Types SUBDIR += p5-Data-UUID SUBDIR += p5-Data-Uniqid SUBDIR += p5-Data-Util SUBDIR += p5-Data-Validate SUBDIR += p5-Data-Visitor SUBDIR += p5-Data-Visitor-Encode SUBDIR += p5-Date-Calc SUBDIR += p5-Date-Calc-Iterator SUBDIR += p5-Date-DayOfWeek SUBDIR += p5-Date-Easter SUBDIR += p5-Date-EzDate SUBDIR += p5-Date-Holidays-DK SUBDIR += p5-Date-ICal SUBDIR += p5-Date-ISO SUBDIR += p5-Date-Leapyear SUBDIR += p5-Date-Manip SUBDIR += p5-Date-Pcalc SUBDIR += p5-Date-Range SUBDIR += p5-Date-Roman SUBDIR += p5-Date-Set SUBDIR += p5-Date-Simple SUBDIR += p5-DateConvert SUBDIR += p5-DateTime SUBDIR += p5-DateTime-Calendar-Chinese SUBDIR += p5-DateTime-Calendar-Christian SUBDIR += p5-DateTime-Calendar-Discordian SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary SUBDIR += p5-DateTime-Calendar-Hebrew SUBDIR += p5-DateTime-Calendar-Japanese SUBDIR += p5-DateTime-Calendar-Julian SUBDIR += p5-DateTime-Calendar-Mayan SUBDIR += p5-DateTime-Calendar-Pataphysical SUBDIR += p5-DateTime-Event-Chinese SUBDIR += p5-DateTime-Event-Cron SUBDIR += p5-DateTime-Event-Easter SUBDIR += p5-DateTime-Event-ICal SUBDIR += p5-DateTime-Event-Lunar SUBDIR += p5-DateTime-Event-NameDay SUBDIR += p5-DateTime-Event-Random SUBDIR += p5-DateTime-Event-Recurrence SUBDIR += p5-DateTime-Event-SolarTerm SUBDIR += p5-DateTime-Event-Sunrise SUBDIR += p5-DateTime-Fiscal-Year SUBDIR += p5-DateTime-Format-Baby SUBDIR += p5-DateTime-Format-Bork SUBDIR += p5-DateTime-Format-Builder SUBDIR += p5-DateTime-Format-DBI SUBDIR += p5-DateTime-Format-DateManip SUBDIR += p5-DateTime-Format-DateParse SUBDIR += p5-DateTime-Format-Duration SUBDIR += p5-DateTime-Format-Epoch SUBDIR += p5-DateTime-Format-Excel SUBDIR += p5-DateTime-Format-HTTP SUBDIR += p5-DateTime-Format-IBeat SUBDIR += p5-DateTime-Format-ICal SUBDIR += p5-DateTime-Format-ISO8601 SUBDIR += p5-DateTime-Format-Mail SUBDIR += p5-DateTime-Format-MySQL SUBDIR += p5-DateTime-Format-Natural SUBDIR += p5-DateTime-Format-Pg SUBDIR += p5-DateTime-Format-Roman SUBDIR += p5-DateTime-Format-Strptime SUBDIR += p5-DateTime-Format-W3CDTF SUBDIR += p5-DateTime-Functions SUBDIR += p5-DateTime-HiRes SUBDIR += p5-DateTime-Incomplete SUBDIR += p5-DateTime-Locale SUBDIR += p5-DateTime-Precise SUBDIR += p5-DateTime-Set SUBDIR += p5-DateTime-TimeZone SUBDIR += p5-DateTime-TimeZone-Alias SUBDIR += p5-DateTime-TimeZone-LMT SUBDIR += p5-DateTime-Util-Astro SUBDIR += p5-DateTime-Util-Calc SUBDIR += p5-Decision-ACL SUBDIR += p5-Devel-Arena SUBDIR += p5-Devel-Caller SUBDIR += p5-Devel-Callsite SUBDIR += p5-Devel-Constants SUBDIR += p5-Devel-CoreStack SUBDIR += p5-Devel-Cover SUBDIR += p5-Devel-Cycle SUBDIR += p5-Devel-DProfPP SUBDIR += p5-Devel-Declare SUBDIR += p5-Devel-Diagram SUBDIR += p5-Devel-EvalContext SUBDIR += p5-Devel-Events SUBDIR += p5-Devel-Events-Objects SUBDIR += p5-Devel-Gladiator SUBDIR += p5-Devel-GlobalDestruction SUBDIR += p5-Devel-Leak SUBDIR += p5-Devel-Leak-Object SUBDIR += p5-Devel-LeakTrace SUBDIR += p5-Devel-LeakTrace-Fast SUBDIR += p5-Devel-LexAlias SUBDIR += p5-Devel-Messenger SUBDIR += p5-Devel-Modlist SUBDIR += p5-Devel-NYTProf SUBDIR += p5-Devel-ObjectTracker SUBDIR += p5-Devel-PPPort SUBDIR += p5-Devel-Pointer SUBDIR += p5-Devel-Profile SUBDIR += p5-Devel-Profiler SUBDIR += p5-Devel-Required SUBDIR += p5-Devel-RingBuffer SUBDIR += p5-Devel-STrace SUBDIR += p5-Devel-SimpleTrace SUBDIR += p5-Devel-Size SUBDIR += p5-Devel-SmallProf SUBDIR += p5-Devel-StackTrace SUBDIR += p5-Devel-StealthDebug SUBDIR += p5-Devel-Symdump SUBDIR += p5-Devel-Timer SUBDIR += p5-Devel-Trace SUBDIR += p5-Devel-TraceCalls SUBDIR += p5-Devel-TraceUse SUBDIR += p5-Devel-ebug SUBDIR += p5-Devel-ptkdb SUBDIR += p5-Dialog SUBDIR += p5-Digest-TransformPath SUBDIR += p5-Dir-Project SUBDIR += p5-Directory-Scratch SUBDIR += p5-Directory-Scratch-Structured SUBDIR += p5-EV SUBDIR += p5-Env-PS1 SUBDIR += p5-Env-Path SUBDIR += p5-Errno SUBDIR += p5-Eval-Context SUBDIR += p5-Event SUBDIR += p5-Event-ExecFlow SUBDIR += p5-Event-Lib SUBDIR += p5-Event-Notify SUBDIR += p5-Event-RPC SUBDIR += p5-Every SUBDIR += p5-Exception-Class SUBDIR += p5-Exception-Class-TryCatch SUBDIR += p5-Exception-Handler SUBDIR += p5-Expect-Simple SUBDIR += p5-Exporter-Lite SUBDIR += p5-Exporter-Tidy SUBDIR += p5-ExtUtils-AutoInstall SUBDIR += p5-ExtUtils-CBuilder SUBDIR += p5-ExtUtils-Command SUBDIR += p5-ExtUtils-Constant SUBDIR += p5-ExtUtils-Depends SUBDIR += p5-ExtUtils-MakeMaker SUBDIR += p5-ExtUtils-MakeMaker-Coverage SUBDIR += p5-ExtUtils-Manifest SUBDIR += p5-ExtUtils-ParseXS SUBDIR += p5-ExtUtils-PkgConfig SUBDIR += p5-ExtUtils-XSBuilder SUBDIR += p5-FSA-Rules SUBDIR += p5-File-Append-TempFile SUBDIR += p5-File-Attributes SUBDIR += p5-File-Attributes-Recursive SUBDIR += p5-File-BaseDir SUBDIR += p5-File-BasicFlock SUBDIR += p5-File-Binary SUBDIR += p5-File-Cache SUBDIR += p5-File-Cat SUBDIR += p5-File-Copy-Recursive SUBDIR += p5-File-CreationTime SUBDIR += p5-File-DesktopEntry SUBDIR += p5-File-Dir-Dumper SUBDIR += p5-File-DirSync SUBDIR += p5-File-ExtAttr SUBDIR += p5-File-FTS SUBDIR += p5-File-Find-Closures SUBDIR += p5-File-Find-Object SUBDIR += p5-File-Find-Rule SUBDIR += p5-File-Find-Rule-Filesys-Virtual SUBDIR += p5-File-Find-Rule-Perl SUBDIR += p5-File-Finder SUBDIR += p5-File-Flat SUBDIR += p5-File-Flock SUBDIR += p5-File-FnMatch SUBDIR += p5-File-Grep SUBDIR += p5-File-HStore SUBDIR += p5-File-HomeDir SUBDIR += p5-File-Lock SUBDIR += p5-File-MMagic SUBDIR += p5-File-MMagic-XS SUBDIR += p5-File-MimeInfo SUBDIR += p5-File-Modified SUBDIR += p5-File-Monitor SUBDIR += p5-File-NCopy SUBDIR += p5-File-NFSLock SUBDIR += p5-File-Path SUBDIR += p5-File-Path-Expand SUBDIR += p5-File-PathConvert SUBDIR += p5-File-Pid SUBDIR += p5-File-Policy SUBDIR += p5-File-Random SUBDIR += p5-File-ReadBackwards SUBDIR += p5-File-Remove SUBDIR += p5-File-ShareDir SUBDIR += p5-File-Slurp SUBDIR += p5-File-Slurp-Tree SUBDIR += p5-File-Stream SUBDIR += p5-File-Sync SUBDIR += p5-File-Tail SUBDIR += p5-File-Temp SUBDIR += p5-File-Tempdir SUBDIR += p5-File-Type SUBDIR += p5-File-Util SUBDIR += p5-File-chdir SUBDIR += p5-File-chmod SUBDIR += p5-File-pushd SUBDIR += p5-FileHandle-Fmode SUBDIR += p5-FileHandle-Unget SUBDIR += p5-Filesys-Virtual SUBDIR += p5-Filesys-Virtual-Plain SUBDIR += p5-Filter SUBDIR += p5-Filter-Template SUBDIR += p5-FindBin-libs SUBDIR += p5-Forest SUBDIR += p5-FreezeThaw SUBDIR += p5-Gearman SUBDIR += p5-Gearman-Client-Async SUBDIR += p5-Gearman-Server SUBDIR += p5-Geo-ShapeFile SUBDIR += p5-Getargs-Long SUBDIR += p5-Getopt-ArgvFile SUBDIR += p5-Getopt-Declare SUBDIR += p5-Getopt-Euclid SUBDIR += p5-Getopt-Long SUBDIR += p5-Getopt-Long-Descriptive SUBDIR += p5-Getopt-Mixed SUBDIR += p5-Getopt-Popt SUBDIR += p5-Git-PurePerl SUBDIR += p5-Glib2 SUBDIR += p5-Gnome2-GConf SUBDIR += p5-Google-Checkout SUBDIR += p5-Gtk2-Spell SUBDIR += p5-Hash-AsObject SUBDIR += p5-Hash-Case SUBDIR += p5-Hash-MoreUtils SUBDIR += p5-Hash-MultiKey SUBDIR += p5-Hash-Union SUBDIR += p5-Hash-Util-FieldHash-Compat SUBDIR += p5-Hash-WithDefaults SUBDIR += p5-Heap SUBDIR += p5-Heap-Simple SUBDIR += p5-Heap-Simple-Perl SUBDIR += p5-Heap-Simple-XS SUBDIR += p5-Hook-LexWrap SUBDIR += p5-IO SUBDIR += p5-IO-AIO SUBDIR += p5-IO-All SUBDIR += p5-IO-Async SUBDIR += p5-IO-BufferedSelect SUBDIR += p5-IO-Capture SUBDIR += p5-IO-CaptureOutput SUBDIR += p5-IO-Digest SUBDIR += p5-IO-KQueue SUBDIR += p5-IO-Lambda SUBDIR += p5-IO-LockedFile SUBDIR += p5-IO-MultiPipe SUBDIR += p5-IO-Multiplex SUBDIR += p5-IO-NestedCapture SUBDIR += p5-IO-Null SUBDIR += p5-IO-Pager SUBDIR += p5-IO-Prompt SUBDIR += p5-IO-String SUBDIR += p5-IO-Tee SUBDIR += p5-IO-TieCombine SUBDIR += p5-IO-Toolkit SUBDIR += p5-IO-Tty SUBDIR += p5-IO-Util SUBDIR += p5-IO-YAML SUBDIR += p5-IO-stringy SUBDIR += p5-IOC SUBDIR += p5-IPC-Cache SUBDIR += p5-IPC-Cmd SUBDIR += p5-IPC-DirQueue SUBDIR += p5-IPC-Locker SUBDIR += p5-IPC-MM SUBDIR += p5-IPC-Mmap SUBDIR += p5-IPC-Mmap-Share SUBDIR += p5-IPC-Open3-Simple SUBDIR += p5-IPC-PubSub SUBDIR += p5-IPC-Run SUBDIR += p5-IPC-Run-SafeHandles SUBDIR += p5-IPC-Run3 SUBDIR += p5-IPC-ShareLite SUBDIR += p5-IPC-Shareable SUBDIR += p5-IPC-SharedCache SUBDIR += p5-IPC-Signal SUBDIR += p5-IPC-System-Simple SUBDIR += p5-Include SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM SUBDIR += p5-Inline-CPP SUBDIR += p5-Inline-Files SUBDIR += p5-Inline-Filters SUBDIR += p5-Inline-Java SUBDIR += p5-Inline-TT SUBDIR += p5-Inline-Tcl SUBDIR += p5-InlineX-C2XS SUBDIR += p5-Ioctl SUBDIR += p5-Iterator SUBDIR += p5-Iterator-IO SUBDIR += p5-Iterator-Misc SUBDIR += p5-Iterator-Util SUBDIR += p5-JQuery SUBDIR += p5-Java SUBDIR += p5-Lexical-Alias SUBDIR += p5-Lexical-Persistence SUBDIR += p5-Lingua-JA-Fold SUBDIR += p5-List-Cycle SUBDIR += p5-List-Group SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet SUBDIR += p5-List-Rotation-Cycle SUBDIR += p5-List-Uniq SUBDIR += p5-Locale-Maketext SUBDIR += p5-Locale-Maketext-Fuzzy SUBDIR += p5-Locale-Maketext-Gettext SUBDIR += p5-Locale-Maketext-Lexicon SUBDIR += p5-Locale-Maketext-Simple SUBDIR += p5-Locale-PGetText SUBDIR += p5-Locale-PO SUBDIR += p5-Locale-gettext SUBDIR += p5-Locale-libintl SUBDIR += p5-LockFile-Simple SUBDIR += p5-Log-Accounting-SVK SUBDIR += p5-Log-Accounting-SVN SUBDIR += p5-Log-Agent SUBDIR += p5-Log-Agent-Logger SUBDIR += p5-Log-Dispatch SUBDIR += p5-Log-Dispatch-Colorful SUBDIR += p5-Log-Dispatch-Config SUBDIR += p5-Log-Dispatch-Configurator-YAML SUBDIR += p5-Log-Dispatch-Email-EmailSend SUBDIR += p5-Log-Dispatch-FileRotate SUBDIR += p5-Log-Dispatch-FileShared SUBDIR += p5-Log-Dispatch-Perl SUBDIR += p5-Log-Log4perl SUBDIR += p5-Log-Message SUBDIR += p5-Log-Message-Simple SUBDIR += p5-Log-Report SUBDIR += p5-Log-Simple SUBDIR += p5-Log-Trace SUBDIR += p5-Log-TraceMessages SUBDIR += p5-Logfile-Rotate SUBDIR += p5-Luka SUBDIR += p5-MRO-Compat SUBDIR += p5-Mac-FileSpec-Unixish SUBDIR += p5-Make SUBDIR += p5-Make-Cache SUBDIR += p5-Memoize SUBDIR += p5-Memoize-ExpireLRU SUBDIR += p5-Method-Alias SUBDIR += p5-Mknod SUBDIR += p5-Module-Build SUBDIR += p5-Module-Build-Convert SUBDIR += p5-Module-Build-Kwalitee SUBDIR += p5-Module-CPANTS-Analyse SUBDIR += p5-Module-Collect SUBDIR += p5-Module-Compile SUBDIR += p5-Module-CoreList SUBDIR += p5-Module-Dependency SUBDIR += p5-Module-Depends SUBDIR += p5-Module-ExtractUse SUBDIR += p5-Module-Find SUBDIR += p5-Module-Info SUBDIR += p5-Module-Info-File SUBDIR += p5-Module-Install SUBDIR += p5-Module-Install-AuthorTests SUBDIR += p5-Module-List SUBDIR += p5-Module-Load SUBDIR += p5-Module-Load-Conditional SUBDIR += p5-Module-Loaded SUBDIR += p5-Module-Pluggable SUBDIR += p5-Module-Pluggable-Fast SUBDIR += p5-Module-Pluggable-Ordered SUBDIR += p5-Module-Recursive-Require SUBDIR += p5-Module-Refresh SUBDIR += p5-Module-Release SUBDIR += p5-Module-Reload SUBDIR += p5-Module-Reload-Sel SUBDIR += p5-Module-Runtime SUBDIR += p5-Module-ScanDeps SUBDIR += p5-Module-Setup SUBDIR += p5-Module-Starter SUBDIR += p5-Module-Starter-PBP SUBDIR += p5-Module-Starter-Plugin-SimpleStore SUBDIR += p5-Module-Starter-Plugin-TT2 SUBDIR += p5-Module-Util SUBDIR += p5-Module-Versions-Report SUBDIR += p5-Moose SUBDIR += p5-Moose-Policy SUBDIR += p5-MooseX-Async SUBDIR += p5-MooseX-AttributeHelpers SUBDIR += p5-MooseX-ClassAttribute SUBDIR += p5-MooseX-Clone SUBDIR += p5-MooseX-ConfigFromFile SUBDIR += p5-MooseX-Daemonize SUBDIR += p5-MooseX-Getopt SUBDIR += p5-MooseX-IOC SUBDIR += p5-MooseX-Log-Log4perl SUBDIR += p5-MooseX-POE SUBDIR += p5-MooseX-Policy-SemiAffordanceAccessor SUBDIR += p5-MooseX-SimpleConfig SUBDIR += p5-MooseX-Singleton SUBDIR += p5-MooseX-Storage SUBDIR += p5-MooseX-StrictConstructor SUBDIR += p5-MooseX-Types SUBDIR += p5-MooseX-Types-Path-Class SUBDIR += p5-Mouse SUBDIR += p5-MouseX-Getopt SUBDIR += p5-MouseX-Types SUBDIR += p5-NEXT SUBDIR += p5-Net-DBus SUBDIR += p5-Number-Bytes-Human SUBDIR += p5-OLE-Storage_Lite SUBDIR += p5-OOTools SUBDIR += p5-ORBit SUBDIR += p5-Object-Accessor SUBDIR += p5-Object-Array SUBDIR += p5-Object-Declare SUBDIR += p5-Object-Enum SUBDIR += p5-Object-InsideOut SUBDIR += p5-Object-MultiType SUBDIR += p5-Object-Realize-Later SUBDIR += p5-Object-Signature SUBDIR += p5-Object-Tiny SUBDIR += p5-P4 SUBDIR += p5-P4-Client SUBDIR += p5-PAR SUBDIR += p5-PAR-Dist SUBDIR += p5-PAR-Packer SUBDIR += p5-PCSC-Card SUBDIR += p5-PHP-Serialization SUBDIR += p5-POE SUBDIR += p5-POE-API-Hooks SUBDIR += p5-POE-API-Peek SUBDIR += p5-POE-Component-Child SUBDIR += p5-POE-Component-Daemon SUBDIR += p5-POE-Component-DebugShell SUBDIR += p5-POE-Component-DirWatch SUBDIR += p5-POE-Component-IKC SUBDIR += p5-POE-Component-JobQueue SUBDIR += p5-POE-Component-Logger SUBDIR += p5-POE-Component-Pluggable SUBDIR += p5-POE-Component-RSS SUBDIR += p5-POE-Component-RSSAggregator SUBDIR += p5-POE-Component-Server-XMLRPC SUBDIR += p5-POE-Component-TSTP SUBDIR += p5-POE-Devel-Profiler SUBDIR += p5-POE-Exceptions SUBDIR += p5-POE-Session-MultiDispatch SUBDIR += p5-POE-Stage SUBDIR += p5-POE-Test-Loops SUBDIR += p5-POE-XS-Loop-Poll SUBDIR += p5-POE-XS-Queue-Array SUBDIR += p5-POSIX-strptime SUBDIR += p5-PPerl SUBDIR += p5-PV SUBDIR += p5-Package-Constants SUBDIR += p5-Package-Generator SUBDIR += p5-PadWalker SUBDIR += p5-Parallel-ForkManager SUBDIR += p5-Params-CallbackRequest SUBDIR += p5-Params-Check SUBDIR += p5-Params-Classify SUBDIR += p5-Params-Coerce SUBDIR += p5-Params-Util SUBDIR += p5-Params-Validate SUBDIR += p5-Parse-CPAN-Meta SUBDIR += p5-Parse-CPAN-Packages SUBDIR += p5-Parse-PerlConfig SUBDIR += p5-Parse-RecDescent SUBDIR += p5-Parse-Yapp SUBDIR += p5-ParseLex SUBDIR += p5-PatchReader SUBDIR += p5-Path-Class SUBDIR += p5-PathTools SUBDIR += p5-Penguin SUBDIR += p5-Penguin-Easy SUBDIR += p5-Perl-Version SUBDIR += p5-Perl6-Builtins SUBDIR += p5-Perl6-Export SUBDIR += p5-Perl6-Export-Attrs SUBDIR += p5-Perl6-Form SUBDIR += p5-Perl6-Junction SUBDIR += p5-Perl6-Rules SUBDIR += p5-Perl6-Say SUBDIR += p5-PerlIO-eol SUBDIR += p5-PerlIO-via-MD5 SUBDIR += p5-PerlIO-via-dynamic SUBDIR += p5-PerlIO-via-symlink SUBDIR += p5-PerlMenu SUBDIR += p5-Pipeline SUBDIR += p5-Pod-Coverage SUBDIR += p5-Pod-Coverage-Moose SUBDIR += p5-Pod-Tests SUBDIR += p5-Proc-Background SUBDIR += p5-Proc-Daemon SUBDIR += p5-Proc-Fork SUBDIR += p5-Proc-PID-File SUBDIR += p5-Proc-PIDFile SUBDIR += p5-Proc-ProcessTable SUBDIR += p5-Proc-Queue SUBDIR += p5-Proc-Reliable SUBDIR += p5-Proc-Simple SUBDIR += p5-Project-Gantt SUBDIR += p5-RRDTool-OO SUBDIR += p5-Rcs SUBDIR += p5-Rcs-Agent SUBDIR += p5-ReadLine-Gnu SUBDIR += p5-ReadLine-Perl SUBDIR += p5-Readonly SUBDIR += p5-Regexp-Assemble SUBDIR += p5-Regexp-Bind SUBDIR += p5-Regexp-Shellish SUBDIR += p5-Religion SUBDIR += p5-ResourcePool SUBDIR += p5-Resources SUBDIR += p5-Return-Value SUBDIR += p5-Rose-DateTime SUBDIR += p5-Rose-Object SUBDIR += p5-RunApp SUBDIR += p5-SDL SUBDIR += p5-SNMP-Persist SUBDIR += p5-SOAP-WSDL SUBDIR += p5-SPOPS SUBDIR += p5-SSN-Validate SUBDIR += p5-SVN-ACL SUBDIR += p5-SVN-Access SUBDIR += p5-SVN-Agent SUBDIR += p5-SVN-Dump SUBDIR += p5-SVN-Hook SUBDIR += p5-SVN-Hooks SUBDIR += p5-SVN-Log SUBDIR += p5-SVN-Look SUBDIR += p5-SVN-Mirror SUBDIR += p5-SVN-Notify SUBDIR += p5-SVN-Notify-Config SUBDIR += p5-SVN-Notify-Filter-AuthZMail SUBDIR += p5-SVN-Notify-Filter-EmailFlatFileDB SUBDIR += p5-SVN-Notify-Filter-Markdown SUBDIR += p5-SVN-Notify-Filter-Watchers SUBDIR += p5-SVN-Notify-Mirror SUBDIR += p5-SVN-Notify-Snapshot SUBDIR += p5-SVN-S4 SUBDIR += p5-SVN-Simple SUBDIR += p5-SVN-Statistics SUBDIR += p5-SVN-Web SUBDIR += p5-Scalar-Defer SUBDIR += p5-Scalar-Listify SUBDIR += p5-Scalar-Util-Clone SUBDIR += p5-Scope-Guard SUBDIR += p5-Search-Binary SUBDIR += p5-Set-Array SUBDIR += p5-Set-ConsistentHash SUBDIR += p5-Set-Crontab SUBDIR += p5-Set-Infinite SUBDIR += p5-Set-NestedGroups SUBDIR += p5-Set-Object SUBDIR += p5-Set-Scalar SUBDIR += p5-Shape SUBDIR += p5-Shell-Base SUBDIR += p5-Shell-EnvImporter SUBDIR += p5-Shell-Parser SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt SUBDIR += p5-Smart-Comments SUBDIR += p5-Sort-Array SUBDIR += p5-Sort-ArrayOfArrays SUBDIR += p5-Sort-Key SUBDIR += p5-Sort-Key-DateTime SUBDIR += p5-Sort-Key-Top SUBDIR += p5-Sort-Maker SUBDIR += p5-Sort-Tree SUBDIR += p5-Sort-Versions SUBDIR += p5-Spiffy SUBDIR += p5-Spoon SUBDIR += p5-Storable SUBDIR += p5-Stream SUBDIR += p5-String-Approx SUBDIR += p5-String-CRC32 SUBDIR += p5-String-Checker SUBDIR += p5-String-Ediff SUBDIR += p5-String-LRC SUBDIR += p5-String-Parity SUBDIR += p5-String-Random SUBDIR += p5-String-RexxParse SUBDIR += p5-String-Similarity SUBDIR += p5-Sub-Current SUBDIR += p5-Sub-Delete SUBDIR += p5-Sub-Exporter SUBDIR += p5-Sub-Identify SUBDIR += p5-Sub-Install SUBDIR += p5-Sub-Installer SUBDIR += p5-Sub-Multi SUBDIR += p5-Sub-Name SUBDIR += p5-Sub-Override SUBDIR += p5-Sub-Uplevel SUBDIR += p5-Sub-WrapPackages SUBDIR += p5-Sys-Cpu SUBDIR += p5-Sys-MemInfo SUBDIR += p5-Sys-Mmap SUBDIR += p5-Sys-RunAlone SUBDIR += p5-Sys-RunAlways SUBDIR += p5-Sys-Sig SUBDIR += p5-Sys-SigAction SUBDIR += p5-Sys-Syscall SUBDIR += p5-System2 SUBDIR += p5-Taint-Runtime SUBDIR += p5-Task-Weaken SUBDIR += p5-Template-Provider-Encode SUBDIR += p5-Term-ANSIColor SUBDIR += p5-Term-ANSIScreen SUBDIR += p5-Term-Animation SUBDIR += p5-Term-CallEditor SUBDIR += p5-Term-Encoding SUBDIR += p5-Term-Menus SUBDIR += p5-Term-ProgressBar SUBDIR += p5-Term-Prompt SUBDIR += p5-Term-Query SUBDIR += p5-Term-ReadKey SUBDIR += p5-Term-ReadLine-Zoid SUBDIR += p5-Term-ReadPassword SUBDIR += p5-Term-Screen SUBDIR += p5-Term-Shell SUBDIR += p5-Term-Size SUBDIR += p5-Term-UI SUBDIR += p5-Term-VT102 SUBDIR += p5-Term-Visual SUBDIR += p5-Test-Assertions SUBDIR += p5-Test-Base SUBDIR += p5-Test-Benchmark SUBDIR += p5-Test-Block SUBDIR += p5-Test-Class SUBDIR += p5-Test-ClassAPI SUBDIR += p5-Test-Cmd SUBDIR += p5-Test-Data SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Deep SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-Differences SUBDIR += p5-Test-Distribution SUBDIR += p5-Test-Exception SUBDIR += p5-Test-Expect SUBDIR += p5-Test-File SUBDIR += p5-Test-File-Contents SUBDIR += p5-Test-Fixture-DBIC-Schema SUBDIR += p5-Test-Group SUBDIR += p5-Test-HTML-Tidy SUBDIR += p5-Test-Harness SUBDIR += p5-Test-HasVersion SUBDIR += p5-Test-Inline SUBDIR += p5-Test-JSON SUBDIR += p5-Test-Kwalitee SUBDIR += p5-Test-LectroTest SUBDIR += p5-Test-LoadAllModules SUBDIR += p5-Test-Log4perl SUBDIR += p5-Test-LongString SUBDIR += p5-Test-Manifest SUBDIR += p5-Test-Memory-Cycle SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject SUBDIR += p5-Test-MockRandom SUBDIR += p5-Test-MockTime SUBDIR += p5-Test-Most SUBDIR += p5-Test-NoWarnings SUBDIR += p5-Test-Number-Delta SUBDIR += p5-Test-Object SUBDIR += p5-Test-Output SUBDIR += p5-Test-POE-Server-TCP SUBDIR += p5-Test-Parser SUBDIR += p5-Test-Pod SUBDIR += p5-Test-Pod-Coverage SUBDIR += p5-Test-Portability-Files SUBDIR += p5-Test-RandomResults SUBDIR += p5-Test-Reporter SUBDIR += p5-Test-Script SUBDIR += p5-Test-Simple SUBDIR += p5-Test-Singleton SUBDIR += p5-Test-Spelling SUBDIR += p5-Test-Strict SUBDIR += p5-Test-SubCalls SUBDIR += p5-Test-TAP-HTMLMatrix SUBDIR += p5-Test-TAP-Model SUBDIR += p5-Test-TempDir SUBDIR += p5-Test-Tester SUBDIR += p5-Test-Unit SUBDIR += p5-Test-UseAllModules SUBDIR += p5-Test-WWW-Mechanize SUBDIR += p5-Test-WWW-Mechanize-CGI SUBDIR += p5-Test-WWW-Mechanize-CGIApp SUBDIR += p5-Test-WWW-Mechanize-Catalyst SUBDIR += p5-Test-Warn SUBDIR += p5-Test-XML SUBDIR += p5-Test-XML-Valid SUBDIR += p5-Test-YAML-Meta SUBDIR += p5-Test-YAML-Valid SUBDIR += p5-Test-use-ok SUBDIR += p5-Text-LevenshteinXS SUBDIR += p5-Text-vFile-asData SUBDIR += p5-TheSchwartz SUBDIR += p5-Thread-Apartment SUBDIR += p5-Thread-Cancel SUBDIR += p5-Thread-Pool-Simple SUBDIR += p5-Thread-Queue-Duplex SUBDIR += p5-Thread-Suspend SUBDIR += p5-Thrift SUBDIR += p5-Tie-Array-Pack SUBDIR += p5-Tie-Array-Sorted SUBDIR += p5-Tie-CPHash SUBDIR += p5-Tie-Cache SUBDIR += p5-Tie-DB_File-SplitHash SUBDIR += p5-Tie-DB_FileLock SUBDIR += p5-Tie-File SUBDIR += p5-Tie-File-AsHash SUBDIR += p5-Tie-FileLRUCache SUBDIR += p5-Tie-Hash-Indexed SUBDIR += p5-Tie-Hash-Regex SUBDIR += p5-Tie-Hash-Sorted SUBDIR += p5-Tie-Hash-TwoWay SUBDIR += p5-Tie-IxHash SUBDIR += p5-Tie-RefHash SUBDIR += p5-Tie-RefHash-Weak SUBDIR += p5-Tie-Restore SUBDIR += p5-Tie-ShareLite SUBDIR += p5-Tie-Simple SUBDIR += p5-Tie-ToObject SUBDIR += p5-Tie-iCal SUBDIR += p5-Time-Clock SUBDIR += p5-Time-Duration SUBDIR += p5-Time-Duration-Parse SUBDIR += p5-Time-HiRes SUBDIR += p5-Time-Interval SUBDIR += p5-Time-Local SUBDIR += p5-Time-Object SUBDIR += p5-Time-Period SUBDIR += p5-Time-Piece SUBDIR += p5-Time-Piece-Range SUBDIR += p5-Time-Progress SUBDIR += p5-Time-Stopwatch SUBDIR += p5-Time-modules SUBDIR += p5-TimeDate SUBDIR += p5-TraceFuncs SUBDIR += p5-Tree-Binary SUBDIR += p5-Tree-Binary-Dictionary SUBDIR += p5-Tree-DAG_Node SUBDIR += p5-Tree-Node SUBDIR += p5-Tree-Parser SUBDIR += p5-Tree-Simple SUBDIR += p5-Tree-Simple-View SUBDIR += p5-Tree-Simple-VisitorFactory SUBDIR += p5-UI-Dialog SUBDIR += p5-UNIVERSAL-can SUBDIR += p5-UNIVERSAL-exports SUBDIR += p5-UNIVERSAL-isa SUBDIR += p5-UNIVERSAL-moniker SUBDIR += p5-UNIVERSAL-require SUBDIR += p5-UNIVERSAL-which SUBDIR += p5-Unix-Statgrab SUBDIR += p5-Unix-Uptime SUBDIR += p5-User-Identity SUBDIR += p5-VCP SUBDIR += p5-VCP-Dest-svk SUBDIR += p5-VCP-Source-cvsbk SUBDIR += p5-VCP-autrijus SUBDIR += p5-VCS SUBDIR += p5-VCS-CVS SUBDIR += p5-VCS-Lite SUBDIR += p5-Variable-Magic SUBDIR += p5-Want SUBDIR += p5-WeakRef SUBDIR += p5-Workflow SUBDIR += p5-XML-Compile-Tester SUBDIR += p5-XSLoader SUBDIR += p5-Yada-Yada-Yada SUBDIR += p5-ZML SUBDIR += p5-accessors SUBDIR += p5-aliased SUBDIR += p5-base SUBDIR += p5-boolean SUBDIR += p5-capitalization SUBDIR += p5-constant-lexical SUBDIR += p5-doxygenfilter SUBDIR += p5-enum SUBDIR += p5-ex-lib SUBDIR += p5-forks SUBDIR += p5-github_creator SUBDIR += p5-iCal-Parser SUBDIR += p5-libalarm SUBDIR += p5-mixin SUBDIR += p5-mocked SUBDIR += p5-namespace-clean SUBDIR += p5-orz SUBDIR += p5-parent SUBDIR += p5-prefork SUBDIR += p5-reaper SUBDIR += p5-relative SUBDIR += p5-rpm-build-perl SUBDIR += p5-self SUBDIR += p5-subatom SUBDIR += p5-subversion SUBDIR += p5-threads SUBDIR += p5-threads-shared SUBDIR += p5-usb SUBDIR += p5-version SUBDIR += p65 SUBDIR += paexec SUBDIR += papi SUBDIR += pas2dox SUBDIR += patch SUBDIR += pccts SUBDIR += pcl SUBDIR += pcre SUBDIR += pcre++ SUBDIR += pcsc-lite SUBDIR += pdcurses SUBDIR += pear SUBDIR += pear-Config SUBDIR += pear-Console_Color SUBDIR += pear-Console_CommandLine SUBDIR += pear-Console_Getargs SUBDIR += pear-Console_Table SUBDIR += pear-Date SUBDIR += pear-Date_Holidays SUBDIR += pear-Date_Holidays_Austria SUBDIR += pear-Date_Holidays_Brazil SUBDIR += pear-Date_Holidays_Denmark SUBDIR += pear-Date_Holidays_Discordian SUBDIR += pear-Date_Holidays_EnglandWales SUBDIR += pear-Date_Holidays_Germany SUBDIR += pear-Date_Holidays_Iceland SUBDIR += pear-Date_Holidays_Ireland SUBDIR += pear-Date_Holidays_Netherlands SUBDIR += pear-Date_Holidays_Norway SUBDIR += pear-Date_Holidays_PHPdotNet SUBDIR += pear-Date_Holidays_Romania SUBDIR += pear-Date_Holidays_Slovenia SUBDIR += pear-Date_Holidays_Sweden SUBDIR += pear-Date_Holidays_UNO SUBDIR += pear-Date_Holidays_USA SUBDIR += pear-Date_Holidays_Ukraine SUBDIR += pear-Event_Dispatcher SUBDIR += pear-FSM SUBDIR += pear-HTML_BBCodeParser SUBDIR += pear-HTML_CSS SUBDIR += pear-HTML_Common SUBDIR += pear-HTML_Common2 SUBDIR += pear-HTML_Form SUBDIR += pear-HTML_Javascript SUBDIR += pear-HTML_Page2 SUBDIR += pear-HTML_QuickForm SUBDIR += pear-HTML_QuickForm2 SUBDIR += pear-HTML_QuickForm_Controller SUBDIR += pear-HTML_QuickForm_Livesearch SUBDIR += pear-HTML_QuickForm_SelectFilter SUBDIR += pear-HTML_QuickForm_advmultiselect SUBDIR += pear-HTML_Select SUBDIR += pear-HTML_Select_Common SUBDIR += pear-HTML_Table SUBDIR += pear-HTML_Template_Flexy SUBDIR += pear-HTML_Template_IT SUBDIR += pear-HTML_Template_PHPLIB SUBDIR += pear-HTML_Template_Sigma SUBDIR += pear-HTML_TreeMenu SUBDIR += pear-I18N SUBDIR += pear-Math_Fraction SUBDIR += pear-Net_Gearman SUBDIR += pear-OLE SUBDIR += pear-PEAR_Info SUBDIR += pear-PEAR_PackageFileManager SUBDIR += pear-PHPDoc SUBDIR += pear-PHPUnit SUBDIR += pear-PHPUnit2 SUBDIR += pear-PHPUnit3 SUBDIR += pear-PHP_ArrayOf SUBDIR += pear-PHP_Beautifier SUBDIR += pear-PHP_CodeSniffer SUBDIR += pear-PHP_Compat SUBDIR += pear-PHP_CompatInfo SUBDIR += pear-PHP_Parser SUBDIR += pear-PHP_ParserGenerator SUBDIR += pear-PHP_UML SUBDIR += pear-Pager SUBDIR += pear-PhpDocumentor SUBDIR += pear-Structures_DataGrid SUBDIR += pear-Structures_DataGrid_Renderer_Console SUBDIR += pear-Structures_DataGrid_Renderer_HTMLSortForm SUBDIR += pear-Structures_DataGrid_Renderer_HTMLTable SUBDIR += pear-Structures_DataGrid_Renderer_XUL SUBDIR += pear-System_Command SUBDIR += pear-Testing_Selenium SUBDIR += pear-Text_Diff SUBDIR += pear-VFS SUBDIR += pear-Validate SUBDIR += pear-Validate_AU SUBDIR += pear-Validate_Finance SUBDIR += pear-Validate_Finance_CreditCard SUBDIR += pear-Var_Dump SUBDIR += pear-VersionControl_SVN SUBDIR += pear-XML_NITF SUBDIR += pear-XML_Parser SUBDIR += pear-XML_RSS SUBDIR += pear-XML_SVG SUBDIR += pear-XML_Serializer SUBDIR += pear-XML_Transformer SUBDIR += pear-XML_Tree SUBDIR += pear-XML_Util SUBDIR += pear-XML_XPath SUBDIR += pear-codegen SUBDIR += pecl-automap SUBDIR += pecl-bbcode SUBDIR += pecl-bcompiler SUBDIR += pecl-expect SUBDIR += pecl-hidef SUBDIR += pecl-htscanner SUBDIR += pecl-inclued SUBDIR += pecl-intl SUBDIR += pecl-json SUBDIR += pecl-mcve SUBDIR += pecl-operator SUBDIR += pecl-params SUBDIR += pecl-runkit SUBDIR += pecl-shape SUBDIR += pecl-spl_types SUBDIR += pecl-spread SUBDIR += pecl-statgrab SUBDIR += pecl-svn SUBDIR += pecl-uploadprogress SUBDIR += pecl-vld SUBDIR += pedisassem SUBDIR += perforce SUBDIR += performance SUBDIR += perlconsole SUBDIR += perltidy SUBDIR += pharmacy SUBDIR += php-dbg2 SUBDIR += php-java-bridge SUBDIR += php-libawl SUBDIR += php-xdebug SUBDIR += php4-dio SUBDIR += php4-gettext SUBDIR += php4-mcve SUBDIR += php4-ncurses SUBDIR += php4-pcntl SUBDIR += php4-pcre SUBDIR += php4-readline SUBDIR += php4-shmop SUBDIR += php4-sysvmsg SUBDIR += php4-sysvsem SUBDIR += php4-sysvshm SUBDIR += php4-tokenizer SUBDIR += php5-gettext SUBDIR += php5-ice SUBDIR += php5-json SUBDIR += php5-ncurses SUBDIR += php5-pcntl + SUBDIR += php5-pcre SUBDIR += php5-phing SUBDIR += php5-readline SUBDIR += php5-shmop SUBDIR += php5-spl SUBDIR += php5-sysvmsg SUBDIR += php5-sysvsem SUBDIR += php5-sysvshm SUBDIR += php5-tokenizer SUBDIR += phpbt SUBDIR += phptags SUBDIR += physfs SUBDIR += physfs-devel SUBDIR += picasm SUBDIR += picp SUBDIR += picprog SUBDIR += pikdev SUBDIR += piklab SUBDIR += pinstall SUBDIR += pipestatus SUBDIR += pkg-config SUBDIR += plan9port SUBDIR += pmake SUBDIR += pmd SUBDIR += pmk SUBDIR += poco SUBDIR += poco-ssl SUBDIR += popt SUBDIR += portlet-api SUBDIR += poslib SUBDIR += powerpc-binutils SUBDIR += powerpc-gcc SUBDIR += powerpc-rtems-binutils SUBDIR += powerpc-rtems-g77 SUBDIR += powerpc-rtems-gcc SUBDIR += powerpc-rtems-gdb SUBDIR += powerpc-rtems-objc SUBDIR += ppl SUBDIR += prcs SUBDIR += premake SUBDIR += preps-gui SUBDIR += prepstools SUBDIR += present SUBDIR += privman SUBDIR += projectcenter.app SUBDIR += projectmanager SUBDIR += protobuf SUBDIR += prototype SUBDIR += pstreams SUBDIR += psvn SUBDIR += pth SUBDIR += pth-hard SUBDIR += pthsem SUBDIR += ptlib SUBDIR += ptmalloc SUBDIR += ptmalloc2 SUBDIR += pty SUBDIR += ptypes SUBDIR += publib SUBDIR += pushmi SUBDIR += pwlib SUBDIR += py-Breve SUBDIR += py-EnthoughtBase SUBDIR += py-Jinja SUBDIR += py-Jinja2 SUBDIR += py-RPyC SUBDIR += py-TurboJinja SUBDIR += py-anonfunc SUBDIR += py-argparse SUBDIR += py-asn1 SUBDIR += py-aspects SUBDIR += py-astng SUBDIR += py-babel SUBDIR += py-bison SUBDIR += py-boto SUBDIR += py-cclib SUBDIR += py-celementtree SUBDIR += py-cfgparse SUBDIR += py-cheetah SUBDIR += py-ciphon SUBDIR += py-cjson SUBDIR += py-cmdln SUBDIR += py-cog SUBDIR += py-configobj SUBDIR += py-ctypes SUBDIR += py-cxx SUBDIR += py-dal SUBDIR += py-dateutil SUBDIR += py-dbus SUBDIR += py-decorator SUBDIR += py-decoratortools SUBDIR += py-demjson SUBDIR += py-dialog SUBDIR += py-distorm SUBDIR += py-durus SUBDIR += py-dynrules SUBDIR += py-elementtree SUBDIR += py-epsilon SUBDIR += py-event SUBDIR += py-extended_threading SUBDIR += py-extremes SUBDIR += py-ez_xml SUBDIR += py-ezpyinline SUBDIR += py-fam SUBDIR += py-fileutils SUBDIR += py-flakes SUBDIR += py-fortran SUBDIR += py-freebsd SUBDIR += py-fusefs SUBDIR += py-game SUBDIR += py-gamin SUBDIR += py-gdata SUBDIR += py-generate SUBDIR += py-geojson SUBDIR += py-geotypes SUBDIR += py-gitpython SUBDIR += py-gobject SUBDIR += py-grouch SUBDIR += py-hashring SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-icu SUBDIR += py-instant SUBDIR += py-ipaddr SUBDIR += py-istring SUBDIR += py-itools SUBDIR += py-jcc SUBDIR += py-json-py SUBDIR += py-jsonlib SUBDIR += py-kid SUBDIR += py-kjbuckets SUBDIR += py-kqueue SUBDIR += py-levenshtein SUBDIR += py-libgsf SUBDIR += py-ll-core SUBDIR += py-lock_file SUBDIR += py-log4py SUBDIR += py-logilab-common SUBDIR += py-lxml SUBDIR += py-magic SUBDIR += py-mez_xml SUBDIR += py-mwlib SUBDIR += py-mwlib.ext SUBDIR += py-mx-experimental SUBDIR += py-myghtyutils SUBDIR += py-ncurses SUBDIR += py-nose SUBDIR += py-notifier SUBDIR += py-notify SUBDIR += py-ocempgui SUBDIR += py-ode SUBDIR += py-odfpy SUBDIR += py-omniorb SUBDIR += py-optik SUBDIR += py-orbit SUBDIR += py-parsedatetime SUBDIR += py-parsing SUBDIR += py-pefile SUBDIR += py-period SUBDIR += py-phpserialize SUBDIR += py-pip SUBDIR += py-plex SUBDIR += py-ply SUBDIR += py-pmock SUBDIR += py-polib SUBDIR += py-pp SUBDIR += py-pqueue SUBDIR += py-protocols SUBDIR += py-protocols-devel SUBDIR += py-psyco SUBDIR += py-ptrace SUBDIR += py-px SUBDIR += py-pycallgraph SUBDIR += py-pydasm SUBDIR += py-pygpx SUBDIR += py-pyke SUBDIR += py-pylib SUBDIR += py-pymarc SUBDIR += py-pyro SUBDIR += py-pyshapelib SUBDIR += py-pytemplate SUBDIR += py-pytz SUBDIR += py-pyutil SUBDIR += py-qt4-assistant SUBDIR += py-qt4-core SUBDIR += py-qt4-dbus SUBDIR += py-qt4-designer SUBDIR += py-qt4-designerplugin SUBDIR += py-qt4-help SUBDIR += py-qt4-qscintilla2 SUBDIR += py-qt4-script SUBDIR += py-qt4-test SUBDIR += py-rbtree SUBDIR += py-repl SUBDIR += py-resourcepackage SUBDIR += py-reverse SUBDIR += py-rlcompleter2 SUBDIR += py-ro SUBDIR += py-roxlib SUBDIR += py-rtree SUBDIR += py-ruledispatch SUBDIR += py-sendfile SUBDIR += py-setuptools SUBDIR += py-shapely SUBDIR += py-simplejson SUBDIR += py-simpleparse SUBDIR += py-simpletal SUBDIR += py-simpy SUBDIR += py-sip SUBDIR += py-spark SUBDIR += py-sqlcc SUBDIR += py-statgrab SUBDIR += py-subversion SUBDIR += py-tables SUBDIR += py-tconfpy SUBDIR += py-testgears SUBDIR += py-testoob SUBDIR += py-thrift SUBDIR += py-trace2html SUBDIR += py-traits SUBDIR += py-turbocheetah SUBDIR += py-turbojson SUBDIR += py-turbokid SUBDIR += py-twisted SUBDIR += py-twistedCore SUBDIR += py-twistedFlow SUBDIR += py-twistedRunner SUBDIR += py-unit SUBDIR += py-urlimport SUBDIR += py-urwid SUBDIR += py-usb SUBDIR += py-utils SUBDIR += py-uuid SUBDIR += py-virtualenv SUBDIR += py-vmaps SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgiutils SUBDIR += py-xattr SUBDIR += py-xdg SUBDIR += py-xoltar-toolkit SUBDIR += py-yaml SUBDIR += py-zconfig SUBDIR += py-zopeInterface SUBDIR += py-zopetesting SUBDIR += py_otp_interface SUBDIR += pybaz SUBDIR += pychecker SUBDIR += pycount SUBDIR += pylint SUBDIR += pymacs SUBDIR += pyobfuscate SUBDIR += pypersrc SUBDIR += pyrex SUBDIR += pysvn SUBDIR += pythk SUBDIR += pythontidy SUBDIR += qca SUBDIR += qct SUBDIR += qdevelop SUBDIR += qmake SUBDIR += qmake4 SUBDIR += qprog SUBDIR += qsa SUBDIR += qscintilla2 SUBDIR += qscintilla2-designerplugin SUBDIR += qssl SUBDIR += qsvn SUBDIR += qt4 SUBDIR += qt4-assistant SUBDIR += qt4-assistant-adp SUBDIR += qt4-corelib SUBDIR += qt4-designer SUBDIR += qt4-help SUBDIR += qt4-help-tools SUBDIR += qt4-libqtassistantclient SUBDIR += qt4-linguist SUBDIR += qt4-makeqpf SUBDIR += qt4-moc SUBDIR += qt4-porting SUBDIR += qt4-qdbusviewer SUBDIR += qt4-qt3support SUBDIR += qt4-qtestlib SUBDIR += qt4-qvfb SUBDIR += qt4-rcc SUBDIR += qt4-script SUBDIR += qt4-uic SUBDIR += qt4-uic3 SUBDIR += quilt SUBDIR += radrails SUBDIR += ragel SUBDIR += raknet SUBDIR += rapidsvn SUBDIR += re2c SUBDIR += readline SUBDIR += regexx SUBDIR += regexxer SUBDIR += replay SUBDIR += rhtvision SUBDIR += rinfo SUBDIR += rlog SUBDIR += rlwrap SUBDIR += roboctl SUBDIR += robodoc SUBDIR += root SUBDIR += root-doc SUBDIR += rote SUBDIR += rpc2 SUBDIR += rpm-spec-mode.el SUBDIR += rsvndump SUBDIR += rth SUBDIR += ruby-amstd SUBDIR += ruby-aspectr SUBDIR += ruby-avl SUBDIR += ruby-bsearch SUBDIR += ruby-byaccr SUBDIR += ruby-cache SUBDIR += ruby-calendar SUBDIR += ruby-cvs SUBDIR += ruby-date2 SUBDIR += ruby-dialogs SUBDIR += ruby-ecore SUBDIR += ruby-eet SUBDIR += ruby-event-loop SUBDIR += ruby-fam SUBDIR += ruby-filelock SUBDIR += ruby-filemagic SUBDIR += ruby-flexmock SUBDIR += ruby-game SUBDIR += ruby-gconf2 SUBDIR += ruby-gemfinder SUBDIR += ruby-gems SUBDIR += ruby-gettext SUBDIR += ruby-glib2 SUBDIR += ruby-gnomevfs SUBDIR += ruby-gnustep SUBDIR += ruby-intl SUBDIR += ruby-io-reactor SUBDIR += ruby-jttui SUBDIR += ruby-libglade2 SUBDIR += ruby-locale SUBDIR += ruby-locale2 SUBDIR += ruby-metaruby SUBDIR += ruby-mmap SUBDIR += ruby-multi SUBDIR += ruby-ncurses SUBDIR += ruby-p4 SUBDIR += ruby-poll SUBDIR += ruby-property SUBDIR += ruby-racc SUBDIR += ruby-rbbr SUBDIR += ruby-rbison SUBDIR += ruby-rbprof SUBDIR += ruby-rbtree SUBDIR += ruby-rcov SUBDIR += ruby-rjudy SUBDIR += ruby-robjectteam SUBDIR += ruby-rrb SUBDIR += ruby-rreadline SUBDIR += ruby-rudl SUBDIR += ruby-sdl SUBDIR += ruby-setup.rb SUBDIR += ruby-sexp SUBDIR += ruby-slang SUBDIR += ruby-statgrab SUBDIR += ruby-strongtyping SUBDIR += ruby-subversion SUBDIR += ruby-sysvipc SUBDIR += ruby-term-ansicolor SUBDIR += ruby-textbuf SUBDIR += ruby-thrift SUBDIR += ruby-tzfile SUBDIR += ruby-wirble SUBDIR += ruby-zoom SUBDIR += rubygem-abstract SUBDIR += rubygem-activesupport SUBDIR += rubygem-analogger SUBDIR += rubygem-arrayfields SUBDIR += rubygem-builder SUBDIR += rubygem-columnize SUBDIR += rubygem-daemons SUBDIR += rubygem-eventmachine SUBDIR += rubygem-extlib SUBDIR += rubygem-facets SUBDIR += rubygem-fastercsv SUBDIR += rubygem-fastthread SUBDIR += rubygem-fattr SUBDIR += rubygem-gdata SUBDIR += rubygem-gem_plugin SUBDIR += rubygem-git SUBDIR += rubygem-grit SUBDIR += rubygem-highline SUBDIR += rubygem-hoe SUBDIR += rubygem-inline SUBDIR += rubygem-json SUBDIR += rubygem-json_pure SUBDIR += rubygem-linecache SUBDIR += rubygem-lockfile SUBDIR += rubygem-main SUBDIR += rubygem-metaid SUBDIR += rubygem-mocha SUBDIR += rubygem-mojombo-grit SUBDIR += rubygem-needle SUBDIR += rubygem-open4 SUBDIR += rubygem-parsetree SUBDIR += rubygem-platform SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-rake SUBDIR += rubygem-rapt SUBDIR += rubygem-rascut SUBDIR += rubygem-rcov SUBDIR += rubygem-rgl SUBDIR += rubygem-rparsec SUBDIR += rubygem-rscm SUBDIR += rubygem-rspec SUBDIR += rubygem-rtags SUBDIR += rubygem-rubigen SUBDIR += rubygem-ruby-debug SUBDIR += rubygem-ruby-debug-base SUBDIR += rubygem-ruby-ole SUBDIR += rubygem-ruby-prof SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-rubyforge SUBDIR += rubygem-rubyinlineaccel SUBDIR += rubygem-sequel SUBDIR += rubygem-sexp_processor SUBDIR += rubygem-stream SUBDIR += rubygem-templater SUBDIR += rubygem-transactionsimple SUBDIR += rubygem-trollop SUBDIR += rubygem-tzinfo SUBDIR += rubygem-uuid SUBDIR += rubygem-validatable SUBDIR += rubygem-warbler SUBDIR += rubygem-zentest SUBDIR += rudeconfig SUBDIR += rudiments SUBDIR += rvi SUBDIR += rvm SUBDIR += safestr SUBDIR += scandoc SUBDIR += scons SUBDIR += scsh-install-lib SUBDIR += sdl12 SUBDIR += sdl_console SUBDIR += sdl_sge SUBDIR += sdlmm SUBDIR += sdts++ SUBDIR += sedsed SUBDIR += semantic SUBDIR += sfio SUBDIR += sfslite SUBDIR += sfslite-dbg SUBDIR += sfslite-noopt SUBDIR += sgb SUBDIR += sgl SUBDIR += sh-rtems-binutils SUBDIR += sh-rtems-g77 SUBDIR += sh-rtems-gcc SUBDIR += sh-rtems-gdb SUBDIR += sh-rtems-objc SUBDIR += shapelib SUBDIR += shmap SUBDIR += showgrammar SUBDIR += shtool SUBDIR += sid SUBDIR += sigslot SUBDIR += silc-toolkit SUBDIR += silentbob SUBDIR += simgear SUBDIR += simian SUBDIR += simpletest SUBDIR += simulavr SUBDIR += skalibs SUBDIR += slglade SUBDIR += smake SUBDIR += smc SUBDIR += sml_tk SUBDIR += smv SUBDIR += soapui SUBDIR += soup SUBDIR += sourcenav SUBDIR += sparc-rtems-binutils SUBDIR += sparc-rtems-g77 SUBDIR += sparc-rtems-gcc SUBDIR += sparc-rtems-gdb SUBDIR += sparc-rtems-objc SUBDIR += spatialindex SUBDIR += spdict SUBDIR += spin SUBDIR += splint SUBDIR += srecord SUBDIR += st SUBDIR += stfl SUBDIR += stlfilt SUBDIR += stlport SUBDIR += str SUBDIR += strace SUBDIR += stringencoders SUBDIR += styx SUBDIR += subclipse SUBDIR += subcommander SUBDIR += subcommander2 SUBDIR += subversion SUBDIR += subversion-freebsd SUBDIR += subversive SUBDIR += sunterlib SUBDIR += svk SUBDIR += svn_load_dirs SUBDIR += svndelta SUBDIR += svnkit SUBDIR += svntrac SUBDIR += swig13 SUBDIR += synfig SUBDIR += sysconftool SUBDIR += sysfsutils SUBDIR += t1lib SUBDIR += ta-lib SUBDIR += tailor SUBDIR += tavrasm SUBDIR += tbb SUBDIR += tcl-memchan SUBDIR += tcl-neo SUBDIR += tcl-trf SUBDIR += tclcheck SUBDIR += tclcl SUBDIR += tclgetopts SUBDIR += tcllib SUBDIR += tclmore SUBDIR += tclreadline SUBDIR += tclthread SUBDIR += tcltls SUBDIR += tclxml SUBDIR += tclxml-expat SUBDIR += tclxml-libxml2 SUBDIR += tdl SUBDIR += templ SUBDIR += terminality SUBDIR += thistest SUBDIR += thrift SUBDIR += thunar-svn-plugin SUBDIR += tide SUBDIR += tig SUBDIR += tigcc SUBDIR += tijmp SUBDIR += tinylaf SUBDIR += tinyq SUBDIR += titano SUBDIR += tkcon SUBDIR += tkcvs SUBDIR += tkinspect SUBDIR += tkmerge SUBDIR += tkp4 SUBDIR += tla SUBDIR += tmake SUBDIR += tnt SUBDIR += toh SUBDIR += tokamak SUBDIR += towitoko SUBDIR += tpasm SUBDIR += tpg SUBDIR += trio SUBDIR += truc SUBDIR += tvision SUBDIR += u-boot SUBDIR += uclmmbase SUBDIR += ucpp SUBDIR += udis86 SUBDIR += umem SUBDIR += upnp SUBDIR += upp SUBDIR += uppaal SUBDIR += upslug SUBDIR += urjtag SUBDIR += ustl SUBDIR += valgrind SUBDIR += valgrind-snapshot SUBDIR += valide SUBDIR += varconf SUBDIR += vb2c SUBDIR += viewvc SUBDIR += vstr SUBDIR += vtcl SUBDIR += wand-libconfig SUBDIR += websvn SUBDIR += wininfo SUBDIR += winpdb SUBDIR += wizardkit SUBDIR += wxGlade SUBDIR += xdg-user-dirs SUBDIR += xdg-utils SUBDIR += xfc SUBDIR += xfce4-dev-tools SUBDIR += xlslib SUBDIR += xmake SUBDIR += xmltooling SUBDIR += xorg-macros SUBDIR += xparam SUBDIR += xtl SUBDIR += xtla SUBDIR += xwpe SUBDIR += xxgdb SUBDIR += xxl SUBDIR += yasm SUBDIR += z80-asm SUBDIR += z80asm SUBDIR += zeroinstall-injector SUBDIR += zmq SUBDIR += ztcl SUBDIR += zthread SUBDIR += zziplib .include Property changes on: head/devel/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3384 \ No newline at end of property +1.3385 \ No newline at end of property Index: head/devel/php5-pcre/Makefile =================================================================== --- head/devel/php5-pcre/Makefile (nonexistent) +++ head/devel/php5-pcre/Makefile (revision 229565) @@ -0,0 +1,14 @@ +# New ports collection makefile for: php5-pcre +# Date created: 7 Jul 2004 +# Whom: Alex Dupre +# +# $FreeBSD$ +# + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php5 + +PKGNAMESUFFIX= -pcre + +.include "${MASTERDIR}/Makefile" Property changes on: head/devel/php5-pcre/Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.6 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/devel/php5-pcre/files/patch-php_pcre.c =================================================================== --- head/devel/php5-pcre/files/patch-php_pcre.c (nonexistent) +++ head/devel/php5-pcre/files/patch-php_pcre.c (revision 229565) @@ -0,0 +1,13 @@ +--- php_pcre.c.orig 2009-03-06 10:58:43.000000000 +0100 ++++ php_pcre.c 2009-03-06 10:58:56.000000000 +0100 +@@ -18,6 +18,10 @@ + + /* $Id: php_pcre.c,v 1.168.2.9.2.30 2009/01/13 19:23:31 andrei Exp $ */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include "php.h" + #include "php_ini.h" + #include "php_globals.h" Property changes on: head/devel/php5-pcre/files/patch-php_pcre.c ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.3 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/ftp/php5-curl/Makefile =================================================================== --- head/ftp/php5-curl/Makefile (revision 229564) +++ head/ftp/php5-curl/Makefile (revision 229565) @@ -1,15 +1,14 @@ # New ports collection makefile for: php5-curl # Date created: 7 Jul 2004 # Whom: Alex Dupre # # $FreeBSD$ # CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php5 PKGNAMESUFFIX= -curl -PORTREVISION= 1 .include "${MASTERDIR}/Makefile" Property changes on: head/ftp/php5-curl/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/graphics/php5-gd/Makefile =================================================================== --- head/graphics/php5-gd/Makefile (revision 229564) +++ head/graphics/php5-gd/Makefile (revision 229565) @@ -1,15 +1,14 @@ # New ports collection makefile for: php5-gd # Date created: 7 Jul 2004 # Whom: Alex Dupre # # $FreeBSD$ # -PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php5 PKGNAMESUFFIX= -gd .include "${MASTERDIR}/Makefile" Property changes on: head/graphics/php5-gd/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/graphics/php5-gd/files/patch-libgd_gd.c =================================================================== --- head/graphics/php5-gd/files/patch-libgd_gd.c (revision 229564) +++ head/graphics/php5-gd/files/patch-libgd_gd.c (nonexistent) @@ -1,11 +0,0 @@ ---- libgd/gd.c.orig 2009-01-05 14:54:19.000000000 +0100 -+++ libgd/gd.c 2009-01-05 14:54:53.000000000 +0100 -@@ -3136,7 +3136,7 @@ - return NULL; - } - -- if (!gdImageTrueColor(src) && clrBack>=gdImageColorsTotal(src)) { -+ if (!gdImageTrueColor(src) && (clrBack < 0 || clrBack>=gdImageColorsTotal(src))) { - return NULL; - } - Property changes on: head/graphics/php5-gd/files/patch-libgd_gd.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/php5/Makefile =================================================================== --- head/lang/php5/Makefile (revision 229564) +++ head/lang/php5/Makefile (revision 229565) @@ -1,183 +1,175 @@ # New ports collection makefile for: php5 # Date created: Tue Feb 18 11:17:13 CET 2003 # Whom: Alex Dupre # # $FreeBSD$ # PORTNAME= php5 -PORTVERSION= 5.2.8 +PORTVERSION= 5.2.9 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions DISTNAME= php-${PORTVERSION} MAINTAINER= ale@FreeBSD.org COMMENT= PHP Scripting Language LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} USE_BZIP2= yes .if !defined(PKGNAMESUFFIX) USE_AUTOTOOLS= autoconf:262 -# use bundled pcre while apache2 does the same -#LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre - CONFIGURE_ARGS= \ --with-layout=GNU \ --with-config-file-scan-dir=${PREFIX}/etc/php \ --disable-all \ --enable-libxml \ --with-libxml-dir=${LOCALBASE} \ - --with-pcre-regex=yes \ --enable-reflection \ --program-prefix="" USE_GNOME= libxml2 OPTIONS= CLI "Build CLI version" on \ CGI "Build CGI version" on \ APACHE "Build Apache module" off \ DEBUG "Enable debug" off \ SUHOSIN "Enable Suhosin protection system (not for jails)" on \ MULTIBYTE "Enable zend multibyte support" off \ IPV6 "Enable ipv6 support" on \ MAILHEAD "Enable mail header patch" off \ REDIRECT "Enable force-cgi-redirect support (CGI only)" off \ DISCARD "Enable discard-path support (CGI only)" off \ FASTCGI "Enable fastcgi support (CGI only)" on \ PATHINFO "Enable path-info-check support (CGI only)" on CONFLICTS= php4-4* MAN1= php-config.1 phpize.1 .include PATCH_DIST_STRIP= -p1 .if !defined(WITHOUT_SUHOSIN) -#PATCHFILES+= suhosin-patch-${PORTVERSION}-0.9.6.3.patch.gz:suhosin -PATCHFILES+= suhosin-patch-5.2.7-0.9.6.3.patch.gz:suhosin +PATCHFILES+= suhosin-patch-${PORTVERSION}-0.9.7.patch.gz:suhosin PATCH_SITES+= http://download.suhosin.org/:suhosin PLIST_SUB+= SUHOSIN="" .else PLIST_SUB+= SUHOSIN="@comment " .endif .if defined(WITH_MAILHEAD) -PATCHFILES+= php-${PORTVERSION}-mail-header.patch:mail +#PATCHFILES+= php-${PORTVERSION}-mail-header.patch:mail +PATCHFILES+= php-5.2.8-mail-header.patch:mail PATCH_SITES+= http://choon.net/opensource/php/:mail .endif .if !defined(WITHOUT_CLI) PHP_SAPI+= cli PLIST_SUB+= CLI="" MAN1+= php.1 .else PLIST_SUB+= CLI="@comment " CONFIGURE_ARGS+=--disable-cli .endif .if !defined(WITHOUT_CGI) PHP_SAPI+= cgi PLIST_SUB+= CGI="" .if defined(WITH_REDIRECT) CONFIGURE_ARGS+=--enable-force-cgi-redirect .endif .if defined(WITH_DISCARD) CONFIGURE_ARGS+=--enable-discard-path .endif .if !defined(WITHOUT_FASTCGI) CONFIGURE_ARGS+=--enable-fastcgi .endif .if defined(WITHOUT_PATHINFO) CONFIGURE_ARGS+=--disable-path-info-check .endif .else PLIST_SUB+= CGI="@comment " CONFIGURE_ARGS+=--disable-cgi .endif .if defined(WITH_APACHE) PHP_SAPI+= mod USE_APACHE= 1.3+ .include "${PORTSDIR}/Mk/bsd.apache.mk" .if ${APACHE_VERSION} > 13 CONFIGURE_ARGS+=--with-apxs2=${APXS} .else CONFIGURE_ARGS+=--with-apxs=${APXS} .endif PKGMESSAGE= ${PKGDIR}/pkg-message.mod MODULENAME= lib${PORTNAME} SHORTMODNAME= ${PORTNAME} PLIST_SUB+= APACHE="" .else PLIST_SUB+= APACHE="@comment " .endif .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 .elif defined(WITH_REGEX_TYPE) && ${WITH_REGEX_TYPE} == "apache" CONFIGURE_ARGS+=--with-regex=apache .endif .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 CONFIGURE_ENV+= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ ac_cv_pthreads_cflags=${PTHREAD_CFLAGS} \ pthreads_working="yes" MAKE_ENV+= LDFLAGS="${LDFLAGS}" .if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug .endif .if defined(WITH_MULTIBYTE) CONFIGURE_ARGS+=--enable-zend-multibyte .endif .if defined(WITHOUT_IPV6) CONFIGURE_ARGS+=--disable-ipv6 .endif post-patch: @${TOUCH} ${WRKSRC}/ext/php_config.h @${REINPLACE_CMD} "s|^\(extension_dir\)|; \1|" ${WRKSRC}/php.ini-* pre-configure: @${CAT} ${WRKSRC}/acinclude.m4 ${WRKSRC}/build/libtool.m4 > ${WRKSRC}/aclocal.m4 post-build: @${ECHO_CMD} "PHP_VER=5" > ${WRKDIR}/php.conf @${ECHO_CMD} "PHP_VERSION=${PORTVERSION}" >> ${WRKDIR}/php.conf @${ECHO_CMD} "PHP_SAPI=${PHP_SAPI}" >> ${WRKDIR}/php.conf - @${ECHO_CMD} "PHP_EXT_INC=pcre" >> ${WRKDIR}/php.conf - -test: build - @(cd ${WRKSRC} && ${MAKE} test) post-install: @${INSTALL_DATA} ${WRKSRC}/php.ini-dist ${PREFIX}/etc @${INSTALL_DATA} ${WRKSRC}/php.ini-recommended ${PREFIX}/etc @${INSTALL_DATA} ${WRKDIR}/php.conf ${PREFIX}/etc @${TOUCH} ${PREFIX}/include/php/ext/php_config.h .if defined(WITH_APACHE) @${CAT} ${PKGMESSAGE} .endif .else .include "${MASTERDIR}/Makefile.ext" .endif .include Property changes on: head/lang/php5/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.134 \ No newline at end of property +1.135 \ No newline at end of property Index: head/lang/php5/Makefile.ext =================================================================== --- head/lang/php5/Makefile.ext (revision 229564) +++ head/lang/php5/Makefile.ext (revision 229565) @@ -1,604 +1,627 @@ COMMENT= The ${PHP_MODNAME} shared extension for php USE_PHP= yes USE_PHPEXT= yes PHP_MODNAME= ${PKGNAMESUFFIX:S/-//} DEFAULT_PHP_VER=5 BROKEN_WITH_PHP=4 EXTSUBDIR= ${DISTNAME}/ext/${PHP_MODNAME} WRKSRC= ${WRKDIR}/${EXTSUBDIR} PATCHDIR= ${.CURDIR}/files PLIST= ${NONEXISTENT} EXTRACT_AFTER_ARGS?= | ${TAR} -xf - ${EXTSUBDIR} .if ${PHP_MODNAME} == "bcmath" CONFIGURE_ARGS+=--enable-bcmath PHP_HEADER_DIRS=libbcmath libbcmath/src .endif .if ${PHP_MODNAME} == "bz2" .if exists(/usr/bin/bzip2) BZ2BASE= /usr .else BZ2BASE= ${LOCALBASE} LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 .endif CONFIGURE_ARGS+=--with-bz2=${BZ2BASE} .endif .if ${PHP_MODNAME} == "calendar" CONFIGURE_ARGS+=--enable-calendar .endif .if ${PHP_MODNAME} == "ctype" CONFIGURE_ARGS+=--enable-ctype .endif .if ${PHP_MODNAME} == "curl" LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=--with-curl=${LOCALBASE} .endif .if ${PHP_MODNAME} == "dba" CONFIGURE_ARGS+=--enable-dba OPTIONS= CDB "cdb database support" on \ DB4 "Berkeley DB4 support" off \ GDBM "GDBM database support" off \ QDBM "QDBM database support" off \ INIFILE "INI file support" on \ FLATFILE "flatfile support" on PHP_HEADER_DIRS= libcdb libflatfile libinifile .endif .if ${PHP_MODNAME} == "dbase" CONFIGURE_ARGS+=--enable-dbase .endif .if ${PHP_MODNAME} == "dom" CONFIGURE_ARGS+=--enable-dom \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= spl USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "exif" CONFIGURE_ARGS+=--enable-exif .endif .if ${PHP_MODNAME} == "filter" -CONFIGURE_ARGS+=--enable-filter +CONFIGURE_ARGS+=--enable-filter \ + --with-pcre-dir=${LOCALBASE} + +USE_PHP= pcre +USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "ftp" CONFIGURE_ARGS+=--enable-ftp \ --with-openssl-dir=${OPENSSLBASE} LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "gd" LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg . if !defined(WITHOUT_X11) USE_XORG= xpm . endif CONFIGURE_ARGS+=--with-gd \ --with-freetype-dir=${LOCALBASE} \ --with-jpeg-dir=${LOCALBASE} \ --with-png-dir=${LOCALBASE} \ --with-zlib-dir=/usr . if !defined(WITHOUT_X11) CONFIGURE_ARGS+=--with-xpm-dir=${LOCALBASE} . endif OPTIONS= T1LIB "Include T1lib support" on \ TRUETYPE "Enable TrueType string function" on \ JIS "Enable JIS-mapped Japanese font support" off PHP_HEADER_DIRS=libgd .endif .if ${PHP_MODNAME} == "gettext" CONFIGURE_ARGS+=--with-gettext=${LOCALBASE} USE_GETTEXT= yes .endif .if ${PHP_MODNAME} == "gmp" LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4 CONFIGURE_ARGS+=--with-gmp=${LOCALBASE} .endif .if ${PHP_MODNAME} == "hash" CONFIGURE_ARGS+=--enable-hash .endif .if ${PHP_MODNAME} == "iconv" CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} \ --with-iconv-dir=${LOCALBASE} USE_ICONV= yes .endif .if ${PHP_MODNAME} == "imap" LIB_DEPENDS+= c-client4.9:${PORTSDIR}/mail/cclient CONFIGURE_ARGS+=--with-imap=${LOCALBASE} .if !defined(WITHOUT_SSL) CONFIGURE_ARGS+=--with-imap-ssl=${OPENSSLBASE} LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes .endif .endif .if ${PHP_MODNAME} == "interbase" CONFIGURE_ARGS+=--with-interbase=${LOCALBASE} USE_FIREBIRD= yes .endif .if ${PHP_MODNAME} == "json" CONFIGURE_ARGS+=--enable-json .endif .if ${PHP_MODNAME} == "ldap" CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} USE_OPENLDAP= yes . ifdef(WANT_OPENLDAP_SASL) CONFIGURE_ARGS+=--with-ldap-sasl . endif .endif .if ${PHP_MODNAME} == "mbstring" CONFIGURE_ARGS+=--enable-mbstring OPTIONS= REGEX "Enable multibyte regex support" on PHP_HEADER_DIRS=libmbfl libmbfl/filters libmbfl/mbfl libmbfl/nls oniguruma .endif .if ${PHP_MODNAME} == "mcrypt" LIB_DEPENDS+= mcrypt.8:${PORTSDIR}/security/libmcrypt CONFIGURE_ARGS+=--with-mcrypt=${LOCALBASE} USE_AUTOTOOLS= libltdl:15 .endif .if ${PHP_MODNAME} == "mhash" LIB_DEPENDS+= mhash.2:${PORTSDIR}/security/mhash CONFIGURE_ARGS+=--with-mhash=${LOCALBASE} .endif .if ${PHP_MODNAME} == "ming" LIB_DEPENDS+= ming.4:${PORTSDIR}/graphics/ming CONFIGURE_ARGS+=--with-ming=${LOCALBASE} .endif .if ${PHP_MODNAME} == "mssql" LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds-msdblib CONFIGURE_ARGS+=--with-mssql=${LOCALBASE} .endif .if ${PHP_MODNAME} == "mysql" CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} \ --with-zlib-dir=/usr USE_MYSQL= yes .endif .if ${PHP_MODNAME} == "mysqli" CONFIGURE_ARGS+=--with-mysqli=${LOCALBASE}/bin/mysql_config USE_MYSQL= yes BROKEN_WITH_MYSQL= 323 40 USE_PHP= spl USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "ncurses" CONFIGURE_ARGS+=--with-ncurses=/usr .endif .if ${PHP_MODNAME} == "oci8" BUILD_DEPENDS+= ${LOCALBASE}/oracle8-client/lib/libclntsh.a:${PORTSDIR}/databases/oracle8-client RUN_DEPENDS+= ${BUILD_DEPENDS} CONFIGURE_ARGS+=--with-oci8=${LOCALBASE}/oracle8-client .endif .if ${PHP_MODNAME} == "odbc" LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-unixODBC=${LOCALBASE} .endif .if ${PHP_MODNAME} == "openssl" CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "pcntl" CONFIGURE_ARGS+=--enable-pcntl .endif +.if ${PHP_MODNAME} == "pcre" +OPTIONS= BUNDLED_PCRE "Select if you use apache 2.0.x" off +.endif + .if ${PHP_MODNAME} == "pdo" CONFIGURE_ARGS+=--enable-pdo .endif .if ${PHP_MODNAME} == "pdo_dblib" CONFIGURE_ARGS+=--with-pdo-dblib=${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes OPTIONS= MSSQL "Enable Microsoft SQL Server support" off .endif .if ${PHP_MODNAME} == "pdo_firebird" CONFIGURE_ARGS+=--with-pdo-firebird=${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes USE_FIREBIRD= yes .endif .if ${PHP_MODNAME} == "pdo_mysql" CONFIGURE_ARGS+=--with-pdo-mysql=${LOCALBASE} \ --with-zlib-dir=/usr USE_MYSQL= yes USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_oci" BUILD_DEPENDS+= ${LOCALBASE}/oracle8-client/lib/libclntsh.a:${PORTSDIR}/databases/oracle8-client RUN_DEPENDS+= ${BUILD_DEPENDS} CONFIGURE_ARGS+=--with-pdo-oci=${LOCALBASE}/oracle8-client USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_odbc" LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-pdo-odbc=unixODBC,${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_pgsql" USE_PGSQL= yes CONFIGURE_ARGS+=--with-pdo-pgsql=${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_sqlite" . if defined(WITH_SQLITE_PORT) USE_SQLITE= yes CONFIGURE_ARGS+=--with-pdo-sqlite=${LOCALBASE} . else CONFIGURE_ARGS+=--with-pdo-sqlite . endif USE_PHP= pdo USE_PHP_BUILD= yes PHP_HEADER_DIRS=sqlite/src .endif .if ${PHP_MODNAME} == "pgsql" USE_PGSQL= yes CONFIGURE_ARGS+=--with-pgsql=${LOCALBASE} .endif .if ${PHP_MODNAME} == "posix" CONFIGURE_ARGS+=--enable-posix .endif .if ${PHP_MODNAME} == "pspell" LIB_DEPENDS+= aspell.16:${PORTSDIR}/textproc/aspell CONFIGURE_ARGS+=--with-pspell=${LOCALBASE} # Ugly hack to load session before psell to avoid crashes USE_PHP= session USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "readline" CONFIGURE_ARGS+=--with-readline=/usr .endif .if ${PHP_MODNAME} == "recode" LIB_DEPENDS+= recode.3:${PORTSDIR}/converters/recode CONFIGURE_ARGS+=--with-recode=${LOCALBASE} .endif .if ${PHP_MODNAME} == "session" CONFIGURE_ARGS+=--enable-session .endif .if ${PHP_MODNAME} == "shmop" CONFIGURE_ARGS+=--enable-shmop .endif .if ${PHP_MODNAME} == "simplexml" CONFIGURE_ARGS+=--enable-simplexml \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 .endif .if ${PHP_MODNAME} == "snmp" CONFIGURE_ARGS+=--with-snmp=${LOCALBASE} \ --with-openssl-dir=${OPENSSLBASE} \ --enable-ucd-snmp-hack LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes OPTIONS= SNMP4 "Use old UCD SNMP instead of the new NET SNMP" off .endif .if ${PHP_MODNAME} == "soap" CONFIGURE_ARGS+=--enable-soap \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= session USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "spl" CONFIGURE_ARGS+=--enable-spl \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 -USE_PHP= simplexml +USE_PHP= pcre simplexml USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "sockets" CONFIGURE_ARGS+=--enable-sockets .endif .if ${PHP_MODNAME} == "sqlite" CONFIGURE_ARGS+=--with-sqlite USE_PHP= session USE_PHP_BUILD= yes PHP_HEADER_DIRS=libsqlite/src USE_PHP= spl USE_PHP_BUILD= yes OPTIONS= UTF8 "Enable UTF-8 support" off .endif .if ${PHP_MODNAME} == "sybase_ct" LIB_DEPENDS+= ct.4:${PORTSDIR}/databases/freetds CONFIGURE_ARGS+=--with-sybase-ct=${LOCALBASE} .endif .if ${PHP_MODNAME} == "sysvmsg" CONFIGURE_ARGS+=--enable-sysvmsg .endif .if ${PHP_MODNAME} == "sysvsem" CONFIGURE_ARGS+=--enable-sysvsem .endif .if ${PHP_MODNAME} == "sysvshm" CONFIGURE_ARGS+=--enable-sysvshm .endif .if ${PHP_MODNAME} == "tidy" CONFIGURE_ARGS+=--with-tidy=${LOCALBASE} LIB_DEPENDS+= tidy-0.99.0:${PORTSDIR}/www/tidy-lib .endif .if ${PHP_MODNAME} == "tokenizer" CONFIGURE_ARGS+=--enable-tokenizer .endif .if ${PHP_MODNAME} == "wddx" CONFIGURE_ARGS+=--enable-wddx \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= xml session USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "xml" CONFIGURE_ARGS+=--enable-xml \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 .endif .if ${PHP_MODNAME} == "xmlreader" -CONFIGURE_ARGS+=--with-xmlreader \ +CONFIGURE_ARGS+=--enable-xmlreader \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= dom USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "xmlrpc" CONFIGURE_ARGS+=--with-xmlrpc \ --with-libxml-dir=${LOCALBASE} \ --with-iconv-dir=${LOCALBASE} USE_ICONV= yes USE_GNOME= libxml2 PHP_HEADER_DIRS=libxmlrpc USE_PHP= xml USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "xmlwriter" -CONFIGURE_ARGS+=--with-xmlwriter \ +CONFIGURE_ARGS+=--enable-xmlwriter \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 .endif .if ${PHP_MODNAME} == "xsl" CONFIGURE_ARGS+=--with-xsl=${LOCALBASE} USE_GNOME= libxslt USE_PHP= dom xml USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "zip" CONFIGURE_ARGS+=--enable-zip \ --with-zlib-dir=/usr .endif .if ${PHP_MODNAME} == "zlib" CONFIGURE_ARGS+=--with-zlib=/usr .endif .include .if ${PHP_MODNAME} == "dba" . if defined(WITHOUT_CDB) CONFIGURE_ARGS+=--without-cdb . endif . if defined(WITH_DB4) CONFIGURE_ARGS+=--with-db4=${LOCALBASE} USE_BDB= 40+ WITH_BDB_HIGHEST= yes . endif . if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+=--with-gdbm=${LOCALBASE} . endif . if defined(WITH_QDBM) LIB_DEPENDS+= qdbm.14:${PORTSDIR}/databases/qdbm CONFIGURE_ARGS+=--with-qdbm=${LOCALBASE} . endif . if defined(WITHOUT_INIFILE) -CONFIGURE_ARGS+=--without-inifile +CONFIGURE_ARGS+=--disable-inifile . endif . if defined(WITHOUT_FLATFILE) -CONFIGURE_ARGS+=--without-flatfile +CONFIGURE_ARGS+=--disable-flatfile . endif .endif .if ${PHP_MODNAME} == "gd" . if !defined(WITHOUT_T1LIB) LIB_DEPENDS+= t1.5:${PORTSDIR}/devel/t1lib CONFIGURE_ARGS+=--with-t1lib=${LOCALBASE} . endif . if !defined(WITHOUT_TRUETYPE) CONFIGURE_ARGS+=--enable-gd-native-ttf . endif . if defined(WITH_JIS) CONFIGURE_ARGS+=--enable-gd-jis-conv . endif .endif .if ${PHP_MODNAME} == "mbstring" . if defined(WITHOUT_REGEX) CONFIGURE_ARGS+=--disable-mbregex . endif .endif .if ${PHP_MODNAME} == "openssl" post-extract: @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 .endif .if ${PHP_MODNAME} == "oci8" || ${PHP_MODNAME} == "pdo_oci" pre-configure: @cd ${WRKSRC}; \ for lib in ${LOCALBASE}/oracle8-client/lib/libclntsh /usr/lib/libpthread; do \ /usr/bin/ar x $${lib}.a; \ done; \ /usr/bin/ar rcs liboci8.a *.o +.endif + +.if ${PHP_MODNAME} == "pcre" +. if defined(WITH_BUNDLED_PCRE) +CONFIGURE_ARGS+=--with-pcre-regex=yes + +PHP_HEADER_DIRS=pcrelib +. else +LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre + +CONFIGURE_ARGS+=--with-pcre-regex=${LOCALBASE} +. endif + +post-extract: + @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 .endif .if ${PHP_MODNAME} == "pdo_dblib" .if defined(WITH_MSSQL) LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds-msdblib .else LIB_DEPENDS+= ct.4:${PORTSDIR}/databases/freetds .endif .endif .if ${PHP_MODNAME} == "snmp" . if defined(WITH_SNMP4) || exists(${LOCALBASE}/lib/libsnmp.so.4) LIB_DEPENDS+= snmp.4:${PORTSDIR}/net-mgmt/net-snmp4 . else LIB_DEPENDS+= netsnmp.16:${PORTSDIR}/net-mgmt/net-snmp . endif .endif .if ${PHP_MODNAME} == "sqlite" . if defined(WITH_UTF8) CONFIGURE_ARGS+=--enable-sqlite-utf8 . endif .endif .if ${PHP_MODNAME} == "xml" post-extract: @${MKDIR} ${WRKSRC}/ext/xml @${CP} ${WRKSRC}/expat_compat.h ${WRKSRC}/ext/xml .endif .if ${PHP_MODNAME} == "zlib" post-extract: @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 .endif Property changes on: head/lang/php5/Makefile.ext ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.61 \ No newline at end of property +1.62 \ No newline at end of property Index: head/lang/php5/distinfo =================================================================== --- head/lang/php5/distinfo (revision 229564) +++ head/lang/php5/distinfo (revision 229565) @@ -1,9 +1,9 @@ -MD5 (php-5.2.8.tar.bz2) = 8760a833cf10433d3e72271ab0d0eccf -SHA256 (php-5.2.8.tar.bz2) = a70600e13410213a637f1c9825e9c0d45c64de8cefb1929f8f5aa761b20b2b67 -SIZE (php-5.2.8.tar.bz2) = 9827180 -MD5 (suhosin-patch-5.2.7-0.9.6.3.patch.gz) = d455c3dd5b652046dbac2951a58f64fa -SHA256 (suhosin-patch-5.2.7-0.9.6.3.patch.gz) = 85e6262f53014e393977d1efed2d3a7e686767a07f96b14b2c3f126f694aee46 -SIZE (suhosin-patch-5.2.7-0.9.6.3.patch.gz) = 23125 +MD5 (php-5.2.9.tar.bz2) = 280d6cda7f72a4fc6de42fda21ac2db7 +SHA256 (php-5.2.9.tar.bz2) = 30166dda7c3d8bdcb2753ab79260be25454cdf3673d681b7651f8d32006ee2a6 +SIZE (php-5.2.9.tar.bz2) = 10203122 +MD5 (suhosin-patch-5.2.9-0.9.7.patch.gz) = f80dbcd2773a98da1dab0c73c3654895 +SHA256 (suhosin-patch-5.2.9-0.9.7.patch.gz) = 6f7a86cff1cdd1007ba248292f6adfe3b7c01adfed56c2e937c87c60210bbc38 +SIZE (suhosin-patch-5.2.9-0.9.7.patch.gz) = 23026 MD5 (php-5.2.8-mail-header.patch) = 74bf3a2a123c284f908c4f5483ebe886 SHA256 (php-5.2.8-mail-header.patch) = 9bd306145153a371f619d89996cb329bdc36791b22a50daf4afe7cc69c46dccb SIZE (php-5.2.8-mail-header.patch) = 3381 Property changes on: head/lang/php5/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.42 \ No newline at end of property +1.43 \ No newline at end of property Index: head/lang/php5/files/patch-ext_date_lib_timelib_structs.h =================================================================== --- head/lang/php5/files/patch-ext_date_lib_timelib_structs.h (revision 229564) +++ head/lang/php5/files/patch-ext_date_lib_timelib_structs.h (nonexistent) @@ -1,11 +0,0 @@ ---- ext/date/lib/timelib_structs.h.orig Wed Dec 7 11:11:39 2005 -+++ ext/date/lib/timelib_structs.h Wed Dec 7 11:11:53 2005 -@@ -21,7 +21,7 @@ - #ifndef __TIMELIB_STRUCTS_H__ - #define __TIMELIB_STRUCTS_H__ - --#include -+#include "timelib_config.h" - - #ifdef HAVE_SYS_TYPES_H - #include Property changes on: head/lang/php5/files/patch-ext_date_lib_timelib_structs.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/php5/pkg-plist =================================================================== --- head/lang/php5/pkg-plist (revision 229564) +++ head/lang/php5/pkg-plist (revision 229565) @@ -1,218 +1,209 @@ %%CLI%%bin/php %%CGI%%bin/php-cgi bin/php-config bin/phpize etc/php.conf etc/php.ini-dist etc/php.ini-recommended include/php/TSRM/TSRM.h include/php/TSRM/acconfig.h include/php/TSRM/readdir.h include/php/TSRM/tsrm_config.h include/php/TSRM/tsrm_config.w32.h include/php/TSRM/tsrm_config_common.h include/php/TSRM/tsrm_nw.h include/php/TSRM/tsrm_strtok_r.h include/php/TSRM/tsrm_virtual_cwd.h include/php/TSRM/tsrm_win32.h include/php/Zend/FlexLexer.h include/php/Zend/acconfig.h include/php/Zend/zend.h include/php/Zend/zend_API.h include/php/Zend/zend_alloc.h include/php/Zend/zend_builtin_functions.h include/php/Zend/zend_compile.h include/php/Zend/zend_config.h include/php/Zend/zend_config.nw.h include/php/Zend/zend_config.w32.h include/php/Zend/zend_constants.h include/php/Zend/zend_dynamic_array.h include/php/Zend/zend_errors.h include/php/Zend/zend_exceptions.h include/php/Zend/zend_execute.h include/php/Zend/zend_extensions.h include/php/Zend/zend_fast_cache.h include/php/Zend/zend_globals.h include/php/Zend/zend_globals_macros.h include/php/Zend/zend_hash.h include/php/Zend/zend_highlight.h include/php/Zend/zend_indent.h include/php/Zend/zend_ini.h include/php/Zend/zend_ini_parser.h include/php/Zend/zend_ini_scanner.h include/php/Zend/zend_interfaces.h include/php/Zend/zend_istdiostream.h include/php/Zend/zend_iterators.h include/php/Zend/zend_language_parser.h include/php/Zend/zend_language_scanner.h include/php/Zend/zend_list.h include/php/Zend/zend_llist.h include/php/Zend/zend_modules.h include/php/Zend/zend_multibyte.h include/php/Zend/zend_multiply.h include/php/Zend/zend_object_handlers.h include/php/Zend/zend_objects.h include/php/Zend/zend_objects_API.h include/php/Zend/zend_operators.h include/php/Zend/zend_ptr_stack.h include/php/Zend/zend_qsort.h include/php/Zend/zend_stack.h include/php/Zend/zend_static_allocator.h include/php/Zend/zend_stream.h include/php/Zend/zend_strtod.h include/php/Zend/zend_ts_hash.h include/php/Zend/zend_types.h include/php/Zend/zend_variables.h include/php/Zend/zend_vm.h include/php/Zend/zend_vm_def.h include/php/Zend/zend_vm_execute.h include/php/Zend/zend_vm_opcodes.h include/php/ext/date/lib/timelib.h include/php/ext/date/lib/timelib_config.h include/php/ext/date/lib/timelib_structs.h include/php/ext/date/php_date.h include/php/ext/libxml/php_libxml.h -include/php/ext/pcre/pcrelib/config.h -include/php/ext/pcre/pcrelib/pcre.h -include/php/ext/pcre/pcrelib/pcre_internal.h -include/php/ext/pcre/pcrelib/pcreposix.h -include/php/ext/pcre/pcrelib/ucp.h -include/php/ext/pcre/pcrelib/ucptable.h -include/php/ext/pcre/php_pcre.h include/php/ext/standard/base64.h include/php/ext/standard/basic_functions.h include/php/ext/standard/crc32.h include/php/ext/standard/credits.h include/php/ext/standard/credits_ext.h include/php/ext/standard/credits_sapi.h include/php/ext/standard/css.h include/php/ext/standard/cyr_convert.h include/php/ext/standard/datetime.h include/php/ext/standard/dl.h include/php/ext/standard/dns.h include/php/ext/standard/exec.h include/php/ext/standard/file.h include/php/ext/standard/flock_compat.h include/php/ext/standard/fsock.h include/php/ext/standard/head.h include/php/ext/standard/html.h include/php/ext/standard/info.h include/php/ext/standard/md5.h include/php/ext/standard/microtime.h include/php/ext/standard/pack.h include/php/ext/standard/pageinfo.h include/php/ext/standard/php_array.h include/php/ext/standard/php_assert.h include/php/ext/standard/php_browscap.h include/php/ext/standard/php_crypt.h include/php/ext/standard/php_dir.h include/php/ext/standard/php_ext_syslog.h include/php/ext/standard/php_filestat.h include/php/ext/standard/php_fopen_wrappers.h include/php/ext/standard/php_ftok.h include/php/ext/standard/php_http.h include/php/ext/standard/php_image.h include/php/ext/standard/php_incomplete_class.h include/php/ext/standard/php_iptc.h include/php/ext/standard/php_lcg.h include/php/ext/standard/php_link.h include/php/ext/standard/php_mail.h include/php/ext/standard/php_math.h include/php/ext/standard/php_metaphone.h include/php/ext/standard/php_rand.h include/php/ext/standard/php_smart_str.h include/php/ext/standard/php_smart_str_public.h include/php/ext/standard/php_standard.h include/php/ext/standard/php_string.h include/php/ext/standard/php_type.h include/php/ext/standard/php_uuencode.h include/php/ext/standard/php_var.h include/php/ext/standard/php_versioning.h include/php/ext/standard/proc_open.h include/php/ext/standard/quot_print.h include/php/ext/standard/reg.h include/php/ext/standard/scanf.h include/php/ext/standard/sha1.h include/php/ext/standard/streamsfuncs.h include/php/ext/standard/uniqid.h include/php/ext/standard/url.h include/php/ext/standard/url_scanner.h include/php/ext/standard/url_scanner_ex.h @exec touch %D/include/php/ext/php_config.h @unexec [ -s %D/include/php/ext/php_config.h ] || rm %D/include/php/ext/php_config.h include/php/main/SAPI.h include/php/main/build-defs.h include/php/main/config.w32.h include/php/main/fopen_wrappers.h include/php/main/logos.h include/php/main/php.h include/php/main/php3_compat.h include/php/main/php_compat.h include/php/main/php_config.h include/php/main/php_content_types.h include/php/main/php_globals.h include/php/main/php_ini.h include/php/main/php_logos.h include/php/main/php_main.h include/php/main/php_memory_streams.h include/php/main/php_network.h include/php/main/php_open_temporary_file.h include/php/main/php_output.h include/php/main/php_reentrancy.h include/php/main/php_regex.h include/php/main/php_scandir.h include/php/main/php_streams.h include/php/main/php_syslog.h include/php/main/php_ticks.h include/php/main/php_variables.h include/php/main/php_version.h include/php/main/rfc1867.h include/php/main/safe_mode.h include/php/main/snprintf.h include/php/main/spprintf.h include/php/main/streams/php_stream_context.h include/php/main/streams/php_stream_filter_api.h include/php/main/streams/php_stream_mmap.h include/php/main/streams/php_streams_int.h include/php/main/streams/php_stream_transport.h include/php/main/streams/php_stream_userspace.h include/php/main/streams/php_stream_plain_wrapper.h %%SUHOSIN%%include/php/main/suhosin_globals.h %%SUHOSIN%%include/php/main/suhosin_logo.h %%SUHOSIN%%include/php/main/suhosin_patch.h include/php/main/win95nt.h include/php/regex/cclass.h include/php/regex/cname.h include/php/regex/regex.h include/php/regex/regex2.h include/php/regex/regex_extra.h include/php/regex/utils.h lib/php/build/Makefile.global lib/php/build/acinclude.m4 lib/php/build/config.guess lib/php/build/config.sub lib/php/build/libtool.m4 lib/php/build/ltmain.sh lib/php/build/mkdep.awk lib/php/build/phpize.m4 lib/php/build/run-tests.php lib/php/build/scan_makefile_in.awk lib/php/build/shtool %%APACHE%%%%APACHEMODDIR%%/%%AP_MODULE%% %%APACHE%%@exec %D/sbin/apxs -e -a -n %%AP_NAME%% %f %%APACHE%%@unexec %D/sbin/apxs -e -A -n %%AP_NAME%% %f @dirrm include/php/TSRM @dirrm include/php/Zend @dirrm include/php/ext/date/lib @dirrm include/php/ext/date @dirrm include/php/ext/libxml -@dirrm include/php/ext/pcre/pcrelib -@dirrm include/php/ext/pcre @dirrm include/php/ext/standard @dirrmtry include/php/ext @dirrm include/php/main/streams @dirrm include/php/main @dirrm include/php/regex @dirrmtry include/php @dirrm lib/php/build @dirrmtry lib/php Property changes on: head/lang/php5/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/lang/php5-extensions/Makefile =================================================================== --- head/lang/php5-extensions/Makefile (revision 229564) +++ head/lang/php5-extensions/Makefile (revision 229565) @@ -1,137 +1,139 @@ # New ports collection makefile for: php5-extensions # Date created: 7 Jul 2004 # Whom: Alex Dupre # # $FreeBSD$ # PORTNAME= php5 -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= lang MASTER_SITES= # none PKGNAMESUFFIX= -extensions DISTFILES= # none EXTRACT_ONLY= # none MAINTAINER= ale@FreeBSD.org COMMENT= A "meta-port" to install PHP extensions DEFAULT_PHP_VER=5 IGNORE_WITH_PHP=4 USE_PHP_BUILD= yes NO_BUILD= yes WITH_CTYPE= yes WITH_DOM= yes WITH_FILTER= yes WITH_HASH= yes WITH_ICONV= yes WITH_JSON= yes +WITH_PCRE= yes WITH_PDO= yes WITH_PDO_SQLITE=yes WITH_POSIX= yes WITH_SESSION= yes WITH_SIMPLEXML= yes WITH_SPL= yes WITH_SQLITE= yes WITH_TOKENIZER= yes WITH_XML= yes WITH_XMLREADER= yes WITH_XMLWRITER= yes OPTIONS= BCMATH "bc style precision math functions" off \ BZ2 "bzip2 library support" off \ CALENDAR "calendar conversion support" off \ CTYPE "ctype functions" on \ CURL "CURL support" off \ DBA "dba support" off \ DBASE "dBase library support" off \ DOM "DOM support" on \ EXIF "EXIF support" off \ FILEINFO "fileinfo support" off \ FILTER "input filter support" on \ FRIBIDI "FriBidi support" off \ FTP "FTP support" off \ GD "GD library support" off \ GETTEXT "gettext library support" off \ GMP "GNU MP support" off \ HASH "HASH Message Digest Framework" on \ ICONV "iconv support" on \ IMAP "IMAP support" off \ INTERBASE "Interbase 6 database support (Firebird)" off \ JSON "JavaScript Object Serialization support" on \ LDAP "OpenLDAP support" off \ MBSTRING "multibyte string support" off \ MCRYPT "Encryption support" off \ MHASH "Crypto-hashing support" off \ MING "ming shockwave flash support" off \ MSSQL "MS-SQL database support" off \ MYSQL "MySQL database support" off \ MYSQLI "MySQLi database support" off \ NCURSES "ncurses support (CLI only)" off \ ODBC "unixODBC support" off \ OPENSSL "OpenSSL support" off \ PCNTL "pcntl support (CLI only)" off \ + PCRE "Perl Compatible Regular Expression support" on \ PDF "PDFlib support (implies GD)" off \ PDO "PHP Data Objects Interface (PDO)" on \ PDO_SQLITE "PDO sqlite driver" on \ PGSQL "PostgreSQL database support" off \ POSIX "POSIX-like functions" on \ PSPELL "pspell support" off \ READLINE "readline support (CLI only)" off \ RECODE "recode support" off \ SESSION "session support" on \ SHMOP "shmop support" off \ SIMPLEXML "simplexml support" on \ SNMP "SNMP support" off \ SOAP "SOAP support" off \ SOCKETS "sockets support" off \ SPL "Standard PHP Library" on \ SQLITE "sqlite support" on \ SYBASE_CT "Sybase database support" off \ SYSVMSG "System V message support" off \ SYSVSEM "System V semaphore support" off \ SYSVSHM "System V shared memory support" off \ TIDY "TIDY support" off \ TOKENIZER "tokenizer support" on \ WDDX "WDDX support (implies XML)" off \ XML "XML support" on \ XMLREADER "XMLReader support" on \ XMLRPC "XMLRPC-EPI support" off \ XMLWRITER "XMLWriter support" on \ XSL "XSL support (Implies DOM)" off \ YAZ "YAZ support (ANSI/NISO Z39.50)" off \ ZIP "ZIP support" off \ ZLIB "ZLIB support" off PORT_DBDIR?= /var/db/ports LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options .if exists(${OPTIONSFILE}) .include "${OPTIONSFILE}" .endif ALL_OPTIONS= BCMATH BZ2 CALENDAR CTYPE CURL DBA DBASE \ DOM EXIF FILEINFO FILTER FRIBIDI FTP GD GETTEXT \ GMP HASH ICONV IMAP INTERBASE JSON LDAP MBSTRING MCRYPT \ MHASH MING MSSQL MYSQL MYSQLI NCURSES \ - ODBC OPENSSL PCNTL PDF PDO PDO_SQLITE PGSQL POSIX \ + ODBC OPENSSL PCNTL PCRE PDF PDO PDO_SQLITE PGSQL POSIX \ PSPELL READLINE RECODE SESSION SHMOP SIMPLEXML SNMP SOAP \ SOCKETS SPL SQLITE SYBASE_CT SYSVMSG SYSVSEM SYSVSHM \ TIDY TOKENIZER WDDX XML XMLREADER XMLRPC XMLWRITER XSL \ YAZ ZIP ZLIB SEL_OPTIONS= yes .for opt in ${ALL_OPTIONS} . if defined(WITH_${opt}) && !defined(WITHOUT_${opt}) SEL_OPTIONS+= ${opt:L} . endif .endfor USE_PHP= ${SEL_OPTIONS} do-install: build @${DO_NADA} .include Property changes on: head/lang/php5-extensions/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/lang/php53/Makefile =================================================================== --- head/lang/php53/Makefile (revision 229564) +++ head/lang/php53/Makefile (revision 229565) @@ -1,183 +1,175 @@ # New ports collection makefile for: php5 # Date created: Tue Feb 18 11:17:13 CET 2003 # Whom: Alex Dupre # # $FreeBSD$ # PORTNAME= php5 -PORTVERSION= 5.2.8 +PORTVERSION= 5.2.9 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions DISTNAME= php-${PORTVERSION} MAINTAINER= ale@FreeBSD.org COMMENT= PHP Scripting Language LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} USE_BZIP2= yes .if !defined(PKGNAMESUFFIX) USE_AUTOTOOLS= autoconf:262 -# use bundled pcre while apache2 does the same -#LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre - CONFIGURE_ARGS= \ --with-layout=GNU \ --with-config-file-scan-dir=${PREFIX}/etc/php \ --disable-all \ --enable-libxml \ --with-libxml-dir=${LOCALBASE} \ - --with-pcre-regex=yes \ --enable-reflection \ --program-prefix="" USE_GNOME= libxml2 OPTIONS= CLI "Build CLI version" on \ CGI "Build CGI version" on \ APACHE "Build Apache module" off \ DEBUG "Enable debug" off \ SUHOSIN "Enable Suhosin protection system (not for jails)" on \ MULTIBYTE "Enable zend multibyte support" off \ IPV6 "Enable ipv6 support" on \ MAILHEAD "Enable mail header patch" off \ REDIRECT "Enable force-cgi-redirect support (CGI only)" off \ DISCARD "Enable discard-path support (CGI only)" off \ FASTCGI "Enable fastcgi support (CGI only)" on \ PATHINFO "Enable path-info-check support (CGI only)" on CONFLICTS= php4-4* MAN1= php-config.1 phpize.1 .include PATCH_DIST_STRIP= -p1 .if !defined(WITHOUT_SUHOSIN) -#PATCHFILES+= suhosin-patch-${PORTVERSION}-0.9.6.3.patch.gz:suhosin -PATCHFILES+= suhosin-patch-5.2.7-0.9.6.3.patch.gz:suhosin +PATCHFILES+= suhosin-patch-${PORTVERSION}-0.9.7.patch.gz:suhosin PATCH_SITES+= http://download.suhosin.org/:suhosin PLIST_SUB+= SUHOSIN="" .else PLIST_SUB+= SUHOSIN="@comment " .endif .if defined(WITH_MAILHEAD) -PATCHFILES+= php-${PORTVERSION}-mail-header.patch:mail +#PATCHFILES+= php-${PORTVERSION}-mail-header.patch:mail +PATCHFILES+= php-5.2.8-mail-header.patch:mail PATCH_SITES+= http://choon.net/opensource/php/:mail .endif .if !defined(WITHOUT_CLI) PHP_SAPI+= cli PLIST_SUB+= CLI="" MAN1+= php.1 .else PLIST_SUB+= CLI="@comment " CONFIGURE_ARGS+=--disable-cli .endif .if !defined(WITHOUT_CGI) PHP_SAPI+= cgi PLIST_SUB+= CGI="" .if defined(WITH_REDIRECT) CONFIGURE_ARGS+=--enable-force-cgi-redirect .endif .if defined(WITH_DISCARD) CONFIGURE_ARGS+=--enable-discard-path .endif .if !defined(WITHOUT_FASTCGI) CONFIGURE_ARGS+=--enable-fastcgi .endif .if defined(WITHOUT_PATHINFO) CONFIGURE_ARGS+=--disable-path-info-check .endif .else PLIST_SUB+= CGI="@comment " CONFIGURE_ARGS+=--disable-cgi .endif .if defined(WITH_APACHE) PHP_SAPI+= mod USE_APACHE= 1.3+ .include "${PORTSDIR}/Mk/bsd.apache.mk" .if ${APACHE_VERSION} > 13 CONFIGURE_ARGS+=--with-apxs2=${APXS} .else CONFIGURE_ARGS+=--with-apxs=${APXS} .endif PKGMESSAGE= ${PKGDIR}/pkg-message.mod MODULENAME= lib${PORTNAME} SHORTMODNAME= ${PORTNAME} PLIST_SUB+= APACHE="" .else PLIST_SUB+= APACHE="@comment " .endif .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 .elif defined(WITH_REGEX_TYPE) && ${WITH_REGEX_TYPE} == "apache" CONFIGURE_ARGS+=--with-regex=apache .endif .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 CONFIGURE_ENV+= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ ac_cv_pthreads_cflags=${PTHREAD_CFLAGS} \ pthreads_working="yes" MAKE_ENV+= LDFLAGS="${LDFLAGS}" .if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug .endif .if defined(WITH_MULTIBYTE) CONFIGURE_ARGS+=--enable-zend-multibyte .endif .if defined(WITHOUT_IPV6) CONFIGURE_ARGS+=--disable-ipv6 .endif post-patch: @${TOUCH} ${WRKSRC}/ext/php_config.h @${REINPLACE_CMD} "s|^\(extension_dir\)|; \1|" ${WRKSRC}/php.ini-* pre-configure: @${CAT} ${WRKSRC}/acinclude.m4 ${WRKSRC}/build/libtool.m4 > ${WRKSRC}/aclocal.m4 post-build: @${ECHO_CMD} "PHP_VER=5" > ${WRKDIR}/php.conf @${ECHO_CMD} "PHP_VERSION=${PORTVERSION}" >> ${WRKDIR}/php.conf @${ECHO_CMD} "PHP_SAPI=${PHP_SAPI}" >> ${WRKDIR}/php.conf - @${ECHO_CMD} "PHP_EXT_INC=pcre" >> ${WRKDIR}/php.conf - -test: build - @(cd ${WRKSRC} && ${MAKE} test) post-install: @${INSTALL_DATA} ${WRKSRC}/php.ini-dist ${PREFIX}/etc @${INSTALL_DATA} ${WRKSRC}/php.ini-recommended ${PREFIX}/etc @${INSTALL_DATA} ${WRKDIR}/php.conf ${PREFIX}/etc @${TOUCH} ${PREFIX}/include/php/ext/php_config.h .if defined(WITH_APACHE) @${CAT} ${PKGMESSAGE} .endif .else .include "${MASTERDIR}/Makefile.ext" .endif .include Property changes on: head/lang/php53/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.134 \ No newline at end of property +1.135 \ No newline at end of property Index: head/lang/php53/Makefile.ext =================================================================== --- head/lang/php53/Makefile.ext (revision 229564) +++ head/lang/php53/Makefile.ext (revision 229565) @@ -1,604 +1,627 @@ COMMENT= The ${PHP_MODNAME} shared extension for php USE_PHP= yes USE_PHPEXT= yes PHP_MODNAME= ${PKGNAMESUFFIX:S/-//} DEFAULT_PHP_VER=5 BROKEN_WITH_PHP=4 EXTSUBDIR= ${DISTNAME}/ext/${PHP_MODNAME} WRKSRC= ${WRKDIR}/${EXTSUBDIR} PATCHDIR= ${.CURDIR}/files PLIST= ${NONEXISTENT} EXTRACT_AFTER_ARGS?= | ${TAR} -xf - ${EXTSUBDIR} .if ${PHP_MODNAME} == "bcmath" CONFIGURE_ARGS+=--enable-bcmath PHP_HEADER_DIRS=libbcmath libbcmath/src .endif .if ${PHP_MODNAME} == "bz2" .if exists(/usr/bin/bzip2) BZ2BASE= /usr .else BZ2BASE= ${LOCALBASE} LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 .endif CONFIGURE_ARGS+=--with-bz2=${BZ2BASE} .endif .if ${PHP_MODNAME} == "calendar" CONFIGURE_ARGS+=--enable-calendar .endif .if ${PHP_MODNAME} == "ctype" CONFIGURE_ARGS+=--enable-ctype .endif .if ${PHP_MODNAME} == "curl" LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=--with-curl=${LOCALBASE} .endif .if ${PHP_MODNAME} == "dba" CONFIGURE_ARGS+=--enable-dba OPTIONS= CDB "cdb database support" on \ DB4 "Berkeley DB4 support" off \ GDBM "GDBM database support" off \ QDBM "QDBM database support" off \ INIFILE "INI file support" on \ FLATFILE "flatfile support" on PHP_HEADER_DIRS= libcdb libflatfile libinifile .endif .if ${PHP_MODNAME} == "dbase" CONFIGURE_ARGS+=--enable-dbase .endif .if ${PHP_MODNAME} == "dom" CONFIGURE_ARGS+=--enable-dom \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= spl USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "exif" CONFIGURE_ARGS+=--enable-exif .endif .if ${PHP_MODNAME} == "filter" -CONFIGURE_ARGS+=--enable-filter +CONFIGURE_ARGS+=--enable-filter \ + --with-pcre-dir=${LOCALBASE} + +USE_PHP= pcre +USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "ftp" CONFIGURE_ARGS+=--enable-ftp \ --with-openssl-dir=${OPENSSLBASE} LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "gd" LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg . if !defined(WITHOUT_X11) USE_XORG= xpm . endif CONFIGURE_ARGS+=--with-gd \ --with-freetype-dir=${LOCALBASE} \ --with-jpeg-dir=${LOCALBASE} \ --with-png-dir=${LOCALBASE} \ --with-zlib-dir=/usr . if !defined(WITHOUT_X11) CONFIGURE_ARGS+=--with-xpm-dir=${LOCALBASE} . endif OPTIONS= T1LIB "Include T1lib support" on \ TRUETYPE "Enable TrueType string function" on \ JIS "Enable JIS-mapped Japanese font support" off PHP_HEADER_DIRS=libgd .endif .if ${PHP_MODNAME} == "gettext" CONFIGURE_ARGS+=--with-gettext=${LOCALBASE} USE_GETTEXT= yes .endif .if ${PHP_MODNAME} == "gmp" LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4 CONFIGURE_ARGS+=--with-gmp=${LOCALBASE} .endif .if ${PHP_MODNAME} == "hash" CONFIGURE_ARGS+=--enable-hash .endif .if ${PHP_MODNAME} == "iconv" CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} \ --with-iconv-dir=${LOCALBASE} USE_ICONV= yes .endif .if ${PHP_MODNAME} == "imap" LIB_DEPENDS+= c-client4.9:${PORTSDIR}/mail/cclient CONFIGURE_ARGS+=--with-imap=${LOCALBASE} .if !defined(WITHOUT_SSL) CONFIGURE_ARGS+=--with-imap-ssl=${OPENSSLBASE} LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes .endif .endif .if ${PHP_MODNAME} == "interbase" CONFIGURE_ARGS+=--with-interbase=${LOCALBASE} USE_FIREBIRD= yes .endif .if ${PHP_MODNAME} == "json" CONFIGURE_ARGS+=--enable-json .endif .if ${PHP_MODNAME} == "ldap" CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} USE_OPENLDAP= yes . ifdef(WANT_OPENLDAP_SASL) CONFIGURE_ARGS+=--with-ldap-sasl . endif .endif .if ${PHP_MODNAME} == "mbstring" CONFIGURE_ARGS+=--enable-mbstring OPTIONS= REGEX "Enable multibyte regex support" on PHP_HEADER_DIRS=libmbfl libmbfl/filters libmbfl/mbfl libmbfl/nls oniguruma .endif .if ${PHP_MODNAME} == "mcrypt" LIB_DEPENDS+= mcrypt.8:${PORTSDIR}/security/libmcrypt CONFIGURE_ARGS+=--with-mcrypt=${LOCALBASE} USE_AUTOTOOLS= libltdl:15 .endif .if ${PHP_MODNAME} == "mhash" LIB_DEPENDS+= mhash.2:${PORTSDIR}/security/mhash CONFIGURE_ARGS+=--with-mhash=${LOCALBASE} .endif .if ${PHP_MODNAME} == "ming" LIB_DEPENDS+= ming.4:${PORTSDIR}/graphics/ming CONFIGURE_ARGS+=--with-ming=${LOCALBASE} .endif .if ${PHP_MODNAME} == "mssql" LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds-msdblib CONFIGURE_ARGS+=--with-mssql=${LOCALBASE} .endif .if ${PHP_MODNAME} == "mysql" CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} \ --with-zlib-dir=/usr USE_MYSQL= yes .endif .if ${PHP_MODNAME} == "mysqli" CONFIGURE_ARGS+=--with-mysqli=${LOCALBASE}/bin/mysql_config USE_MYSQL= yes BROKEN_WITH_MYSQL= 323 40 USE_PHP= spl USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "ncurses" CONFIGURE_ARGS+=--with-ncurses=/usr .endif .if ${PHP_MODNAME} == "oci8" BUILD_DEPENDS+= ${LOCALBASE}/oracle8-client/lib/libclntsh.a:${PORTSDIR}/databases/oracle8-client RUN_DEPENDS+= ${BUILD_DEPENDS} CONFIGURE_ARGS+=--with-oci8=${LOCALBASE}/oracle8-client .endif .if ${PHP_MODNAME} == "odbc" LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-unixODBC=${LOCALBASE} .endif .if ${PHP_MODNAME} == "openssl" CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "pcntl" CONFIGURE_ARGS+=--enable-pcntl .endif +.if ${PHP_MODNAME} == "pcre" +OPTIONS= BUNDLED_PCRE "Select if you use apache 2.0.x" off +.endif + .if ${PHP_MODNAME} == "pdo" CONFIGURE_ARGS+=--enable-pdo .endif .if ${PHP_MODNAME} == "pdo_dblib" CONFIGURE_ARGS+=--with-pdo-dblib=${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes OPTIONS= MSSQL "Enable Microsoft SQL Server support" off .endif .if ${PHP_MODNAME} == "pdo_firebird" CONFIGURE_ARGS+=--with-pdo-firebird=${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes USE_FIREBIRD= yes .endif .if ${PHP_MODNAME} == "pdo_mysql" CONFIGURE_ARGS+=--with-pdo-mysql=${LOCALBASE} \ --with-zlib-dir=/usr USE_MYSQL= yes USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_oci" BUILD_DEPENDS+= ${LOCALBASE}/oracle8-client/lib/libclntsh.a:${PORTSDIR}/databases/oracle8-client RUN_DEPENDS+= ${BUILD_DEPENDS} CONFIGURE_ARGS+=--with-pdo-oci=${LOCALBASE}/oracle8-client USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_odbc" LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-pdo-odbc=unixODBC,${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_pgsql" USE_PGSQL= yes CONFIGURE_ARGS+=--with-pdo-pgsql=${LOCALBASE} USE_PHP= pdo USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "pdo_sqlite" . if defined(WITH_SQLITE_PORT) USE_SQLITE= yes CONFIGURE_ARGS+=--with-pdo-sqlite=${LOCALBASE} . else CONFIGURE_ARGS+=--with-pdo-sqlite . endif USE_PHP= pdo USE_PHP_BUILD= yes PHP_HEADER_DIRS=sqlite/src .endif .if ${PHP_MODNAME} == "pgsql" USE_PGSQL= yes CONFIGURE_ARGS+=--with-pgsql=${LOCALBASE} .endif .if ${PHP_MODNAME} == "posix" CONFIGURE_ARGS+=--enable-posix .endif .if ${PHP_MODNAME} == "pspell" LIB_DEPENDS+= aspell.16:${PORTSDIR}/textproc/aspell CONFIGURE_ARGS+=--with-pspell=${LOCALBASE} # Ugly hack to load session before psell to avoid crashes USE_PHP= session USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "readline" CONFIGURE_ARGS+=--with-readline=/usr .endif .if ${PHP_MODNAME} == "recode" LIB_DEPENDS+= recode.3:${PORTSDIR}/converters/recode CONFIGURE_ARGS+=--with-recode=${LOCALBASE} .endif .if ${PHP_MODNAME} == "session" CONFIGURE_ARGS+=--enable-session .endif .if ${PHP_MODNAME} == "shmop" CONFIGURE_ARGS+=--enable-shmop .endif .if ${PHP_MODNAME} == "simplexml" CONFIGURE_ARGS+=--enable-simplexml \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 .endif .if ${PHP_MODNAME} == "snmp" CONFIGURE_ARGS+=--with-snmp=${LOCALBASE} \ --with-openssl-dir=${OPENSSLBASE} \ --enable-ucd-snmp-hack LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USE_OPENSSL= yes OPTIONS= SNMP4 "Use old UCD SNMP instead of the new NET SNMP" off .endif .if ${PHP_MODNAME} == "soap" CONFIGURE_ARGS+=--enable-soap \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= session USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "spl" CONFIGURE_ARGS+=--enable-spl \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 -USE_PHP= simplexml +USE_PHP= pcre simplexml USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "sockets" CONFIGURE_ARGS+=--enable-sockets .endif .if ${PHP_MODNAME} == "sqlite" CONFIGURE_ARGS+=--with-sqlite USE_PHP= session USE_PHP_BUILD= yes PHP_HEADER_DIRS=libsqlite/src USE_PHP= spl USE_PHP_BUILD= yes OPTIONS= UTF8 "Enable UTF-8 support" off .endif .if ${PHP_MODNAME} == "sybase_ct" LIB_DEPENDS+= ct.4:${PORTSDIR}/databases/freetds CONFIGURE_ARGS+=--with-sybase-ct=${LOCALBASE} .endif .if ${PHP_MODNAME} == "sysvmsg" CONFIGURE_ARGS+=--enable-sysvmsg .endif .if ${PHP_MODNAME} == "sysvsem" CONFIGURE_ARGS+=--enable-sysvsem .endif .if ${PHP_MODNAME} == "sysvshm" CONFIGURE_ARGS+=--enable-sysvshm .endif .if ${PHP_MODNAME} == "tidy" CONFIGURE_ARGS+=--with-tidy=${LOCALBASE} LIB_DEPENDS+= tidy-0.99.0:${PORTSDIR}/www/tidy-lib .endif .if ${PHP_MODNAME} == "tokenizer" CONFIGURE_ARGS+=--enable-tokenizer .endif .if ${PHP_MODNAME} == "wddx" CONFIGURE_ARGS+=--enable-wddx \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= xml session USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "xml" CONFIGURE_ARGS+=--enable-xml \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 .endif .if ${PHP_MODNAME} == "xmlreader" -CONFIGURE_ARGS+=--with-xmlreader \ +CONFIGURE_ARGS+=--enable-xmlreader \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 USE_PHP= dom USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "xmlrpc" CONFIGURE_ARGS+=--with-xmlrpc \ --with-libxml-dir=${LOCALBASE} \ --with-iconv-dir=${LOCALBASE} USE_ICONV= yes USE_GNOME= libxml2 PHP_HEADER_DIRS=libxmlrpc USE_PHP= xml USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "xmlwriter" -CONFIGURE_ARGS+=--with-xmlwriter \ +CONFIGURE_ARGS+=--enable-xmlwriter \ --with-libxml-dir=${LOCALBASE} USE_GNOME= libxml2 .endif .if ${PHP_MODNAME} == "xsl" CONFIGURE_ARGS+=--with-xsl=${LOCALBASE} USE_GNOME= libxslt USE_PHP= dom xml USE_PHP_BUILD= yes .endif .if ${PHP_MODNAME} == "zip" CONFIGURE_ARGS+=--enable-zip \ --with-zlib-dir=/usr .endif .if ${PHP_MODNAME} == "zlib" CONFIGURE_ARGS+=--with-zlib=/usr .endif .include .if ${PHP_MODNAME} == "dba" . if defined(WITHOUT_CDB) CONFIGURE_ARGS+=--without-cdb . endif . if defined(WITH_DB4) CONFIGURE_ARGS+=--with-db4=${LOCALBASE} USE_BDB= 40+ WITH_BDB_HIGHEST= yes . endif . if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+=--with-gdbm=${LOCALBASE} . endif . if defined(WITH_QDBM) LIB_DEPENDS+= qdbm.14:${PORTSDIR}/databases/qdbm CONFIGURE_ARGS+=--with-qdbm=${LOCALBASE} . endif . if defined(WITHOUT_INIFILE) -CONFIGURE_ARGS+=--without-inifile +CONFIGURE_ARGS+=--disable-inifile . endif . if defined(WITHOUT_FLATFILE) -CONFIGURE_ARGS+=--without-flatfile +CONFIGURE_ARGS+=--disable-flatfile . endif .endif .if ${PHP_MODNAME} == "gd" . if !defined(WITHOUT_T1LIB) LIB_DEPENDS+= t1.5:${PORTSDIR}/devel/t1lib CONFIGURE_ARGS+=--with-t1lib=${LOCALBASE} . endif . if !defined(WITHOUT_TRUETYPE) CONFIGURE_ARGS+=--enable-gd-native-ttf . endif . if defined(WITH_JIS) CONFIGURE_ARGS+=--enable-gd-jis-conv . endif .endif .if ${PHP_MODNAME} == "mbstring" . if defined(WITHOUT_REGEX) CONFIGURE_ARGS+=--disable-mbregex . endif .endif .if ${PHP_MODNAME} == "openssl" post-extract: @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 .endif .if ${PHP_MODNAME} == "oci8" || ${PHP_MODNAME} == "pdo_oci" pre-configure: @cd ${WRKSRC}; \ for lib in ${LOCALBASE}/oracle8-client/lib/libclntsh /usr/lib/libpthread; do \ /usr/bin/ar x $${lib}.a; \ done; \ /usr/bin/ar rcs liboci8.a *.o +.endif + +.if ${PHP_MODNAME} == "pcre" +. if defined(WITH_BUNDLED_PCRE) +CONFIGURE_ARGS+=--with-pcre-regex=yes + +PHP_HEADER_DIRS=pcrelib +. else +LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre + +CONFIGURE_ARGS+=--with-pcre-regex=${LOCALBASE} +. endif + +post-extract: + @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 .endif .if ${PHP_MODNAME} == "pdo_dblib" .if defined(WITH_MSSQL) LIB_DEPENDS+= sybdb.5:${PORTSDIR}/databases/freetds-msdblib .else LIB_DEPENDS+= ct.4:${PORTSDIR}/databases/freetds .endif .endif .if ${PHP_MODNAME} == "snmp" . if defined(WITH_SNMP4) || exists(${LOCALBASE}/lib/libsnmp.so.4) LIB_DEPENDS+= snmp.4:${PORTSDIR}/net-mgmt/net-snmp4 . else LIB_DEPENDS+= netsnmp.16:${PORTSDIR}/net-mgmt/net-snmp . endif .endif .if ${PHP_MODNAME} == "sqlite" . if defined(WITH_UTF8) CONFIGURE_ARGS+=--enable-sqlite-utf8 . endif .endif .if ${PHP_MODNAME} == "xml" post-extract: @${MKDIR} ${WRKSRC}/ext/xml @${CP} ${WRKSRC}/expat_compat.h ${WRKSRC}/ext/xml .endif .if ${PHP_MODNAME} == "zlib" post-extract: @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 .endif Property changes on: head/lang/php53/Makefile.ext ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.61 \ No newline at end of property +1.62 \ No newline at end of property Index: head/lang/php53/distinfo =================================================================== --- head/lang/php53/distinfo (revision 229564) +++ head/lang/php53/distinfo (revision 229565) @@ -1,9 +1,9 @@ -MD5 (php-5.2.8.tar.bz2) = 8760a833cf10433d3e72271ab0d0eccf -SHA256 (php-5.2.8.tar.bz2) = a70600e13410213a637f1c9825e9c0d45c64de8cefb1929f8f5aa761b20b2b67 -SIZE (php-5.2.8.tar.bz2) = 9827180 -MD5 (suhosin-patch-5.2.7-0.9.6.3.patch.gz) = d455c3dd5b652046dbac2951a58f64fa -SHA256 (suhosin-patch-5.2.7-0.9.6.3.patch.gz) = 85e6262f53014e393977d1efed2d3a7e686767a07f96b14b2c3f126f694aee46 -SIZE (suhosin-patch-5.2.7-0.9.6.3.patch.gz) = 23125 +MD5 (php-5.2.9.tar.bz2) = 280d6cda7f72a4fc6de42fda21ac2db7 +SHA256 (php-5.2.9.tar.bz2) = 30166dda7c3d8bdcb2753ab79260be25454cdf3673d681b7651f8d32006ee2a6 +SIZE (php-5.2.9.tar.bz2) = 10203122 +MD5 (suhosin-patch-5.2.9-0.9.7.patch.gz) = f80dbcd2773a98da1dab0c73c3654895 +SHA256 (suhosin-patch-5.2.9-0.9.7.patch.gz) = 6f7a86cff1cdd1007ba248292f6adfe3b7c01adfed56c2e937c87c60210bbc38 +SIZE (suhosin-patch-5.2.9-0.9.7.patch.gz) = 23026 MD5 (php-5.2.8-mail-header.patch) = 74bf3a2a123c284f908c4f5483ebe886 SHA256 (php-5.2.8-mail-header.patch) = 9bd306145153a371f619d89996cb329bdc36791b22a50daf4afe7cc69c46dccb SIZE (php-5.2.8-mail-header.patch) = 3381 Property changes on: head/lang/php53/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.42 \ No newline at end of property +1.43 \ No newline at end of property Index: head/lang/php53/files/patch-ext_date_lib_timelib_structs.h =================================================================== --- head/lang/php53/files/patch-ext_date_lib_timelib_structs.h (revision 229564) +++ head/lang/php53/files/patch-ext_date_lib_timelib_structs.h (nonexistent) @@ -1,11 +0,0 @@ ---- ext/date/lib/timelib_structs.h.orig Wed Dec 7 11:11:39 2005 -+++ ext/date/lib/timelib_structs.h Wed Dec 7 11:11:53 2005 -@@ -21,7 +21,7 @@ - #ifndef __TIMELIB_STRUCTS_H__ - #define __TIMELIB_STRUCTS_H__ - --#include -+#include "timelib_config.h" - - #ifdef HAVE_SYS_TYPES_H - #include Property changes on: head/lang/php53/files/patch-ext_date_lib_timelib_structs.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/php53/pkg-plist =================================================================== --- head/lang/php53/pkg-plist (revision 229564) +++ head/lang/php53/pkg-plist (revision 229565) @@ -1,218 +1,209 @@ %%CLI%%bin/php %%CGI%%bin/php-cgi bin/php-config bin/phpize etc/php.conf etc/php.ini-dist etc/php.ini-recommended include/php/TSRM/TSRM.h include/php/TSRM/acconfig.h include/php/TSRM/readdir.h include/php/TSRM/tsrm_config.h include/php/TSRM/tsrm_config.w32.h include/php/TSRM/tsrm_config_common.h include/php/TSRM/tsrm_nw.h include/php/TSRM/tsrm_strtok_r.h include/php/TSRM/tsrm_virtual_cwd.h include/php/TSRM/tsrm_win32.h include/php/Zend/FlexLexer.h include/php/Zend/acconfig.h include/php/Zend/zend.h include/php/Zend/zend_API.h include/php/Zend/zend_alloc.h include/php/Zend/zend_builtin_functions.h include/php/Zend/zend_compile.h include/php/Zend/zend_config.h include/php/Zend/zend_config.nw.h include/php/Zend/zend_config.w32.h include/php/Zend/zend_constants.h include/php/Zend/zend_dynamic_array.h include/php/Zend/zend_errors.h include/php/Zend/zend_exceptions.h include/php/Zend/zend_execute.h include/php/Zend/zend_extensions.h include/php/Zend/zend_fast_cache.h include/php/Zend/zend_globals.h include/php/Zend/zend_globals_macros.h include/php/Zend/zend_hash.h include/php/Zend/zend_highlight.h include/php/Zend/zend_indent.h include/php/Zend/zend_ini.h include/php/Zend/zend_ini_parser.h include/php/Zend/zend_ini_scanner.h include/php/Zend/zend_interfaces.h include/php/Zend/zend_istdiostream.h include/php/Zend/zend_iterators.h include/php/Zend/zend_language_parser.h include/php/Zend/zend_language_scanner.h include/php/Zend/zend_list.h include/php/Zend/zend_llist.h include/php/Zend/zend_modules.h include/php/Zend/zend_multibyte.h include/php/Zend/zend_multiply.h include/php/Zend/zend_object_handlers.h include/php/Zend/zend_objects.h include/php/Zend/zend_objects_API.h include/php/Zend/zend_operators.h include/php/Zend/zend_ptr_stack.h include/php/Zend/zend_qsort.h include/php/Zend/zend_stack.h include/php/Zend/zend_static_allocator.h include/php/Zend/zend_stream.h include/php/Zend/zend_strtod.h include/php/Zend/zend_ts_hash.h include/php/Zend/zend_types.h include/php/Zend/zend_variables.h include/php/Zend/zend_vm.h include/php/Zend/zend_vm_def.h include/php/Zend/zend_vm_execute.h include/php/Zend/zend_vm_opcodes.h include/php/ext/date/lib/timelib.h include/php/ext/date/lib/timelib_config.h include/php/ext/date/lib/timelib_structs.h include/php/ext/date/php_date.h include/php/ext/libxml/php_libxml.h -include/php/ext/pcre/pcrelib/config.h -include/php/ext/pcre/pcrelib/pcre.h -include/php/ext/pcre/pcrelib/pcre_internal.h -include/php/ext/pcre/pcrelib/pcreposix.h -include/php/ext/pcre/pcrelib/ucp.h -include/php/ext/pcre/pcrelib/ucptable.h -include/php/ext/pcre/php_pcre.h include/php/ext/standard/base64.h include/php/ext/standard/basic_functions.h include/php/ext/standard/crc32.h include/php/ext/standard/credits.h include/php/ext/standard/credits_ext.h include/php/ext/standard/credits_sapi.h include/php/ext/standard/css.h include/php/ext/standard/cyr_convert.h include/php/ext/standard/datetime.h include/php/ext/standard/dl.h include/php/ext/standard/dns.h include/php/ext/standard/exec.h include/php/ext/standard/file.h include/php/ext/standard/flock_compat.h include/php/ext/standard/fsock.h include/php/ext/standard/head.h include/php/ext/standard/html.h include/php/ext/standard/info.h include/php/ext/standard/md5.h include/php/ext/standard/microtime.h include/php/ext/standard/pack.h include/php/ext/standard/pageinfo.h include/php/ext/standard/php_array.h include/php/ext/standard/php_assert.h include/php/ext/standard/php_browscap.h include/php/ext/standard/php_crypt.h include/php/ext/standard/php_dir.h include/php/ext/standard/php_ext_syslog.h include/php/ext/standard/php_filestat.h include/php/ext/standard/php_fopen_wrappers.h include/php/ext/standard/php_ftok.h include/php/ext/standard/php_http.h include/php/ext/standard/php_image.h include/php/ext/standard/php_incomplete_class.h include/php/ext/standard/php_iptc.h include/php/ext/standard/php_lcg.h include/php/ext/standard/php_link.h include/php/ext/standard/php_mail.h include/php/ext/standard/php_math.h include/php/ext/standard/php_metaphone.h include/php/ext/standard/php_rand.h include/php/ext/standard/php_smart_str.h include/php/ext/standard/php_smart_str_public.h include/php/ext/standard/php_standard.h include/php/ext/standard/php_string.h include/php/ext/standard/php_type.h include/php/ext/standard/php_uuencode.h include/php/ext/standard/php_var.h include/php/ext/standard/php_versioning.h include/php/ext/standard/proc_open.h include/php/ext/standard/quot_print.h include/php/ext/standard/reg.h include/php/ext/standard/scanf.h include/php/ext/standard/sha1.h include/php/ext/standard/streamsfuncs.h include/php/ext/standard/uniqid.h include/php/ext/standard/url.h include/php/ext/standard/url_scanner.h include/php/ext/standard/url_scanner_ex.h @exec touch %D/include/php/ext/php_config.h @unexec [ -s %D/include/php/ext/php_config.h ] || rm %D/include/php/ext/php_config.h include/php/main/SAPI.h include/php/main/build-defs.h include/php/main/config.w32.h include/php/main/fopen_wrappers.h include/php/main/logos.h include/php/main/php.h include/php/main/php3_compat.h include/php/main/php_compat.h include/php/main/php_config.h include/php/main/php_content_types.h include/php/main/php_globals.h include/php/main/php_ini.h include/php/main/php_logos.h include/php/main/php_main.h include/php/main/php_memory_streams.h include/php/main/php_network.h include/php/main/php_open_temporary_file.h include/php/main/php_output.h include/php/main/php_reentrancy.h include/php/main/php_regex.h include/php/main/php_scandir.h include/php/main/php_streams.h include/php/main/php_syslog.h include/php/main/php_ticks.h include/php/main/php_variables.h include/php/main/php_version.h include/php/main/rfc1867.h include/php/main/safe_mode.h include/php/main/snprintf.h include/php/main/spprintf.h include/php/main/streams/php_stream_context.h include/php/main/streams/php_stream_filter_api.h include/php/main/streams/php_stream_mmap.h include/php/main/streams/php_streams_int.h include/php/main/streams/php_stream_transport.h include/php/main/streams/php_stream_userspace.h include/php/main/streams/php_stream_plain_wrapper.h %%SUHOSIN%%include/php/main/suhosin_globals.h %%SUHOSIN%%include/php/main/suhosin_logo.h %%SUHOSIN%%include/php/main/suhosin_patch.h include/php/main/win95nt.h include/php/regex/cclass.h include/php/regex/cname.h include/php/regex/regex.h include/php/regex/regex2.h include/php/regex/regex_extra.h include/php/regex/utils.h lib/php/build/Makefile.global lib/php/build/acinclude.m4 lib/php/build/config.guess lib/php/build/config.sub lib/php/build/libtool.m4 lib/php/build/ltmain.sh lib/php/build/mkdep.awk lib/php/build/phpize.m4 lib/php/build/run-tests.php lib/php/build/scan_makefile_in.awk lib/php/build/shtool %%APACHE%%%%APACHEMODDIR%%/%%AP_MODULE%% %%APACHE%%@exec %D/sbin/apxs -e -a -n %%AP_NAME%% %f %%APACHE%%@unexec %D/sbin/apxs -e -A -n %%AP_NAME%% %f @dirrm include/php/TSRM @dirrm include/php/Zend @dirrm include/php/ext/date/lib @dirrm include/php/ext/date @dirrm include/php/ext/libxml -@dirrm include/php/ext/pcre/pcrelib -@dirrm include/php/ext/pcre @dirrm include/php/ext/standard @dirrmtry include/php/ext @dirrm include/php/main/streams @dirrm include/php/main @dirrm include/php/regex @dirrmtry include/php @dirrm lib/php/build @dirrmtry lib/php Property changes on: head/lang/php53/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/mail/php5-imap/files/patch-php_imap.c =================================================================== --- head/mail/php5-imap/files/patch-php_imap.c (revision 229564) +++ head/mail/php5-imap/files/patch-php_imap.c (nonexistent) @@ -1,11 +0,0 @@ ---- php_imap.c.orig 2008-12-30 11:06:18.000000000 +0100 -+++ php_imap.c 2008-12-30 11:06:56.000000000 +0100 -@@ -2172,7 +2172,7 @@ - - /* rfc822_parse_adrlist() modifies passed string. Copy it. */ - str_copy = estrndup(Z_STRVAL_PP(str), Z_STRLEN_PP(str)); -- rfc822_parse_adrlist(&env->to, str_copy, defaulthost); -+ rfc822_parse_adrlist(&env->to, str_copy, Z_STRVAL_PP(defaulthost)); - efree(str_copy); - - array_init(return_value); Property changes on: head/mail/php5-imap/files/patch-php_imap.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/net/php5-ldap/Makefile =================================================================== --- head/net/php5-ldap/Makefile (revision 229564) +++ head/net/php5-ldap/Makefile (revision 229565) @@ -1,15 +1,14 @@ # New ports collection makefile for: php5-ldap # Date created: 7 Jul 2004 # Whom: Alex Dupre # # $FreeBSD$ # -PORTREVISION= 1 CATEGORIES= net MASTERDIR= ${.CURDIR}/../../lang/php5 PKGNAMESUFFIX= -ldap .include "${MASTERDIR}/Makefile" Property changes on: head/net/php5-ldap/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/net-mgmt/php5-snmp/Makefile =================================================================== --- head/net-mgmt/php5-snmp/Makefile (revision 229564) +++ head/net-mgmt/php5-snmp/Makefile (revision 229565) @@ -1,15 +1,14 @@ # New ports collection makefile for: php5-snmp # Date created: 7 Jul 2004 # Whom: Alex Dupre # # $FreeBSD$ # -PORTREVISION= 2 CATEGORIES= net-mgmt MASTERDIR= ${.CURDIR}/../../lang/php5 PKGNAMESUFFIX= -snmp .include "${MASTERDIR}/Makefile" Property changes on: head/net-mgmt/php5-snmp/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/security/php5-filter/files/patch-config.m4 =================================================================== --- head/security/php5-filter/files/patch-config.m4 (nonexistent) +++ head/security/php5-filter/files/patch-config.m4 (revision 229565) @@ -0,0 +1,25 @@ +--- config.m4.orig 2009-03-06 08:25:45.000000000 +0100 ++++ config.m4 2009-03-06 08:28:10.000000000 +0100 +@@ -19,7 +19,7 @@ + CPPFLAGS=$INCLUDES + AC_EGREP_CPP(yes,[ + #include
+-#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE) ++#if defined(HAVE_BUNDLED_PCRE) + yes + #endif + ],[ +@@ -27,11 +27,12 @@ + ],[ + AC_EGREP_CPP(yes,[ + #include
+-#if defined(HAVE_PCRE) && !defined(COMPILE_DL_PCRE) ++#if defined(HAVE_PCRE) + yes + #endif + ],[ + PHP_PCRE_REGEX=pecl ++ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include) + ],[ + PHP_PCRE_REGEX=no + ]) Property changes on: head/security/php5-filter/files/patch-config.m4 ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property