[53781] trunk/dports/php

ryandesign at macports.org ryandesign at macports.org
Mon Jul 13 12:07:52 PDT 2009


Revision: 53781
          http://trac.macports.org/changeset/53781
Author:   ryandesign at macports.org
Date:     2009-07-13 12:07:51 -0700 (Mon, 13 Jul 2009)
Log Message:
-----------
New ports to begin moving features out of the monolithic php5 port; see #19091.

 * php5-curl
 * php5-gd
 * php5-gmp
 * php5-imap
 * php5-mcrypt
 * php5-pspell
 * php5-readline
 * php5-tidy
 * php5-xsl
 * php5-zlib

Added Paths:
-----------
    trunk/dports/php/php5-curl/
    trunk/dports/php/php5-curl/Portfile
    trunk/dports/php/php5-gd/
    trunk/dports/php/php5-gd/Portfile
    trunk/dports/php/php5-gmp/
    trunk/dports/php/php5-gmp/Portfile
    trunk/dports/php/php5-imap/
    trunk/dports/php/php5-imap/Portfile
    trunk/dports/php/php5-mcrypt/
    trunk/dports/php/php5-mcrypt/Portfile
    trunk/dports/php/php5-pspell/
    trunk/dports/php/php5-pspell/Portfile
    trunk/dports/php/php5-readline/
    trunk/dports/php/php5-readline/Portfile
    trunk/dports/php/php5-tidy/
    trunk/dports/php/php5-tidy/Portfile
    trunk/dports/php/php5-xsl/
    trunk/dports/php/php5-xsl/Portfile
    trunk/dports/php/php5-zlib/
    trunk/dports/php/php5-zlib/Portfile

Added: trunk/dports/php/php5-curl/Portfile
===================================================================
--- trunk/dports/php/php5-curl/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-curl/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,24 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     curl 5.3.0 bundled
+categories-append       net www
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to the curl library, which lets you \
+                        download files from servers with a variety of protocols
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:curl
+
+configure.args-append   --with-curl=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-curl/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-gd/Portfile
===================================================================
--- trunk/dports/php/php5-gd/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-gd/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,38 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     gd 5.3.0 bundled
+categories-append       graphics
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to the gd library
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:freetype \
+                        port:jpeg \
+                        port:libpng \
+                        port:zlib
+
+configure.args-append   --with-gd=shared \
+                        --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} \
+}


Property changes on: trunk/dports/php/php5-gd/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-gmp/Portfile
===================================================================
--- trunk/dports/php/php5-gmp/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-gmp/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,25 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     gmp 5.3.0 bundled
+categories-append       devel math
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to GMP, the GNU multiprocessing \
+                        library through which you can work with \
+                        arbitrary-length integers
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:gmp
+
+configure.args-append   --with-gmp=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-gmp/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-imap/Portfile
===================================================================
--- trunk/dports/php/php5-imap/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-imap/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,28 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     imap 5.3.0 bundled
+categories-append       mail
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to the IMAP protocol
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_build-append    port:cclient
+
+configure.args-append   --with-imap=shared,${prefix} \
+                        --with-imap-ssl=${prefix}
+
+platform macosx {
+    configure.args-append --with-kerberos=/usr
+}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-imap/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-mcrypt/Portfile
===================================================================
--- trunk/dports/php/php5-mcrypt/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-mcrypt/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,24 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     mcrypt 5.3.0 bundled
+categories-append       security
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to the mcrypt library, which offers \
+                        a wide variety of algorithms
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:libmcrypt
+
+configure.args-append   --with-mcrypt=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-mcrypt/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-pspell/Portfile
===================================================================
--- trunk/dports/php/php5-pspell/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-pspell/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,24 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     pspell 5.3.0 bundled
+categories-append       textproc
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to the aspell library, which lets you \
+                        check spelling and offer spelling suggestions
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:aspell
+
+configure.args-append   --with-pspell=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-pspell/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-readline/Portfile
===================================================================
--- trunk/dports/php/php5-readline/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-readline/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,24 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     readline 5.3.0 bundled
+categories-append       devel
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to the readline library, which \
+                        provides editable command lines
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:readline
+
+configure.args-append   --with-readline=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-readline/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-tidy/Portfile
===================================================================
--- trunk/dports/php/php5-tidy/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-tidy/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,24 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     tidy 5.3.0 bundled
+categories-append       www
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to tidy, the HTML cleaning and \
+                        repair utility
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:tidy
+
+configure.args-append   --with-tidy=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-tidy/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-xsl/Portfile
===================================================================
--- trunk/dports/php/php5-xsl/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-xsl/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,24 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     xsl 5.3.0 bundled
+categories-append       textproc
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to libxslt, which implements the XSL \
+                        standard and lets you perform XSL transformations
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:libxslt
+
+configure.args-append   --with-xsl=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-xsl/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/php/php5-zlib/Portfile
===================================================================
--- trunk/dports/php/php5-zlib/Portfile	                        (rev 0)
+++ trunk/dports/php/php5-zlib/Portfile	2009-07-13 19:07:51 UTC (rev 53781)
@@ -0,0 +1,23 @@
+# $Id$
+
+PortSystem              1.0
+PortGroup               php5extension 1.0
+
+php5extension.setup     zlib 5.3.0 bundled
+categories-append       archivers
+platforms               darwin
+maintainers             ryandesign
+
+description             a PHP interface to zlib
+
+long_description        ${description}
+
+checksums               md5     846760cd655c98dfd86d6d97c3d964b0 \
+                        sha1    934700941d216c453376e3bf24347041cf12c6dc \
+                        rmd160  9a71b74052b0ca515f2ddf95c051b47a73d33f44
+
+depends_lib-append      port:zlib
+
+configure.args-append   --with-zlib=shared,${prefix}
+
+use_parallel_build      yes


Property changes on: trunk/dports/php/php5-zlib/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090713/86b42e14/attachment.html>


More information about the macports-changes mailing list