summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD10
2 files changed, 12 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f88d9e98cab5..ddc001ac8b0b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Sun Jul 15 14:55:50 UTC 2018
pkgbase = php53
pkgdesc = A general-purpose scripting language that is especially suited to web development
pkgver = 5.3.29
- pkgrel = 8
+ pkgrel = 9
url = http://php.net
arch = i686
arch = x86_64
@@ -33,7 +35,7 @@ pkgbase = php53
makedepends = gmp
makedepends = systemd
source = http://php.net/distributions/php-5.3.29.tar.xz
- source = http://download.suhosin.org/suhosin-patch-5.3.9-0.9.10.patch.gz
+ source = https://distfiles.macports.org/php5/suhosin-patch-5.3.9-0.9.10.patch.gz
source = php.ini.patch
source = apache.conf
source = php-fpm.conf.in.patch
diff --git a/PKGBUILD b/PKGBUILD
index ed7f495d97c8..d50d6af14921 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,7 +28,7 @@ pkgname=("${pkgbase}"
"${pkgbase}-xsl")
pkgver=5.3.29
_suhosinver=5.3.9-0.9.10
-pkgrel=8
+pkgrel=9
pkgdesc="A general-purpose scripting language that is especially suited to web development"
arch=('i686' 'x86_64')
license=('PHP')
@@ -39,7 +39,7 @@ makedepends=('apache' 'c-client' 'postgresql-libs' 'libldap' 'smtp-forwarder'
'curl' 'libxslt' 'openssl-1.0' 'db' 'gmp' 'systemd')
source=("http://php.net/distributions/${_pkgbase}-${pkgver}.tar.xz"
- "http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz"
+ "https://distfiles.macports.org/php5/suhosin-patch-${_suhosinver}.patch.gz"
'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles'
'suhosin.patch'
@@ -116,6 +116,12 @@ prepare() {
# Allow php-tidy to compile with tidy-html5
sed 's/buffio\.h/tidybuffio\.h/' -i ext/tidy/tidy.c
+
+ msg "Enchant 2 fixes"
+ sed -i -e 's|include/enchant|include/enchant-2|' -e 's|-lenchant|-lenchant-2|' configure
+
+ msg "ICU fixes"
+ sed -i '/U_NAMESPACE_END/a using namespace icu;' ext/intl/msgformat/msgformat_helpers.cpp
}
build() {