diff --git a/www/mod_php3/distinfo b/www/mod_php3/distinfo index a56db931e857..8ad7c6cee8b1 100644 --- a/www/mod_php3/distinfo +++ b/www/mod_php3/distinfo @@ -1,8 +1,8 @@ MD5 (apache_1.3.9.tar.gz) = 880af89251943c67e3614bf2ffb89b32 MD5 (php-3.0.12.tar.gz) = 0d3b9517f8af17f1cd8c994d6fa26dd7 -MD5 (mod_ssl-2.4.2-1.3.9.tar.gz) = e30f679aeb4e24f1c4d4cefc6fb10c39 +MD5 (mod_ssl-2.4.4-1.3.9.tar.gz) = 7949d64498d973987d4d9dacd620d06f MD5 (php_configure.diff) = 69d8e2e6d49d9e37aab6e8d9765bcb1d MD5 (php_gd.c.diff) = da5f001772417a1a65711be55f1cd38c MD5 (php_php3_gd.h.diff) = d9da6e7fecafc5a57dcd320a943c22fd MD5 (php_pdf.c.diff) = 9468644eeade2d03e7f5409f7108ea4b MD5 (php_snmp.c.diff) = ece35a4e9349df144f596a10fc1df4c6 diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index 98e9bdbbbb40..96ab92fc9d80 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -1,176 +1,176 @@ #!/bin/sh if [ "${BATCH}" ]; then ${MKDIR} ${WRKDIRPREFIX}${CURDIR} ${TOUCH} ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit fi if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit fi /usr/bin/dialog --title "configuration options" --clear \ --checklist "\n\ Please select desired options:" -1 -1 14 \ tuning "Apache: performance tuning" OFF \ modssl "Apache: SSL support" OFF \ GD "PHP: GD library support" OFF \ FreeType "PHP: TrueType font rendering (implies GD)" OFF \ zlib "PHP: zlib library support" ON \ mcrypt "PHP: Encryption support" OFF \ mhash "PHP: Crypto-hashing support" OFF \ pdflib "PHP: pdflib support (implies zlib)" OFF \ IMAP "PHP: IMAP support" OFF \ MySQL "PHP: MySQL database support" ON \ PostgreSQL "PHP: PostgreSQL database support" OFF \ mSQL "PHP: mSQL database support" OFF \ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? if [ -s /tmp/checklist.tmp.$$ ]; then set `cat /tmp/checklist.tmp.$$` fi rm -f /tmp/checklist.tmp.$$ case $retval in 0) if [ -z "$*" ]; then echo "Nothing selected" fi ;; 1) echo "Cancel pressed." exit 1 ;; esac ${MKDIR} -p ${WRKDIRPREFIX}${CURDIR} exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc while [ "$1" ]; do case $1 in \"tuning\") echo "APACHE_PERF_TUNING= YES" ;; \"GD\") echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; \"FreeType\") echo "LIB_DEPENDS+= ttf.3:\${PORTSDIR}/print/freetype" echo "PHP_CONF_ARGS+= --with-ttf=\${PREFIX}" if [ -z "$GD" ]; then set $* \"GD\" fi ;; \"zlib\") echo "PHP_CONF_ARGS+= --with-zlib" ZLIB=1 ;; \"mcrypt\") echo "LIB_DEPENDS+= mcrypt.2:\${PORTSDIR}/security/libmcrypt" echo "PHP_CONF_ARGS+= --with-mcrypt=\${PREFIX}" ;; \"mhash\") echo "LIB_DEPENDS+= mhash.1:\${PORTSDIR}/security/mhash" echo "PHP_CONF_ARGS+= --with-mhash=\${PREFIX}" ;; \"pdflib\") echo "LIB_DEPENDS+= pdf.2:\${PORTSDIR}/print/pdflib" echo "PHP_CONF_ARGS+= --with-pdflib=\${PREFIX} \\" echo " --with-jpeg-dir=\${PREFIX} \\" echo " --with-tiff-dir=\${PREFIX}" if [ -z "$ZLIB" ]; then set $* \"zlib\" fi ;; \"IMAP\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libc-client4.a:\${PORTSDIR}/mail/imap-uw" echo "PHP_CONF_ARGS+= --with-imap=\${PREFIX}" ;; \"MySQL\") echo "LIB_DEPENDS+= mysqlclient.6:\${PORTSDIR}/databases/mysql322-client" echo "PHP_CONF_ARGS+= --with-mysql=\${PREFIX}" ;; \"PostgreSQL\") echo "BUILD_DEPENDS+= \${PREFIX}/pgsql/bin/psql:\${PORTSDIR}/databases/postgresql" echo "PHP_CONF_ARGS+= --with-pgsql=\${PREFIX}/pgsql" ;; \"mSQL\") echo "BUILD_DEPENDS+= msql:\${PORTSDIR}/databases/msql" echo "PHP_CONF_ARGS+= --with-msql=\${PREFIX}" ;; \"dBase\") echo "PHP_CONF_ARGS+= --with-dbase" ;; \"OpenLDAP\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libldap.a:\${PORTSDIR}/net/openldap" echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" ;; \"SNMP\") echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/ucd-snmp" echo "PHP_CONF_ARGS+= --with-snmp=\${PREFIX} --enable-ucd-snmp-hack" ;; \"XML\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libexpat.a:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmlparse.h:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" echo "PHP_CONF_ARGS+= --with-xml=\${PREFIX}" ;; \"modssl\") cat << EOF PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} BUILD_DEPENDS+= openssl:\${PORTSDIR}/security/openssl \\ mm-config:\${PORTSDIR}/devel/mm \\ \${PREFIX}/lib/libssl.a:\${PORTSDIR}/security/openssl \\ \${PREFIX}/lib/libcrypto.a:\${PORTSDIR}/security/openssl \\ \${PREFIX}/lib/libmm.a:\${PORTSDIR}/devel/mm RUN_DEPENDS+= openssl:\${PORTSDIR}/security/openssl -VERSION_MODSSL= 2.4.2 +VERSION_MODSSL= 2.4.4 RESTRICTED= "Contains cryptography" CONFIGURE_ARGS+=--enable-module=ssl \\ --enable-module=define CONFIGURE_ENV+= SSL_BASE='SYSTEM' EAPI_MM='SYSTEM' PATH="\${PREFIX}/bin:\${PATH}" PLIST= \${PKGDIR}/PLIST.modssl SSL= ssl TYPE= test CRT= KEY= pre-patch: @cd \${WRKDIR}/mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE} \\ && \${ECHO_MSG} "===> Applying mod_ssl-\${VERSION_MODSSL} extension" \\ && ./configure --with-apache=../\${DISTNAME} --expert post-patch: @cd \${WRKSRC} \\ && find . -type f -name "*.orig" -print | xargs \${RM} -f post-build: @cd \${WRKSRC} \\ && \${ECHO_MSG} "===> Creating Dummy Certificate for Server (SnakeOil)" \\ && \${ECHO_MSG} " [use 'make certificate' to create a real one]" \\ && \${MAKE} certificate TYPE=dummy >/dev/null 2>&1 certificate: @cd \${WRKSRC} \\ && \${ECHO_MSG} "===> Creating Test Certificate for Server" \\ && \${MAKE} certificate TYPE=\$(TYPE) CRT=\$(CRT) KEY=\$(KEY) EOF ;; esac shift done diff --git a/www/mod_php4/distinfo b/www/mod_php4/distinfo index 4d30051e0ba8..2a822e22b5a5 100644 --- a/www/mod_php4/distinfo +++ b/www/mod_php4/distinfo @@ -1,4 +1,4 @@ MD5 (apache_1.3.9.tar.gz) = 880af89251943c67e3614bf2ffb89b32 MD5 (php-4.0b2.tar.gz) = 509c245c2ec36d227985dd550e94240c -MD5 (mod_ssl-2.4.2-1.3.9.tar.gz) = e30f679aeb4e24f1c4d4cefc6fb10c39 +MD5 (mod_ssl-2.4.4-1.3.9.tar.gz) = 7949d64498d973987d4d9dacd620d06f MD5 (php4_snmp.c.diff) = f20420b92b4d206f8ec40d2d1c7c5d55 diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 47fb3b3e28ab..f6da089124a9 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -1,188 +1,188 @@ #!/bin/sh if [ "${BATCH}" ]; then ${MKDIR} ${WRKDIRPREFIX}${CURDIR} ${TOUCH} ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit fi if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit fi /usr/bin/dialog --title "configuration options" --clear \ --checklist "\n\ Please select desired options:" -1 -1 14 \ tuning "Apache: performance tuning" OFF \ modssl "Apache: SSL support" OFF \ GD "PHP: GD library support" OFF \ FreeType "PHP: TrueType font rendering (implies GD)" OFF \ zlib "PHP: zlib library support" ON \ mcrypt "PHP: Encryption support" OFF \ mhash "PHP: Crypto-hashing support" OFF \ pdflib "PHP: pdflib support (implies zlib)" OFF \ IMAP "PHP: IMAP support" OFF \ MySQL "PHP: MySQL database support" ON \ PostgreSQL "PHP: PostgreSQL database support" OFF \ mSQL "PHP: mSQL database support" OFF \ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? if [ -s /tmp/checklist.tmp.$$ ]; then set `cat /tmp/checklist.tmp.$$` fi rm -f /tmp/checklist.tmp.$$ case $retval in 0) if [ -z "$*" ]; then echo "Nothing selected" fi ;; 1) echo "Cancel pressed." exit 1 ;; esac ${MKDIR} ${WRKDIRPREFIX}${CURDIR} exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc while [ "$1" ]; do case $1 in \"tuning\") echo "APACHE_PERF_TUNING= YES" ;; \"GD\") echo "GD is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; \"FreeType\") echo "FreeType is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "LIB_DEPENDS+= ttf.3:\${PORTSDIR}/print/freetype" echo "PHP_CONF_ARGS+= --with-ttf=\${PREFIX}" if [ -z "$GD" ]; then set $* \"GD\" fi ;; \"zlib\") echo "PHP_CONF_ARGS+= --with-zlib" ZLIB=1 ;; \"mcrypt\") echo "LIB_DEPENDS+= mcrypt.2:\${PORTSDIR}/security/libmcrypt" echo "PHP_CONF_ARGS+= --with-mcrypt=\${PREFIX}" ;; \"mhash\") echo "LIB_DEPENDS+= mhash.1:\${PORTSDIR}/security/mhash" echo "PHP_CONF_ARGS+= --with-mhash=\${PREFIX}" ;; \"pdflib\") echo "pdflib is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "LIB_DEPENDS+= pdf.2:\${PORTSDIR}/print/pdflib" echo "PHP_CONF_ARGS+= --with-pdflib=\${PREFIX} \\" echo " --with-jpeg-dir=\${PREFIX} \\" echo " --with-tiff-dir=\${PREFIX}" if [ -z "$ZLIB" ]; then set $* \"zlib\" fi ;; \"IMAP\") echo "IMAP is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libc-client4.a:\${PORTSDIR}/mail/imap-uw" echo "PHP_CONF_ARGS+= --with-imap=\${PREFIX}" ;; \"MySQL\") echo "LIB_DEPENDS+= mysqlclient.6:\${PORTSDIR}/databases/mysql322-client" echo "PHP_CONF_ARGS+= --with-mysql=\${PREFIX}" ;; \"PostgreSQL\") echo "BUILD_DEPENDS+= \${PREFIX}/pgsql/bin/psql:\${PORTSDIR}/databases/postgresql" echo "PHP_CONF_ARGS+= --with-pgsql=\${PREFIX}/pgsql" ;; \"mSQL\") echo "BUILD_DEPENDS+= msql:\${PORTSDIR}/databases/msql" echo "PHP_CONF_ARGS+= --with-msql=\${PREFIX}" ;; \"dBase\") echo "PHP_CONF_ARGS+= --with-dbase" ;; \"OpenLDAP\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libldap.a:\${PORTSDIR}/net/openldap" echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" ;; \"SNMP\") echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/ucd-snmp" echo "PHP_CONF_ARGS+= --with-snmp=\${PREFIX} --enable-ucd-snmp-hack" ;; \"XML\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libexpat.a:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmlparse.h:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" echo "PHP_CONF_ARGS+= --with-xml=\${PREFIX}" ;; \"modssl\") cat << EOF PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} BUILD_DEPENDS+= openssl:\${PORTSDIR}/security/openssl \\ mm-config:\${PORTSDIR}/devel/mm \\ \${PREFIX}/lib/libssl.a:\${PORTSDIR}/security/openssl \\ \${PREFIX}/lib/libcrypto.a:\${PORTSDIR}/security/openssl \\ \${PREFIX}/lib/libmm.a:\${PORTSDIR}/devel/mm RUN_DEPENDS+= openssl:\${PORTSDIR}/security/openssl -VERSION_MODSSL= 2.4.2 +VERSION_MODSSL= 2.4.4 RESTRICTED= "Contains cryptography" CONFIGURE_ARGS+=--enable-module=ssl \\ --enable-module=define CONFIGURE_ENV+= SSL_BASE='SYSTEM' EAPI_MM='SYSTEM' PATH="\${PREFIX}/bin:\${PATH}" PLIST= \${PKGDIR}/PLIST.modssl SSL= ssl TYPE= test CRT= KEY= pre-patch: @cd \${WRKDIR}/mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE} \\ && \${ECHO_MSG} "===> Applying mod_ssl-\${VERSION_MODSSL} extension" \\ && ./configure --with-apache=../\${DISTNAME} --expert post-patch: @cd \${WRKSRC} \\ && find . -type f -name "*.orig" -print | xargs \${RM} -f post-build: @cd \${WRKSRC} \\ && \${ECHO_MSG} "===> Creating Dummy Certificate for Server (SnakeOil)" \\ && \${ECHO_MSG} " [use 'make certificate' to create a real one]" \\ && \${MAKE} certificate TYPE=dummy >/dev/null 2>&1 certificate: @cd \${WRKSRC} \\ && \${ECHO_MSG} "===> Creating Test Certificate for Server" \\ && \${MAKE} certificate TYPE=\$(TYPE) CRT=\$(CRT) KEY=\$(KEY) EOF ;; esac shift done diff --git a/www/mod_php5/distinfo b/www/mod_php5/distinfo index 4d30051e0ba8..2a822e22b5a5 100644 --- a/www/mod_php5/distinfo +++ b/www/mod_php5/distinfo @@ -1,4 +1,4 @@ MD5 (apache_1.3.9.tar.gz) = 880af89251943c67e3614bf2ffb89b32 MD5 (php-4.0b2.tar.gz) = 509c245c2ec36d227985dd550e94240c -MD5 (mod_ssl-2.4.2-1.3.9.tar.gz) = e30f679aeb4e24f1c4d4cefc6fb10c39 +MD5 (mod_ssl-2.4.4-1.3.9.tar.gz) = 7949d64498d973987d4d9dacd620d06f MD5 (php4_snmp.c.diff) = f20420b92b4d206f8ec40d2d1c7c5d55 diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index 47fb3b3e28ab..f6da089124a9 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -1,188 +1,188 @@ #!/bin/sh if [ "${BATCH}" ]; then ${MKDIR} ${WRKDIRPREFIX}${CURDIR} ${TOUCH} ${WRKDIRPREFIX}${CURDIR}/Makefile.inc exit fi if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit fi /usr/bin/dialog --title "configuration options" --clear \ --checklist "\n\ Please select desired options:" -1 -1 14 \ tuning "Apache: performance tuning" OFF \ modssl "Apache: SSL support" OFF \ GD "PHP: GD library support" OFF \ FreeType "PHP: TrueType font rendering (implies GD)" OFF \ zlib "PHP: zlib library support" ON \ mcrypt "PHP: Encryption support" OFF \ mhash "PHP: Crypto-hashing support" OFF \ pdflib "PHP: pdflib support (implies zlib)" OFF \ IMAP "PHP: IMAP support" OFF \ MySQL "PHP: MySQL database support" ON \ PostgreSQL "PHP: PostgreSQL database support" OFF \ mSQL "PHP: mSQL database support" OFF \ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? if [ -s /tmp/checklist.tmp.$$ ]; then set `cat /tmp/checklist.tmp.$$` fi rm -f /tmp/checklist.tmp.$$ case $retval in 0) if [ -z "$*" ]; then echo "Nothing selected" fi ;; 1) echo "Cancel pressed." exit 1 ;; esac ${MKDIR} ${WRKDIRPREFIX}${CURDIR} exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc while [ "$1" ]; do case $1 in \"tuning\") echo "APACHE_PERF_TUNING= YES" ;; \"GD\") echo "GD is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; \"FreeType\") echo "FreeType is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "LIB_DEPENDS+= ttf.3:\${PORTSDIR}/print/freetype" echo "PHP_CONF_ARGS+= --with-ttf=\${PREFIX}" if [ -z "$GD" ]; then set $* \"GD\" fi ;; \"zlib\") echo "PHP_CONF_ARGS+= --with-zlib" ZLIB=1 ;; \"mcrypt\") echo "LIB_DEPENDS+= mcrypt.2:\${PORTSDIR}/security/libmcrypt" echo "PHP_CONF_ARGS+= --with-mcrypt=\${PREFIX}" ;; \"mhash\") echo "LIB_DEPENDS+= mhash.1:\${PORTSDIR}/security/mhash" echo "PHP_CONF_ARGS+= --with-mhash=\${PREFIX}" ;; \"pdflib\") echo "pdflib is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "LIB_DEPENDS+= pdf.2:\${PORTSDIR}/print/pdflib" echo "PHP_CONF_ARGS+= --with-pdflib=\${PREFIX} \\" echo " --with-jpeg-dir=\${PREFIX} \\" echo " --with-tiff-dir=\${PREFIX}" if [ -z "$ZLIB" ]; then set $* \"zlib\" fi ;; \"IMAP\") echo "IMAP is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libc-client4.a:\${PORTSDIR}/mail/imap-uw" echo "PHP_CONF_ARGS+= --with-imap=\${PREFIX}" ;; \"MySQL\") echo "LIB_DEPENDS+= mysqlclient.6:\${PORTSDIR}/databases/mysql322-client" echo "PHP_CONF_ARGS+= --with-mysql=\${PREFIX}" ;; \"PostgreSQL\") echo "BUILD_DEPENDS+= \${PREFIX}/pgsql/bin/psql:\${PORTSDIR}/databases/postgresql" echo "PHP_CONF_ARGS+= --with-pgsql=\${PREFIX}/pgsql" ;; \"mSQL\") echo "BUILD_DEPENDS+= msql:\${PORTSDIR}/databases/msql" echo "PHP_CONF_ARGS+= --with-msql=\${PREFIX}" ;; \"dBase\") echo "PHP_CONF_ARGS+= --with-dbase" ;; \"OpenLDAP\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libldap.a:\${PORTSDIR}/net/openldap" echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" ;; \"SNMP\") echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/ucd-snmp" echo "PHP_CONF_ARGS+= --with-snmp=\${PREFIX} --enable-ucd-snmp-hack" ;; \"XML\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libexpat.a:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmlparse.h:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" echo "PHP_CONF_ARGS+= --with-xml=\${PREFIX}" ;; \"modssl\") cat << EOF PKGNAME= apache+php+mod_ssl-\${VERSION_APACHE}+\${VERSION_PHP}+\${VERSION_MODSSL} DISTFILES+= mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE}\${EXTRACT_SUFX} BUILD_DEPENDS+= openssl:\${PORTSDIR}/security/openssl \\ mm-config:\${PORTSDIR}/devel/mm \\ \${PREFIX}/lib/libssl.a:\${PORTSDIR}/security/openssl \\ \${PREFIX}/lib/libcrypto.a:\${PORTSDIR}/security/openssl \\ \${PREFIX}/lib/libmm.a:\${PORTSDIR}/devel/mm RUN_DEPENDS+= openssl:\${PORTSDIR}/security/openssl -VERSION_MODSSL= 2.4.2 +VERSION_MODSSL= 2.4.4 RESTRICTED= "Contains cryptography" CONFIGURE_ARGS+=--enable-module=ssl \\ --enable-module=define CONFIGURE_ENV+= SSL_BASE='SYSTEM' EAPI_MM='SYSTEM' PATH="\${PREFIX}/bin:\${PATH}" PLIST= \${PKGDIR}/PLIST.modssl SSL= ssl TYPE= test CRT= KEY= pre-patch: @cd \${WRKDIR}/mod_ssl-\${VERSION_MODSSL}-\${VERSION_APACHE} \\ && \${ECHO_MSG} "===> Applying mod_ssl-\${VERSION_MODSSL} extension" \\ && ./configure --with-apache=../\${DISTNAME} --expert post-patch: @cd \${WRKSRC} \\ && find . -type f -name "*.orig" -print | xargs \${RM} -f post-build: @cd \${WRKSRC} \\ && \${ECHO_MSG} "===> Creating Dummy Certificate for Server (SnakeOil)" \\ && \${ECHO_MSG} " [use 'make certificate' to create a real one]" \\ && \${MAKE} certificate TYPE=dummy >/dev/null 2>&1 certificate: @cd \${WRKSRC} \\ && \${ECHO_MSG} "===> Creating Test Certificate for Server" \\ && \${MAKE} certificate TYPE=\$(TYPE) CRT=\$(CRT) KEY=\$(KEY) EOF ;; esac shift done