[csw-devel] SF.net SVN: gar:[3603] csw/mgar/pkg/php5/trunk

valholla at users.sourceforge.net valholla at users.sourceforge.net
Fri Mar 6 05:15:24 CET 2009


Revision: 3603
          http://gar.svn.sourceforge.net/gar/?rev=3603&view=rev
Author:   valholla
Date:     2009-03-06 04:15:24 +0000 (Fri, 06 Mar 2009)

Log Message:
-----------
add php5_pdo and fix a few missing files in extentions

Modified Paths:
--------------
    csw/mgar/pkg/php5/trunk/Makefile
    csw/mgar/pkg/php5/trunk/checksums
    csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile

Added Paths:
-----------
    csw/mgar/pkg/php5/trunk/extensions/php5_pdo/
    csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile
    csw/mgar/pkg/php5/trunk/extensions/php5_pdo/files/

Modified: csw/mgar/pkg/php5/trunk/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -61,7 +61,7 @@
 PKGFILES_CSWphp5devel += $(prefix)/php5/lib/php/build/.*
 PKGFILES_CSWphp5devel += $(prefix)/php5/man/.*
 
-PATCHFILES += config.diff
+PATCHFILES += configure.diff
 
 # PHP Extensions
 EXTDIRLIST = $(shell ls -d extensions/*)

Modified: csw/mgar/pkg/php5/trunk/checksums
===================================================================
--- csw/mgar/pkg/php5/trunk/checksums	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/checksums	2009-03-06 04:15:24 UTC (rev 3603)
@@ -5,7 +5,7 @@
 89e79becc9d7698c5c561581f2b098bc  download/CSWphp5_ext_disable.sh
 8139c9c02a2f62bac64041fdd0e90bf6  download/CSWphp5.postinstall
 41ec540885de7c34625768aa1fb9682b  download/fixme.sh
-2b657c95c6abef5f125f19265060f91d  download/config.diff
+2b657c95c6abef5f125f19265060f91d  download/configure.diff
 2206431e47c2075c0b9c4a12de5cf791  download/odbc.diff
 230126f76ee6400ccf225bb6a8243532  download/pdopgsql.diff
 13db46097c9686302bebf160e2d26ed2  download/pgsql.diff

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -13,3 +13,4 @@
 
 
 PKGFILES_CSWphp5dba = .*/lib/php/extensions/.*/dba\.so
+PKGFILES_CSWphp5dba += .*/lib/php/extensions/.*/dba\.a

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -8,4 +8,4 @@
 
 CONFIGURE_ARGS += --with-gettext=shared,$(prefix)
 
-PKGFILES_CSWphp5gettext = .*/lib/php/extensions/gettext.*
+PKGFILES_CSWphp5gettext = .*/lib/php/extensions/.*/gettext.*

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -8,5 +8,5 @@
 
 CONFIGURE_ARGS += --with-mysql=shared,$(prefix)
 
-PKGFILES_CSWphp5mysql = .*/lib/php/extensions/.*/mysql\.so.*
-PKGFILES_CSWphp5mysql = .*/lib/php/extensions/.*/mysql\.a.*
+PKGFILES_CSWphp5mysql = .*/lib/php/extensions/.*/mysql\.so
+PKGFILES_CSWphp5mysql = .*/lib/php/extensions/.*/mysql\.a

Added: csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile	                        (rev 0)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -0,0 +1,10 @@
+PHP5EXT_NAME = pdo
+
+PACKAGES += CSWphp5pdo
+
+CATALOGNAME_CSWphp5pdoodbc = php5_pdo
+SPKG_DESC_CSWphp5pdoodbc = pdo Extention for PHP5
+REQUIRED_PKGS_CSWphp5pdoodbc = CSWphp5
+
+PKGFILES_CSWphp5pdoodbc = .*/lib/php/extensions/.*/pdo\.so
+PKGFILES_CSWphp5pdoodbc += .*/lib/php/extensions/.*/pdo\.a

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -4,7 +4,7 @@
 
 CATALOGNAME_CSWphp5pdomysql = php5_pdomysql
 SPKG_DESC_CSWphp5pdomysql = pdomysql Extention for PHP5
-REQUIRED_PKGS_CSWphp5pdomysql = CSWphp5 CSWmysql5rt CSWzlib
+REQUIRED_PKGS_CSWphp5pdomysql = CSWphp5 CSWmysql5rt CSWzlib CSWphp5pdo
 
 CONFIGURE_ARGS += --with-pdo-mysql=shared,$(prefix)
 CONFIGURE_ARGS += --with-zlib-dir=$(prefix)

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -4,7 +4,7 @@
 
 CATALOGNAME_CSWphp5pdoodbc = php5_pdoodbc
 SPKG_DESC_CSWphp5pdoodbc = pdoodbc Extention for PHP5
-REQUIRED_PKGS_CSWphp5pdoodbc = CSWphp5 CSWunixodbc
+REQUIRED_PKGS_CSWphp5pdoodbc = CSWphp5 CSWunixodbc CSWphp5pdo
 
 CONFIGURE_ARGS += --with-pdo-odbc=shared,unixODBC,$(prefix)
 

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -4,7 +4,7 @@
 
 CATALOGNAME_CSWphp5pdopgsql = php5_pdopgsql
 SPKG_DESC_CSWphp5pdopgsql = pdopgsql Extention for PHP5
-REQUIRED_PKGS_CSWphp5pdopgsql = CSWphp5 CSWlibpq
+REQUIRED_PKGS_CSWphp5pdopgsql = CSWphp5 CSWlibpq CSWphp5pdo
 
 PATCHFILES += pdopgsql.diff
 

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -4,7 +4,7 @@
 
 CATALOGNAME_CSWphp5pdosqlite = php5_pdosqlite
 SPKG_DESC_CSWphp5pdosqlite = pdosqlite Extention for PHP5
-REQUIRED_PKGS_CSWphp5pdosqlite = CSWphp5
+REQUIRED_PKGS_CSWphp5pdosqlite = CSWphp5 CSWphp5pdo
 
 CONFIGURE_ARGS += --with-pdo-sqlite=shared
 

Modified: csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile
===================================================================
--- csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile	2009-03-06 02:33:08 UTC (rev 3602)
+++ csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile	2009-03-06 04:15:24 UTC (rev 3603)
@@ -10,6 +10,7 @@
 CONFIGURE_ARGS += --with-libxml-dir=$(prefix)
 CONFIGURE_ARGS += --with-libexpat-dir=$(prefix)
 
-PKGFILES_CSWphp5xml = .*/lib/php/extensions/.*/xml.so
-PKGFILES_CSWphp5xml = .*/include/php/ext/xml/.*
-PKGFILES_CSWphp5xml = .*/include/php/ext/libxml/.*
+PKGFILES_CSWphp5xml  = .*/lib/php/extensions/.*/xml.so
+PKGFILES_CSWphp5xml += .*/lib/php/extensions/.*/xml.a
+PKGFILES_CSWphp5xml += .*/include/php/ext/xml/.*
+PKGFILES_CSWphp5xml += .*/include/php/ext/libxml/.*


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list