[125337] trunk/dports

ryandesign at macports.org ryandesign at macports.org
Sat Sep 13 17:27:00 PDT 2014


Revision: 125337
          https://trac.macports.org/changeset/125337
Author:   ryandesign at macports.org
Date:     2014-09-13 17:27:00 -0700 (Sat, 13 Sep 2014)
Log Message:
-----------
php5 ports: replace with corresponding php53 ports

Modified Paths:
--------------
    trunk/dports/lang/php5/Portfile
    trunk/dports/php/php5-calendar/Portfile
    trunk/dports/php/php5-curl/Portfile
    trunk/dports/php/php5-dba/Portfile
    trunk/dports/php/php5-enchant/Portfile
    trunk/dports/php/php5-exif/Portfile
    trunk/dports/php/php5-ftp/Portfile
    trunk/dports/php/php5-gd/Portfile
    trunk/dports/php/php5-gettext/Portfile
    trunk/dports/php/php5-gmp/Portfile
    trunk/dports/php/php5-iconv/Portfile
    trunk/dports/php/php5-imap/Portfile
    trunk/dports/php/php5-intl/Portfile
    trunk/dports/php/php5-ldap/Portfile
    trunk/dports/php/php5-mbstring/Portfile
    trunk/dports/php/php5-mcrypt/Portfile
    trunk/dports/php/php5-mssql/Portfile
    trunk/dports/php/php5-mysql/Portfile
    trunk/dports/php/php5-odbc/Portfile
    trunk/dports/php/php5-openssl/Portfile
    trunk/dports/php/php5-oracle/Portfile
    trunk/dports/php/php5-pcntl/Portfile
    trunk/dports/php/php5-posix/Portfile
    trunk/dports/php/php5-postgresql/Portfile
    trunk/dports/php/php5-pspell/Portfile
    trunk/dports/php/php5-snmp/Portfile
    trunk/dports/php/php5-soap/Portfile
    trunk/dports/php/php5-sockets/Portfile
    trunk/dports/php/php5-sqlite/Portfile
    trunk/dports/php/php5-tidy/Portfile
    trunk/dports/php/php5-wddx/Portfile
    trunk/dports/php/php5-xmlrpc/Portfile
    trunk/dports/php/php5-xsl/Portfile
    trunk/dports/php/php5-zip/Portfile

Removed Paths:
-------------
    trunk/dports/lang/php5/files/
    trunk/dports/php/php5-gd/files/
    trunk/dports/php/php5-odbc/files/

Modified: trunk/dports/lang/php5/Portfile
===================================================================
--- trunk/dports/lang/php5/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/lang/php5/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,341 +2,12 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               compiler_blacklist_versions 1.0
 
+replaced_by             php53
+PortGroup               obsolete 1.0
+
 name                    php5
-conflicts               php5-devel php52
-# Keep version of php5 in sync with bundled php5 extension ports.
-# Increment revision of php5-eaccelerator when updating version of php5.
 epoch                   1
-version                 5.3.28
-set major               [lindex [split ${version} .] 0]
-set my_name             php${major}
-dist_subdir             ${my_name}
-categories              lang www
-maintainers             ryandesign
-platforms               darwin freebsd
+version                 5.3.29
+categories              lang
 license                 PHP-3.01
-use_parallel_build      yes
-
-description             PHP: Hypertext Preprocessor
-
-long_description        PHP is a widely-used general-purpose scripting \
-                        language that is especially suited for developing \
-                        web sites, but can also be used for command-line \
-                        scripting.
-
-distname                php-${version}
-use_bzip2               yes
-
-homepage                http://www.php.net/
-master_sites            php:get/[lindex ${distfiles} 0]/from/this/mirror?dummy=
-
-checksums               ${distname}${extract.suffix} \
-                        rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_build           port:pkgconfig \
-                        port:autoconf213
-
-depends_lib             path:bin/gsed:gsed \
-                        port:libtool \
-                        port:libxml2 \
-                        port:bzip2 \
-                        port:mhash \
-                        port:pcre \
-                        port:readline \
-                        port:zlib
-
-# Use -p1 to accommodate the Suhosin patch
-patch.pre_args          -p1
-patchfiles              patch-configure.in.diff \
-                        patch-scripts-php-config.in.diff
-
-use_autoconf            yes
-autoconf.cmd            ${prefix}/bin/autoconf213
-
-set phpinidir           ${prefix}/etc/${my_name}
-set extraphpinidir      ${prefix}/var/db/${my_name}
-
-destroot.keepdirs       ${destroot}${extraphpinidir}
-
-# Xcode 4.3 may work, but leaving it blacklisted due to lack of testing
-compiler.blacklist  {clang < 400} macports-clang-2.9 macports-clang-3.0 macports-clang-3.1
-
-configure.args          --mandir=${prefix}/share/man \
-                        --infodir=${prefix}/share/info \
-                        --with-config-file-path=${phpinidir} \
-                        --with-config-file-scan-dir=${extraphpinidir} \
-                        --disable-all \
-                        --enable-bcmath \
-                        --enable-ctype \
-                        --enable-dom \
-                        --enable-fileinfo \
-                        --enable-filter \
-                        --enable-hash \
-                        --enable-json \
-                        --enable-libxml \
-                        --enable-pdo \
-                        --enable-phar \
-                        --enable-session \
-                        --enable-simplexml \
-                        --enable-tokenizer \
-                        --enable-xml \
-                        --enable-xmlreader \
-                        --enable-xmlwriter \
-                        --with-bz2=${prefix} \
-                        --with-mhash=${prefix} \
-                        --with-pcre-regex=${prefix} \
-                        --with-readline=${prefix} \
-                        --with-libxml-dir=${prefix} \
-                        --with-zlib=${prefix} \
-                        --without-pear \
-                        --disable-cgi
-
-# php5-mysql +mysqlnd needs mysqlnd support compiled into php
-configure.env-append    PHP_MYSQLND_ENABLED=yes
-
-configure.universal_args-delete --disable-dependency-tracking
-
-platform darwin 10 {
-    configure.env-append LIBS=-lresolv
-}
-
-variant no_web conflicts apache apache2 fastcgi description {Don't include any web server support} {}
-
-# Build an Apache 1 module. On Mac OS X, it uses Apple's provided Apache 1 server.
-# On other platforms, the MacPorts apache port is used. Keep the options here
-# in sync with those in the relevant part of the post-destroot phase.
-variant apache conflicts apache2 no_web description {Add Apache 1 web server module} {
-    if { ! [variant_isset macosx] && (![info exists os.subplatform] || ${os.subplatform} ne "macosx") } {
-        depends_lib-append \
-            port:apache
-        configure.args-append \
-            --with-apxs=${prefix}/sbin/apxs
-    } else {
-        destroot.violate_mtree yes
-        configure.args-append \
-            --with-apxs=/usr/sbin/apxs
-    }
-}
-
-# Build an Apache 2.2 module. Keep the options here in sync with those in the
-# relevant part of the post-destroot phase.
-variant apache2 conflicts apache no_web description {Add Apache 2.2 web server module} {
-    pre-configure {
-        # Checking for mod_cgi.so is a convenient way to verify apache2 is using its
-        # +preforkmpm variant. (+eventmpm and +workermpm instead provide mod_cgid.so.)
-        if {![file exists ${prefix}/apache2/modules/mod_cgi.so]} {
-            ui_error "To use ${name} with the +apache2 variant, apache2 must be installed with the +preforkmpm variant."
-            return -code error "incompatible apache2 installation"
-        }
-    }
-    destroot.violate_mtree yes
-    depends_lib-append \
-        port:apache2
-    configure.args-append \
-        --with-apxs2=${prefix}/apache2/bin/apxs
-}
-
-# Build a FastCGI binary. Keep the options here in sync with those in the
-# relevant part of the post-destroot phase.
-variant fastcgi conflicts no_web description {Add FastCGI web server binary} {
-    if { ![variant_isset apache] && ![variant_isset apache2] } {
-        configure.args-delete \
-            --disable-cgi
-        configure.args-append \
-            --enable-cgi
-    }
-}
-
-variant ipc description {Add semaphore, shared memory and IPC functions} {
-    configure.args-append \
-        --enable-shmop \
-        --enable-sysvsem \
-        --enable-sysvshm \
-        --enable-sysvmsg
-}
-
-if {![variant_isset apache] && ![variant_isset apache2] && ![variant_isset fastcgi] && ![variant_isset no_web]} {
-    default_variants +apache2
-}
-
-variant pear description {Add PEAR} {
-    configure.args-delete \
-        --without-pear
-    configure.args-append \
-        --with-pear=${prefix}/lib/php
-    destroot.target-append \
-        install-pear
-    destroot.args-append \
-        PHP_PEAR_INSTALL_DIR=${prefix}/lib/php
-    post-destroot {
-        #nuke pear-stuff in ${destroot}
-        system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock"
-        
-        system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi"
-        system "if \[ -f ${prefix}/lib/php/.depdb \]; then rm -f ${destroot}${prefix}/lib/php/.depdb; fi"
-        system "if \[ -f ${prefix}/lib/php/.filemap \]; then rm -f ${destroot}${prefix}/lib/php/.filemap; fi"
-        system "if \[ -f ${prefix}/lib/php/.lock \]; then rm -f ${destroot}${prefix}/lib/php/.lock; fi"
-        system "if \[ -d ${prefix}/lib/php/.channels \]; then rm -rf ${destroot}${prefix}/lib/php/.channels; fi"
-    }
-}
-
-variant suhosin description {Add Suhosin patch} {
-    pre-fetch {
-        if {${os.platform} eq "darwin" && ${os.major} < 9} {
-            ui_error "The suhosin variant requires Mac OS X 10.5 or greater."
-            return -code error "incompatible Mac OS X version"
-        }
-        set suhosin_available 1
-        if {!${suhosin_available}} {
-            ui_error "There is no suhosin patch for PHP ${version} yet. Please check back later."
-        }
-        if {![file exists ${prefix}/var/db/php5/suhosin.ini]} {
-            ui_msg "You may also be interested in the suhosin extension, a related but different piece of software. See the php5-suhosin port."
-        }
-        if {!${suhosin_available}} {
-            return -code error "unavailable variant"
-        }
-    }
-    set suhosin_patch_version   5.3.9-0.9.10
-    set suhosin_patch           suhosin-patch-${suhosin_patch_version}.patch.gz
-    patch_sites-append          http://download.suhosin.org/
-    patchfiles-append           patch-suhosin-before.diff
-    patchfiles-append           ${suhosin_patch}
-    patchfiles-append           patch-suhosin-after.diff
-    checksums-append            ${suhosin_patch} \
-                                rmd160  ce43921fd9b183b154713ecda98294f6c68d5f22 \
-                                sha256  4438caeab0a10c6c94aee9f7eaa703f5799f97d4e0579f43a947bb7314e38317
-}
-
-destroot.args           INSTALL_ROOT=${destroot}
-
-destroot.target         install-cli install-build install-headers install-programs
-
-post-destroot {
-    # Copy the Apache 1 module.
-    if { [variant_isset apache] } {
-        xinstall -m 755 -d ${destroot}${prefix}/libexec/apache \
-            ${destroot}${prefix}/etc/apache/extra
-        xinstall -m 755 ${worksrcpath}/libs/libphp5.so ${destroot}${prefix}/libexec/apache/
-        xinstall -m 755 -c ${filespath}/mod_php.conf ${destroot}$prefix/etc/apache/extra
-    }
-    
-    # Copy the Apache 2.2 module.
-    if { [variant_isset apache2] } {
-        xinstall -m 755 -d ${destroot}${prefix}/apache2/modules \
-            ${destroot}${prefix}/apache2/conf/extra
-        xinstall -m 755 ${worksrcpath}/libs/libphp5.so ${destroot}${prefix}/apache2/modules/
-        xinstall -m 755 -c ${filespath}/mod_php.conf ${destroot}${prefix}/apache2/conf/extra
-    }
-    
-    if { [variant_isset fastcgi] } {
-        # If we've built an Apache module (any version) then the FastCGI binary
-        # will not have been built, so we need to run through the whole process
-        # again and build just the FastCGI binary. Keep the options here in sync
-        # with the options specified in the apache and apache2 variants.
-        if { [variant_isset apache] } {
-            if { ![variant_isset macosx] && (![info exists os.subplatform] || ${os.subplatform} ne "macosx") } {
-                configure.args-delete \
-                    --with-apxs=${prefix}/sbin/apxs
-            } else {
-                configure.args-delete \
-                    --with-apxs=/usr/sbin/apxs
-            }
-        }
-        if { [variant_isset apache2] } {
-            configure.args-delete \
-                --with-apxs2=${prefix}/apache2/bin/apxs
-        }
-        
-        # Run the build again to get the FastCGI binary. Keep the options here
-        # in sync with those in the fastcgi variant.
-        if { [variant_isset apache] || [variant_isset apache2] } {
-            configure.args-delete \
-                --disable-cgi
-            configure.args-append \
-                --enable-cgi
-            ui_msg "$UI_PREFIX Configuring ${name} again for fastcgi"
-            command_exec configure
-            ui_msg "$UI_PREFIX Building ${name} again for fastcgi"
-            command_exec build
-            ui_msg "$UI_PREFIX Staging ${name} fastcgi into destroot"
-        }
-        
-        # Copy the FastCGI binary to the bin dir under a new name so it doesn't
-        # conflict with the cli version.
-        xinstall -m 755 ${worksrcpath}/sapi/cgi/php-cgi ${destroot}${prefix}/bin
-    }
-    
-    #file rename ${destroot}${prefix}/etc/pear.conf ${destroot}${prefix}/etc/pear.conf.sample
-    
-    # Copy the default php.ini files.
-    xinstall -m 755 -d ${destroot}${phpinidir}
-    xinstall -m 644 -W ${worksrcpath} \
-        php.ini-development \
-        php.ini-production \
-        ${destroot}${phpinidir}
-    
-    # Copy mysqlnd headers.
-    xinstall -d ${destroot}${prefix}/include/php/ext/mysqlnd
-    eval xinstall -m 644 [glob ${worksrcpath}/ext/mysqlnd/*.h] ${destroot}${prefix}/include/php/ext/mysqlnd
-}
-
-pre-activate {
-    set filepath ${extraphpinidir}/.turd_${name}
-    if {[file exists ${filepath}]} {
-        delete ${filepath}
-    }
-}
-
-post-activate {
-    if {[file exists ${prefix}/etc/php.ini] && ![file exists ${phpinidir}/php.ini]} {
-        move ${prefix}/etc/php.ini ${phpinidir}
-        ui_msg "Your ${prefix}/etc/php.ini has been moved to ${phpinidir}/php.ini"
-        ui_msg ""
-    }
-    if {![file exists ${phpinidir}/php.ini]} {
-        ui_msg "To customize php, copy"
-        ui_msg "${phpinidir}/php.ini-development (if this is a development server) or"
-        ui_msg "${phpinidir}/php.ini-production (if this is a production server) to"
-        ui_msg "${phpinidir}/php.ini and then make changes."
-    } else {
-        ui_msg "You may need to update your php.ini for any changes that have been made"
-        ui_msg "in this version of php. Compare ${phpinidir}/php.ini with"
-        ui_msg "${phpinidir}/php.ini-development (if this is a development server) or"
-        ui_msg "${phpinidir}/php.ini-production (if this is a production server)."
-    }
-    
-    if {![variant_isset no_web]} {
-        ui_msg ""
-        ui_msg "If this is your first install, you need to activate PHP in your web server."
-        if {![variant_isset fastcgi]} {
-            if {[variant_isset apache]} {
-                set moduledir ${prefix}/libexec/modules
-                set apxs ${prefix}/apache/bin/apxs
-            }
-            if {[variant_isset apache2]} {
-                set moduledir ${prefix}/apache2/modules
-                set apxs ${prefix}/apache2/bin/apxs
-            }
-            ui_msg ""
-            ui_msg "To enable PHP in Apache, run"
-            ui_msg "  cd ${moduledir}"
-            ui_msg "  ${apxs} -a -e -n \"${my_name}\" lib${my_name}.so"
-        }
-    }
-    
-    #ui_msg "* copy  ${prefix}/etc/pear.conf.sample to  ${prefix}/etc/pear.conf"
-}
-
-variant debug description {Enable debug support (useful to analyze a PHP-related core dump)} {
-    configure.args-append   --enable-debug
-}
-
-test.run                yes
-
-livecheck.type          none
-livecheck.url           ${homepage}downloads.php
-livecheck.regex         get/php-(5\\.\[0-9.\]+)\\.tar

Modified: trunk/dports/php/php5-calendar/Portfile
===================================================================
--- trunk/dports/php/php5-calendar/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-calendar/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,20 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     calendar 5.3.28 bundled
-categories-append       devel
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-calendar
+PortGroup               obsolete 1.0
 
-description             a PHP extension for converting between different \
-                        calendar formats
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
+name                    php5-calendar
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-curl/Portfile
===================================================================
--- trunk/dports/php/php5-curl/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-curl/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     curl 5.3.28 bundled
-categories-append       net www
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-curl
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the curl library, which lets you \
-                        download files from servers with a variety of protocols
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:curl
-
-configure.args-append   --with-curl=${prefix}
-
-use_parallel_build      yes
+name                    php5-curl
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-dba/Portfile
===================================================================
--- trunk/dports/php/php5-dba/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-dba/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,30 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     dba 5.3.28 bundled
-categories-append       databases
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-dba
+PortGroup               obsolete 1.0
 
-description             a PHP interface for accessing DBM databases such as \
-                        BerkeleyDB
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
-
-variant gdbm conflicts qdbm description {Add GDBM support} {
-    depends_lib-append          port:gdbm
-    configure.args-append       --with-gdbm=${prefix}
-}
-
-variant qdbm conflicts gdbm description {Add QDBM support} {
-    depends_lib-append          port:qdbm
-    configure.args-append       --with-qdbm=${prefix}
-}
+name                    php5-dba
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-enchant/Portfile
===================================================================
--- trunk/dports/php/php5-enchant/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-enchant/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,37 +2,11 @@
 # $Id$
 
 PortSystem      1.0
-PortGroup       php5extension 1.0
 
-php5extension.setup enchant 5.3.28 bundled
-license         PHP
-categories      php textproc devel
-platforms       darwin
-maintainers     ryandesign
-description     libenchant binder, support near all spelling tools
+replaced_by     php53-enchant
+PortGroup       obsolete 1.0
 
-long_description \
-    Enchant is a binder for libenchant. Libenchant provides a common API for \
-    many spell libraries.
-
-checksums       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append \
-    port:enchant
-
-configure.args \
-    --with-enchant=${prefix}
-
-test.run yes
-
-post-destroot {
-    set docdir ${prefix}/share/doc/${name}
-    xinstall -d ${destroot}${docdir}
-    xinstall -m 644 -W ${destroot.dir} CREDITS ${destroot}${docdir}
-
-    set examplesdir ${prefix}/share/examples/${name}
-    xinstall -d ${destroot}${examplesdir}
-    xinstall -m 644 ${destroot.dir}/docs/examples/example1.php \
-        ${destroot}${examplesdir}
-}
+name            php5-enchant
+version         5.3.29
+categories      php
+license         PHP

Modified: trunk/dports/php/php5-exif/Portfile
===================================================================
--- trunk/dports/php/php5-exif/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-exif/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,19 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     exif 5.3.28 bundled
-categories-append       graphics
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-exif
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the EXIF image metadata functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
+name                    php5-exif
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-ftp/Portfile
===================================================================
--- trunk/dports/php/php5-ftp/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-ftp/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     ftp 5.3.28 bundled
-categories-append       net
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-ftp
+PortGroup               obsolete 1.0
 
-description             a PHP extension for accessing file servers using the \
-                        File Transfer Protocol
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:openssl
-
-configure.args-append   --with-openssl-dir=${prefix}
-
-use_parallel_build      yes
+name                    php5-ftp
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-gd/Portfile
===================================================================
--- trunk/dports/php/php5-gd/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-gd/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,40 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     gd 5.3.28 bundled
-revision                1
-categories-append       graphics
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-gd
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the gd library
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:freetype \
-                        port:jpeg \
-                        port:libpng \
-                        port:zlib
-
-patchfiles              patch-ext-gd-config.m4.diff
-
-configure.args-append   --with-freetype-dir=${prefix} \
-                        --with-jpeg-dir=${prefix} \
-                        --with-png-dir=${prefix} \
-                        --with-zlib-dir=${prefix} \
-                        --enable-gd-native-ttf
-
-use_parallel_build      yes
-
-variant t1lib description {Add PostScript Type 1 font support with t1lib} {
-    depends_lib-append \
-        port:t1lib
-    configure.args-append \
-        --with-t1lib=${prefix}
-}
+name                    php5-gd
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-gettext/Portfile
===================================================================
--- trunk/dports/php/php5-gettext/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-gettext/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     gettext 5.3.28 bundled
-categories-append       devel
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-gettext
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the gettext natural language \
-                        support functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:gettext
-
-configure.args-append   --with-gettext=${prefix}
-
-use_parallel_build      yes
+name                    php5-gettext
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-gmp/Portfile
===================================================================
--- trunk/dports/php/php5-gmp/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-gmp/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,25 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     gmp 5.3.28 bundled
-categories-append       devel math
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-gmp
+PortGroup               obsolete 1.0
 
-description             a PHP interface to GMP, the GNU multiprocessing \
-                        library through which you can work with \
-                        arbitrary-length integers
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:gmp
-
-configure.args-append   --with-gmp=${prefix}
-
-use_parallel_build      yes
+name                    php5-gmp
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-iconv/Portfile
===================================================================
--- trunk/dports/php/php5-iconv/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-iconv/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     iconv 5.3.28 bundled
-categories-append       textproc
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-iconv
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the libiconv character encoding \
-                        conversion functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:libiconv
-
-configure.args-append   --with-iconv=${prefix}
-
-use_parallel_build      yes
+name                    php5-iconv
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-imap/Portfile
===================================================================
--- trunk/dports/php/php5-imap/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-imap/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,28 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     imap 5.3.28 bundled
-categories-append       mail
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-imap
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the IMAP protocol
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_build-append    port:cclient
-
-depends_lib-append      port:kerberos5 \
-                        port:libcomerr
-
-configure.args-append   --with-imap=${prefix} \
-                        --with-imap-ssl=${prefix} \
-                        --with-kerberos=${prefix}
-
-use_parallel_build      yes
+name                    php5-imap
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-intl/Portfile
===================================================================
--- trunk/dports/php/php5-intl/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-intl/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,23 +2,11 @@
 # $Id$
 
 PortSystem      1.0
-PortGroup       php5extension 1.0
 
-php5extension.setup intl 5.3.28 bundled
-revision 1
-categories      php devel
-platforms       darwin
-maintainers     ryandesign
-license         PHP-3.01
+replaced_by     php53-intl
+PortGroup       obsolete 1.0
 
-description     Internationalization extension for PHP 5
-
-long_description \
-    Internationalization extension implements ICU library functionality in PHP.
-
-checksums       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append  port:icu
-
-use_parallel_build  yes
+name            php5-intl
+version         5.3.29
+categories      php
+license         PHP-3.01

Modified: trunk/dports/php/php5-ldap/Portfile
===================================================================
--- trunk/dports/php/php5-ldap/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-ldap/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,27 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     ldap 5.3.28 bundled
-categories-append       databases
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-ldap
+PortGroup               obsolete 1.0
 
-description             a PHP interface to LDAP
-
-long_description        ${name} is ${description}, the Lightweight Directory \
-                        Access Protocol, which is used to access Directory \
-                        Servers.
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:openldap \
-                        port:cyrus-sasl2
-
-configure.args-append   --with-ldap=${prefix} \
-                        --with-ldap-sasl=${prefix}
-
-use_parallel_build      yes
+name                    php5-ldap
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-mbstring/Portfile
===================================================================
--- trunk/dports/php/php5-mbstring/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-mbstring/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,20 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     mbstring 5.3.28 bundled
-categories-append       textproc
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-mbstring
+PortGroup               obsolete 1.0
 
-description             a PHP extension for manipulating strings in multibyte \
-                        encodings
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
+name                    php5-mbstring
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-mcrypt/Portfile
===================================================================
--- trunk/dports/php/php5-mcrypt/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-mcrypt/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,25 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     mcrypt 5.3.28 bundled
-categories-append       security
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-mcrypt
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the mcrypt library, which offers \
-                        a wide variety of algorithms
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:libmcrypt \
-                        port:libtool
-
-configure.args-append   --with-mcrypt=${prefix}
-
-use_parallel_build      yes
+name                    php5-mcrypt
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-mssql/Portfile
===================================================================
--- trunk/dports/php/php5-mssql/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-mssql/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,25 +2,11 @@
 # $Id$
 
 PortSystem                      1.0
-PortGroup                       php5extension 1.0
 
-php5extension.setup             {mssql pdo_dblib} 5.3.28 bundled
-categories-append               databases
-platforms                       darwin
-maintainers                     ryandesign
-license				PHP-3.01
+replaced_by                     php53-mssql
+PortGroup                       obsolete 1.0
 
-description                     a PHP interface to MSSQL using FreeTDS, \
-                                including the mssql and pdo_dblib extensions
-
-long_description                ${description}
-
-checksums                       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append              port:freetds
-
-configure.args-append           --with-mssql=${prefix} \
-                                --with-pdo-dblib=${prefix}
-
-use_parallel_build              yes
+name                            php5-mssql
+version                         5.3.29
+categories                      php
+license                         PHP-3.01

Modified: trunk/dports/php/php5-mysql/Portfile
===================================================================
--- trunk/dports/php/php5-mysql/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-mysql/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,67 +2,11 @@
 # $Id$
 
 PortSystem                      1.0
-PortGroup                       php5extension 1.0
 
-php5extension.setup             {mysql mysqli pdo_mysql} 5.3.28 bundled
-categories-append               databases
-platforms                       darwin
-maintainers                     ryandesign
-license                         PHP-3.01
+replaced_by                     php53-mysql
+PortGroup                       obsolete 1.0
 
-description                     a PHP interface to MySQL databases, including \
-                                the mysql, mysqli and pdo_mysql extensions
-
-long_description                ${description}
-
-checksums                       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append              port:zlib
-
-configure.args-append           --with-zlib-dir=${prefix}
-
-use_parallel_build              yes
-
-variant mysqlnd conflicts mysql4 mysql5 description {Use MySQL Native Driver} {
-    configure.args-append       --with-mysql=mysqlnd \
-                                --with-mysqli=mysqlnd \
-                                --with-pdo-mysql=mysqlnd
-    configure.cppflags-append   -I${worksrcpath}
-    
-    set phpini ${prefix}/etc/php5/php.ini
-    notes "
-To use mysqlnd with a local MySQL server, edit ${phpini} and set\
-mysql.default_socket, mysqli.default_socket and pdo_mysql.default_socket\
-to the path to your MySQL server's socket file.
-
-For mysql5, use ${prefix}/var/run/mysql5/mysqld.sock
-For mysql51, use ${prefix}/var/run/mysql51/mysqld.sock
-For mysql55, use ${prefix}/var/run/mysql55/mysqld.sock
-For mariadb, use ${prefix}/var/run/mariadb/mysqld.sock
-For percona, use ${prefix}/var/run/percona/mysqld.sock
-"
-}
-
-variant mysql4 conflicts mysql5 mysqlnd description {Use MySQL 4 libraries} {
-    depends_lib-append          port:mysql4
-    configure.args-append       --with-mysql=${prefix} \
-                                --with-pdo-mysql=${prefix}
-}
-
-variant mysql5 conflicts mysql4 mysqlnd description {Use MySQL 5 libraries} {
-    depends_lib-append          path:bin/mysql_config5:mysql5
-    configure.args-append       --with-mysql=${workpath}/mysql5 \
-                                --with-mysqli=${prefix}/bin/mysql_config5 \
-                                --with-pdo-mysql=${prefix}/bin/mysql_config5 \
-                                --with-mysql-sock=${prefix}/var/run/mysql5/mysqld.sock
-    post-extract {
-        file mkdir ${workpath}/mysql5
-        file link -symbolic ${workpath}/mysql5/lib ${prefix}/lib/mysql5
-        file link -symbolic ${workpath}/mysql5/include ${prefix}/include/mysql5
-    }
-}
-
-if {![variant_isset mysql4] && ![variant_isset mysql5]} {
-    default_variants +mysqlnd
-}
+name                            php5-mysql
+version                         5.3.29
+categories                      php
+license                         PHP-3.01

Modified: trunk/dports/php/php5-odbc/Portfile
===================================================================
--- trunk/dports/php/php5-odbc/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-odbc/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,38 +2,11 @@
 # $Id$
 
 PortSystem                      1.0
-PortGroup                       php5extension 1.0
 
-php5extension.setup             {odbc pdo_odbc} 5.3.28 bundled
-categories-append               databases
-platforms                       darwin
-maintainers                     ryandesign
-license				PHP-3.01
+replaced_by                     php53-odbc
+PortGroup                       obsolete 1.0
 
-description                     a PHP interface for accessing databases via \
-                                Open DataBase Connectivity (ODBC)
-
-long_description                ${description}
-
-checksums                       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build              yes
-
-variant iodbc conflicts unixodbc description {Use iODBC} {
-    depends_lib-append          port:libiodbc
-    patchfiles-append           patch-iODBC.diff
-    configure.args-append       --with-iODBC=${prefix} \
-                                --with-pdo-odbc=iODBC,${prefix}
-}
-
-variant unixodbc conflicts iodbc description {Use unixODBC} {
-    depends_lib-append          port:unixODBC
-    patchfiles-append           patch-unixODBC.diff
-    configure.args-append       --with-unixODBC=${prefix} \
-                                --with-pdo-odbc=unixODBC,${prefix}
-}
-
-if {![variant_isset iodbc]} {
-    default_variants +unixodbc
-}
+name                            php5-odbc
+version                         5.3.29
+categories                      php
+license                         PHP-3.01

Modified: trunk/dports/php/php5-openssl/Portfile
===================================================================
--- trunk/dports/php/php5-openssl/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-openssl/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,32 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     openssl 5.3.28 bundled
-categories-append       devel security
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-openssl
+PortGroup               obsolete 1.0
 
-description             a PHP interface to OpenSSL signature-generation \
-                        and -verification and data-encryption and \
-                        -decryption functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:kerberos5 \
-                        port:libcomerr \
-                        port:openssl
-
-post-extract {
-    move ${build.dir}/config0.m4 ${build.dir}/config.m4
-}
-
-configure.args-append   --with-kerberos=${prefix} \
-                        --with-openssl=${prefix}
-
-use_parallel_build      yes
+name                    php5-openssl
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-oracle/Portfile
===================================================================
--- trunk/dports/php/php5-oracle/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-oracle/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,31 +2,11 @@
 # $Id$
 
 PortSystem                      1.0
-PortGroup                       php5extension 1.0
 
-php5extension.setup             oracle 5.3.28 bundled
-php5extension.ini               oracle.ini
-php5extension.extensions        oci8 pdo_oci
-categories-append               databases
-platforms                       darwin
-maintainers                     ryandesign
-license                         PHP-3.01
+replaced_by                     php53-oracle
+PortGroup                       obsolete 1.0
 
-description                     a PHP interface to Oracle, including the oci8 \
-                                and pdo_oci extensions
-
-long_description                ${description}
-
-checksums                       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append              port:oracle-instantclient
-
-set lib_dir                     ${prefix}/lib/oracle
-pre-configure {
-    regexp {\.dylib\.(.+)$} [glob -directory ${lib_dir} libclntsh.dylib.*] -> library_version
-    configure.args-append       --with-oci8=instantclient,${lib_dir} \
-                                --with-pdo-oci=instantclient,${lib_dir},${library_version}
-}
-
-use_parallel_build              yes
+name                            php5-oracle
+version                         5.3.29
+categories                      php
+license                         PHP-3.01

Modified: trunk/dports/php/php5-pcntl/Portfile
===================================================================
--- trunk/dports/php/php5-pcntl/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-pcntl/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,27 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     pcntl 5.3.28 bundled
-categories-append       sysutils
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-pcntl
+PortGroup               obsolete 1.0
 
-description             a PHP interface to Unix-style process creation, \
-                        program execution, signal handling and process \
-                        termination functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
-
-notes "
-${name} should not be enabled within a web server environment.\
-Unexpected results may occur if any process control functions are used\
-within a web server environment.
-"
+name                    php5-pcntl
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-posix/Portfile
===================================================================
--- trunk/dports/php/php5-posix/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-posix/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,21 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     posix 5.3.28 bundled
-categories-append       sysutils
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-posix
+PortGroup               obsolete 1.0
 
-description             a PHP interface to additional POSIX functions
-
-long_description        a PHP interface to those functions defined in the \
-                        IEEE 1003.1 (POSIX.1) standards document which are \
-                        not accessible through other means
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
+name                    php5-posix
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-postgresql/Portfile
===================================================================
--- trunk/dports/php/php5-postgresql/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-postgresql/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,76 +2,11 @@
 # $Id$
 
 PortSystem                      1.0
-PortGroup                       php5extension 1.0
 
-php5extension.setup             postgresql 5.3.28 bundled
-php5extension.ini               postgresql.ini
-php5extension.extensions        pgsql pdo_pgsql
-categories-append               databases
-platforms                       darwin
-maintainers                     ryandesign
-license                         PHP-3.01
-homepage                        http://www.php.net/pgsql
+replaced_by                     php53-postgresql
+PortGroup                       obsolete 1.0
 
-description                     a PHP interface to PostgreSQL, including \
-                                the pgsql and pdo_pgsql extensions
-
-long_description                ${description}
-
-checksums                       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build              yes
-
-variant postgresql82 conflicts postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {Use PostgreSQL 8.2 libraries} {
-    depends_lib-append          port:postgresql82
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql82/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql82/bin
-}
-
-variant postgresql83 conflicts postgresql82 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {Use PostgreSQL 8.3 libraries} {
-    depends_lib-append          port:postgresql83
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql83/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql83/bin
-}
-
-variant postgresql84 conflicts postgresql82 postgresql83 postgresql90 postgresql91 postgresql92 postgresql93 description {Use PostgreSQL 8.4 libraries} {
-    depends_lib-append          port:postgresql84
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql84/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql84/bin
-}
-
-variant postgresql90 conflicts postgresql82 postgresql83 postgresql84 postgresql91 postgresql92 postgresql93 description {Use PostgreSQL 9.0 libraries} {
-    depends_lib-append          port:postgresql90
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql90/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql90/bin
-}
-
-variant postgresql91 conflicts postgresql82 postgresql83 postgresql84 postgresql90 postgresql92 postgresql93 description {Use PostgreSQL 9.1 libraries} {
-    depends_lib-append          port:postgresql91
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql91/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql91/bin
-}
-
-variant postgresql92 conflicts postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql93 description {Use PostgreSQL 9.2 libraries} {
-    depends_lib-append          port:postgresql92
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql92/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql92/bin
-}
-
-variant postgresql93 conflicts postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 description {Use PostgreSQL 9.3 libraries} {
-    depends_lib-append          port:postgresql93
-
-    configure.args-append       --with-pgsql=${prefix}/lib/postgresql93/bin \
-                                --with-pdo-pgsql=${prefix}/lib/postgresql93/bin
-}
-
-if {![variant_isset postgresql82] && ![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset postgresql90] && ![variant_isset postgresql91] && ![variant_isset postgresql92] && ![variant_isset postgresql93]} {
-    default_variants +postgresql93
-}
+name                            php5-postgresql
+version                         5.3.29
+categories                      php
+license                         PHP-3.01

Modified: trunk/dports/php/php5-pspell/Portfile
===================================================================
--- trunk/dports/php/php5-pspell/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-pspell/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     pspell 5.3.28 bundled
-categories-append       textproc
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-pspell
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the aspell library, which lets you \
-                        check spelling and offer spelling suggestions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:aspell
-
-configure.args-append   --with-pspell=${prefix}
-
-use_parallel_build      yes
+name                    php5-pspell
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-snmp/Portfile
===================================================================
--- trunk/dports/php/php5-snmp/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-snmp/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     snmp 5.3.28 bundled
-categories-append       sysutils
-platforms               darwin
-maintainers             ryandesign
-license                 PHP-3.01
+replaced_by             php53-snmp
+PortGroup               obsolete 1.0
 
-description             a PHP interface to the Simple Network Management \
-                        Protocol (SNMP)
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
-
-depends_lib-append      port:net-snmp
-
-configure.args-append   --with-snmp=${prefix}
+name                    php5-snmp
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-soap/Portfile
===================================================================
--- trunk/dports/php/php5-soap/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-soap/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,23 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     soap 5.3.28 bundled
-categories-append       net
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-soap
+PortGroup               obsolete 1.0
 
-description             a PHP extension for writing SOAP clients and servers
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:libxml2
-
-configure.args-append   --with-libxml-dir=${prefix}
-
-use_parallel_build      yes
+name                    php5-soap
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-sockets/Portfile
===================================================================
--- trunk/dports/php/php5-sockets/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-sockets/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,20 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     sockets 5.3.28 bundled
-categories-append       net
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-sockets
+PortGroup               obsolete 1.0
 
-description             a PHP interface to BSD socket communication \
-                        functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-use_parallel_build      yes
+name                    php5-sockets
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-sqlite/Portfile
===================================================================
--- trunk/dports/php/php5-sqlite/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-sqlite/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,33 +2,11 @@
 # $Id$
 
 PortSystem                      1.0
-PortGroup                       php5extension 1.0
 
-php5extension.setup             {sqlite sqlite3 pdo_sqlite} 5.3.28 bundled
-categories-append               databases
-platforms                       darwin
-maintainers                     ryandesign
-license				PHP-3.01
+replaced_by                     php53-sqlite
+PortGroup                       obsolete 1.0
 
-description                     a PHP interface to SQLite, including the \
-                                sqlite and pdo_sqlite extensions
-
-long_description                ${description}
-
-checksums                       rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                                sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-# Note that the sqlite extension uses the built-in sqlite2 libraries while the
-# sqlite3 and pdo_sqlite extensions use the libraries from the sqlite3 port.
-
-depends_lib-append              port:sqlite3
-
-post-extract {
-    move ${worksrcpath}/ext/sqlite3/config0.m4 ${worksrcpath}/ext/sqlite3/config.m4
-}
-
-configure.args-append           --with-sqlite3=${prefix} \
-                                --with-pdo-sqlite=${prefix} \
-                                --enable-sqlite-utf8
-
-use_parallel_build              yes
+name                            php5-sqlite
+version                         5.3.29
+categories                      php
+license                         PHP-3.01

Modified: trunk/dports/php/php5-tidy/Portfile
===================================================================
--- trunk/dports/php/php5-tidy/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-tidy/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,24 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     tidy 5.3.28 bundled
-categories-append       www
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-tidy
+PortGroup               obsolete 1.0
 
-description             a PHP interface to tidy, the HTML cleaning and \
-                        repair utility
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:tidy
-
-configure.args-append   --with-tidy=${prefix}
-
-use_parallel_build      yes
+name                    php5-tidy
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-wddx/Portfile
===================================================================
--- trunk/dports/php/php5-wddx/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-wddx/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,25 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     wddx 5.3.28 bundled
-categories-append       textproc
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-wddx
+PortGroup               obsolete 1.0
 
-description             a PHP interface to Web Distributed Data Exchange
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_build-append    port:expat \
-                        port:libxml2
-
-configure.args-append   --with-libexpat-dir=${prefix} \
-                        --with-libxml-dir=${prefix}
-
-use_parallel_build      yes
+name                    php5-wddx
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-xmlrpc/Portfile
===================================================================
--- trunk/dports/php/php5-xmlrpc/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-xmlrpc/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,32 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     xmlrpc 5.3.28 bundled
-categories-append       textproc
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-xmlrpc
+PortGroup               obsolete 1.0
 
-description             a PHP extension for writing XML-RPC clients and servers
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_build-append    port:libiconv \
-                        port:libxml2
-
-depends_lib-append      port:expat
-
-configure.args-append   --with-iconv-dir=${prefix} \
-                        --with-libexpat-dir=${prefix} \
-                        --with-libxml-dir=${prefix}
-
-pre-configure {
-    configure.cppflags-append [exec ${prefix}/bin/xml2-config --cflags]
-}
-
-use_parallel_build      yes
+name                    php5-xmlrpc
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-xsl/Portfile
===================================================================
--- trunk/dports/php/php5-xsl/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-xsl/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,26 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     xsl 5.3.28 bundled
-categories-append       textproc
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-xsl
+PortGroup               obsolete 1.0
 
-description             a PHP interface to libxslt, which implements the XSL \
-                        standard and lets you perform XSL transformations
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:libxslt
-
-configure.args-append   --with-xsl=${prefix}
-
-configure.cppflags-append -I${prefix}/include/php/ext/dom
-
-use_parallel_build      yes
+name                    php5-xsl
+version                 5.3.29
+categories              php
+license                 PHP-3.01

Modified: trunk/dports/php/php5-zip/Portfile
===================================================================
--- trunk/dports/php/php5-zip/Portfile	2014-09-14 00:19:25 UTC (rev 125336)
+++ trunk/dports/php/php5-zip/Portfile	2014-09-14 00:27:00 UTC (rev 125337)
@@ -2,23 +2,11 @@
 # $Id$
 
 PortSystem              1.0
-PortGroup               php5extension 1.0
 
-php5extension.setup     zip 5.3.28 bundled
-categories-append       archivers
-platforms               darwin
-maintainers             ryandesign
-license				PHP-3.01
+replaced_by             php53-zip
+PortGroup               obsolete 1.0
 
-description             PHP zip functions
-
-long_description        ${description}
-
-checksums               rmd160  e4910c0c365f39a5009807801bd5ee6e25be020d \
-                        sha256  0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513
-
-depends_lib-append      port:zlib
-
-configure.args-append   --with-zlib-dir=${prefix}
-
-use_parallel_build      yes
+name                    php5-zip
+version                 5.3.29
+categories              php
+license                 PHP-3.01
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140913/104444ab/attachment-0001.html>


More information about the macports-changes mailing list