summaryrefslogtreecommitdiff
path: root/lang/php5
AgeCommit message (Collapse)AuthorFilesLines
2005-01-04Enable SQLitemanu2-4/+4
2004-12-27use ${PKG_SYSCONFDIR} rather than hardcoding ${PREFIX}/etcjdolecek1-2/+2
Fixes PR pkg/28718 by Amitai Schlair
2004-12-18g/c MAINTAINER (use one from Makefile.common)jdolecek1-2/+1
2004-12-18claim MAINTAINERjdolecek1-2/+2
2004-12-18claim MAINTAINERjdolecek1-2/+2
2004-12-17Update php5 to 5.0.3. This maintenance release addressing several veryjdolecek4-8/+13
serious security issues, as well as bunch of non-critical bug fixes. All PHP5 users are strongly encouraged to upgrade to this version. Detailed change list at: http://www.php.net/ChangeLog-5.php#5.0.3
2004-12-17move DISTINFO_FILE setting from Makefile.common to Makefile.php,jdolecek2-3/+4
so that it PECL extension packages could override it properly
2004-12-12completely ignore system php.ini for all pear-related operations; thisjdolecek3-3/+14
is necessary to avoid being subject to e.g. open_basedir or safe_mode settings
2004-11-06merge extension module handling for PHP4 and PHP5 into lang/php/ext.mk,jdolecek1-65/+0
g/c no longer needed Makefile.module add support for building extensions off PECL; version for PECL packages is built as ${PHP_BASE_VERS}.${PECL_VERSION}, i.e. PECL pkg version 1.0 would become php-pkg-4.3.9.1.0 or php-pkg-5.0.2.1.0 respectively
2004-11-05share MESSAGE.module and PLIST.module between php4 and php5 packages, movingjdolecek3-16/+3
them to lang/php/
2004-11-04put items only pertinent to interpreter build to new file Makefile.phpjdolecek3-41/+60
(similar to PHP4 package), and also update to use PKG_OPTIONS this fixes environment pollution for extension modules, particularily CONFIGURE_ARGS
2004-11-02s/PHP5_VERSION/PHP_BASE_VERS/, to match php4 packagejdolecek3-7/+7
2004-11-01${PREFIX}/lib/php/Net might or might not exist, so remove it usingjdolecek1-1/+2
@unuexec ${RM} -rf
2004-11-01use shared pear package support framework for both php4 & php5; based onjdolecek1-55/+0
the former php4 version
2004-11-01default to full dependance on php for anything including this buildlinkjdolecek1-1/+4
2004-11-01Make sure to install the _CLI_ version to ${PREFIX}/bin/php, and _CGI_jdolecek3-14/+16
to ${PREFIX}/libexec/cgi-bin; install also couple more files same way as PHP4 Of particular note is that CLI ignores setting of register_argc_argv (treats as if it would be On), so it's no longer necessary to do anything special for Pear packages to work. g/c MESSAGE warning about the Pear issue.
2004-10-31add patches necessary to build php-imap with PHP5jdolecek3-1/+58
2004-10-31add a USE_PHP_EXT_PATCHES, which makes it possible to have and apply onlyjdolecek1-1/+10
extension-specific patches from php5/patches/
2004-10-30s/wip/lang/grant4-12/+12
2004-10-29Import PHP 5.0.2, based on the pkgsrc-wip PHP5 package.jdolecek11-0/+517
Some of the key features of PHP 5 include: * The Zend Engine II with a new object model and dozens of new features. * XML support has been completely redone in PHP 5, all extensions are now focused around the excellent libxml2 library (http://www.xmlsoft.org/). * A new SimpleXML extension for easily accessing and manipulating XML as PHP objects. It can also interface with the DOM extension and vice-versa. * A brand new built-in SOAP extension for interoperability with Web Services. * A new MySQL extension named MySQLi for developers using MySQL 4.1 and later. This new extension includes an object-oriented interface in addition to a traditional interface; as well as support for many of MySQL's new features, such as prepared statements. * SQLite has been bundled with PHP. For more information on SQLite, please visit their website. * Streams have been greatly improved, including the ability to access low-level socket operations on streams.