diff options
author | James Meyer <James.meyer@operamail.com> | 2008-10-02 03:19:12 (GMT) |
---|---|---|
committer | James Meyer <James.meyer@operamail.com> | 2008-10-02 03:19:12 (GMT) |
commit | 0e2532d4e8f4eed5e047f1db54d5c03ba849ec0a (patch) | |
tree | c0aa2c0b53c317be87eacfcb77b63f53f1f415e7 /abs/core-testing/php/PKGBUILD | |
download | linhes_pkgbuild-0e2532d4e8f4eed5e047f1db54d5c03ba849ec0a.zip linhes_pkgbuild-0e2532d4e8f4eed5e047f1db54d5c03ba849ec0a.tar.gz linhes_pkgbuild-0e2532d4e8f4eed5e047f1db54d5c03ba849ec0a.tar.bz2 |
initial import
Diffstat (limited to 'abs/core-testing/php/PKGBUILD')
-rw-r--r-- | abs/core-testing/php/PKGBUILD | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/abs/core-testing/php/PKGBUILD b/abs/core-testing/php/PKGBUILD new file mode 100644 index 0000000..68ece33 --- /dev/null +++ b/abs/core-testing/php/PKGBUILD @@ -0,0 +1,174 @@ +# $Id: PKGBUILD 4664 2008-07-08 13:58:05Z allan $ +# Maintainer: Pierre Schmitz <pierre@archlinux.de> + +pkgname=php +pkgver=5.2.6 +pkgrel=4 +_suhosinver=0.9.6.2 +pkgdesc='A high-level scripting language' +arch=('i686' 'x86_64') +license=('PHP') +url='http://www.php.net' +backup=('etc/php/php.ini') +install=php.install +depends=('glibc' 'readline' 'ncurses' 'libxml2' 'pcre') +makedepends=('apache' 'imap' 'postgresql-libs' 'mysql' 'libldap' \ + 'libpng' 'libjpeg' 'sqlite3' 'unixodbc' 'net-snmp' \ + 'libmcrypt' 'tidyhtml' 'aspell' 'libtool' 'freetype2' 'libjpeg' \ + 'curl' 'libxslt' 'pam' 'openssl' 'bzip2' 'gdbm' 'db>=4.7') +optdepends=('bzip2: bz2' \ + 'curl: curl' \ + 'gdbm: dba' \ + 'libpng: gd' \ + 'libjpeg: gd' \ + 'freetype2: gd' \ + 'pam: imap' \ + 'libldap: ldap' \ + 'mcrypt: mcrypt' \ + 'libtool: mcrypt' \ + 'libmysqlclient: mysql/mysqli' \ + 'unixodbc: odbc/pdo_odbc' \ + 'openssl: openssl' \ + 'postgresql-libs: pgsql/pdo_pgsql' \ + 'aspell: pspell' \ + 'net-snmp: snmp' \ + 'sqlite3: sqlite' \ + 'tidyhtml: tidy' \ + 'libxslt: xsl' \ + ) +options=('emptydirs') +source=("http://www.php.net/distributions/${pkgname}-${pkgver}.tar.bz2" \ + "http://download.suhosin.org/suhosin-patch-${pkgver}-${_suhosinver}.patch.gz" \ + 'php.ini' 'apache.conf' 'db-configure.patch') +md5sums=('7380ffecebd95c6edb317ef861229ebd' + 'f2ec986341a314c271259dbe4d940858' + '0ee1dad48f7d67af3d2c78ca6eed68ba' + '96ca078be6729b665be8a865535a97bf' + '74e5ce5a02488ec91b1c59f539e42936') + +build() { + phpconfig="--prefix=/usr \ + --sysconfdir=/etc/php \ + --with-layout=GNU \ + --with-config-file-path=/etc/php \ + --with-config-file-scan-dir=/etc/php/conf.d \ + --enable-inline-optimization \ + --disable-debug \ + --disable-rpath \ + --disable-static \ + --enable-shared \ + " + + phpextensions="--with-openssl=shared \ + --with-zlib=shared \ + --enable-bcmath=shared \ + --with-bz2=shared \ + --enable-calendar=shared \ + --with-curl=shared \ + --enable-dba=shared \ + --without-db2 \ + --without-db3 \ + --with-db4=shared \ + --with-gdbm=shared \ + --enable-dbase=shared \ + --enable-exif=shared \ + --enable-ftp=shared \ + --with-gd=shared \ + --enable-gd-native-ttf \ + --with-jpeg-dir=shared,/usr \ + --with-png-dir=shared,/usr \ + --with-gettext=shared \ + --with-imap=shared \ + --with-imap-ssl=shared \ + --with-ldap=shared \ + --enable-mbstring=shared \ + --with-mcrypt=shared \ + --with-mysql=shared \ + --with-mysql-sock=/tmp/mysql.sock \ + --with-mysql=shared \ + --with-mysqli=shared \ + --with-ncurses=shared \ + --with-unixODBC=shared,/usr \ + --enable-pdo=shared \ + --with-pdo-mysql=shared \ + --with-pdo-sqlite=shared \ + --with-pdo-odbc=shared,unixODBC,/usr \ + --with-pdo-pgsql=shared \ + --with-sqlite=shared \ + --with-pgsql=shared \ + --enable-shmop=shared \ + --with-snmp=shared \ + --enable-soap=shared \ + --enable-sqlite-utf8=shared \ + --enable-sysvmsg=shared \ + --enable-sysvsem=shared \ + --enable-sysvshm=shared \ + --with-tidy=shared \ + --with-xsl=shared \ + --enable-zip=shared \ + --enable-posix=shared \ + --enable-sockets=shared \ + --enable-xml \ + --with-ttf=shared \ + --enable-session=shared \ + --with-regex=php \ + --with-pcre-regex=/usr \ + --enable-mbstring=all \ + --enable-mbregex \ + --enable-json=shared \ + --with-iconv=shared \ + --with-xmlrpc=shared \ + --with-pspell=shared \ + --with-freetype-dir=shared,/usr \ + --with-mime-magic=shared \ + " + + cd ${srcdir}/${pkgname}-${pkgver} + + # avoid linking against old db version + patch -p0 -i ${srcdir}/db-configure.patch || return 1 + + # apply suhosin patch + patch -p1 -i ${srcdir}/suhosin-patch-${pkgver}-${_suhosinver}.patch || return 1 + + # cli + ./configure ${phpconfig} \ + --disable-cgi \ + --with-readline \ + --enable-pcntl \ + --with-pear=/usr/share/pear \ + ${phpextensions} || return 1 + make || return 1 + # make test + make INSTALL_ROOT=${pkgdir} install || return 1 + + # fix pear path + sed "s|$PWD||g" -i ${pkgdir}/usr/{bin/pear,share/pear/pearcmd.php} + # cleanup + rm -f ${pkgdir}`${pkgdir}/usr/bin/php-config --extension-dir`/*.a + rm -rf ${pkgdir}/{.registry,.channels,.depdb*,.lock,.filemap} + rmdir ${pkgdir}/usr/include/php/include + # install php.ini + install -D -m644 ${srcdir}/php.ini ${pkgdir}/etc/php/php.ini + install -d -m755 ${pkgdir}/etc/php/conf.d/ + + # cgi and fcgi + ./configure ${phpconfig} \ + --enable-fastcgi \ + --enable-cgi \ + --enable-discard-path \ + --enable-force-cgi-redirect \ + --disable-cli \ + ${phpextensions} || return 1 + make || return 1 + install -D -m755 sapi/cgi/php-cgi ${pkgdir}/usr/bin/php-cgi || return 1 + + # mod_php + ./configure ${phpconfig} \ + --with-apxs2 \ + --disable-cli \ + ${phpextensions} || return 1 + make || return 1 + install -D -m644 libs/libphp5.so ${pkgdir}/usr/lib/httpd/modules/libphp5.so || return 1 + install -D -m644 ${srcdir}/apache.conf ${pkgdir}/etc/httpd/conf/extra/php5_module.conf || return 1 +} |