Add support for domxml.
PR: ports/28948, ports/29565
This commit is contained in:
parent
06550d7e95
commit
849ac4847d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=50197
6 changed files with 16 additions and 4 deletions
|
@ -21,7 +21,7 @@ MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \
|
|||
DISTNAME= php-${PORTVERSION}
|
||||
|
||||
PATCHFILES= patch-ext_gd_config.m4 patch-ext_gd_gd.c patch-ext_sybase_ct_config.m4 \
|
||||
patch-ext_gd_gd_2.c
|
||||
patch-ext_gd_gd_2.c patch-ext_domxml_config.m4
|
||||
PATCH_SITES= http://www.physik.tu-berlin.de/~ibex/ports/distfiles/ \
|
||||
${MASTER_SITE_LOCAL}/dirk/
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
MD5 (php-4.0.6.tar.gz) = 5f698521cf2b392cf9bfa87fc1a0fe90
|
||||
MD5 (php4_mbregex-1.2.1.tar.gz) = 46d151afa9ab668df880a70cf786a2c2
|
||||
MD5 (patch-ext_domxml_config.m4) = a623491aa6c019b00817633487778e4d
|
||||
MD5 (patch-ext_gd_config.m4) = b4fb911d11e6bb4e8e712407de7600bb
|
||||
MD5 (patch-ext_gd_gd.c) = f83c2a0433c744c7b7b03fe2533ed7d9
|
||||
MD5 (patch-ext_sybase_ct_config.m4) = ec731e9b05af2eb3e8ac12a0231d9a8b
|
||||
MD5 (patch-ext_gd_gd_2.c) = 0f159bbbec96c43671bd9097ff6b067e
|
||||
MD5 (patch-ext_sybase_ct_config.m4) = ec731e9b05af2eb3e8ac12a0231d9a8b
|
||||
|
|
|
@ -35,6 +35,7 @@ OpenSSL "OpenSSL support" OFF \
|
|||
SNMP "SNMP support" OFF \
|
||||
XML "XML support" OFF \
|
||||
XSLT "Sablotron support (implies XML and iconv)" OFF \
|
||||
DOMXML "DOM support" OFF \
|
||||
FTP "File Transfer Protocol support" OFF \
|
||||
CURL "CURL support" OFF \
|
||||
gettext "gettext library support" OFF \
|
||||
|
@ -212,6 +213,10 @@ while [ "$1" ]; do
|
|||
set $* \"iconv\"
|
||||
fi
|
||||
;;
|
||||
\"DOMXML\")
|
||||
echo "LIB_DEPENDS+= xml2.5:\${PORTSDIR}/textproc/libxml2"
|
||||
echo "CONFIGURE_ARGS+=--with-dom=\${PREFIX}"
|
||||
;;
|
||||
\"FTP\")
|
||||
echo "CONFIGURE_ARGS+=--enable-ftp"
|
||||
;;
|
||||
|
|
|
@ -21,7 +21,7 @@ MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \
|
|||
DISTNAME= php-${PORTVERSION}
|
||||
|
||||
PATCHFILES= patch-ext_gd_config.m4 patch-ext_gd_gd.c patch-ext_sybase_ct_config.m4 \
|
||||
patch-ext_gd_gd_2.c
|
||||
patch-ext_gd_gd_2.c patch-ext_domxml_config.m4
|
||||
PATCH_SITES= http://www.physik.tu-berlin.de/~ibex/ports/distfiles/ \
|
||||
${MASTER_SITE_LOCAL}/dirk/
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
MD5 (php-4.0.6.tar.gz) = 5f698521cf2b392cf9bfa87fc1a0fe90
|
||||
MD5 (php4_mbregex-1.2.1.tar.gz) = 46d151afa9ab668df880a70cf786a2c2
|
||||
MD5 (patch-ext_domxml_config.m4) = a623491aa6c019b00817633487778e4d
|
||||
MD5 (patch-ext_gd_config.m4) = b4fb911d11e6bb4e8e712407de7600bb
|
||||
MD5 (patch-ext_gd_gd.c) = f83c2a0433c744c7b7b03fe2533ed7d9
|
||||
MD5 (patch-ext_sybase_ct_config.m4) = ec731e9b05af2eb3e8ac12a0231d9a8b
|
||||
MD5 (patch-ext_gd_gd_2.c) = 0f159bbbec96c43671bd9097ff6b067e
|
||||
MD5 (patch-ext_sybase_ct_config.m4) = ec731e9b05af2eb3e8ac12a0231d9a8b
|
||||
|
|
|
@ -35,6 +35,7 @@ OpenSSL "OpenSSL support" OFF \
|
|||
SNMP "SNMP support" OFF \
|
||||
XML "XML support" OFF \
|
||||
XSLT "Sablotron support (implies XML and iconv)" OFF \
|
||||
DOMXML "DOM support" OFF \
|
||||
FTP "File Transfer Protocol support" OFF \
|
||||
CURL "CURL support" OFF \
|
||||
gettext "gettext library support" OFF \
|
||||
|
@ -212,6 +213,10 @@ while [ "$1" ]; do
|
|||
set $* \"iconv\"
|
||||
fi
|
||||
;;
|
||||
\"DOMXML\")
|
||||
echo "LIB_DEPENDS+= xml2.5:\${PORTSDIR}/textproc/libxml2"
|
||||
echo "CONFIGURE_ARGS+=--with-dom=\${PREFIX}"
|
||||
;;
|
||||
\"FTP\")
|
||||
echo "CONFIGURE_ARGS+=--enable-ftp"
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue