mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-08 22:11:58 +02:00
358 lines
11 KiB
Plaintext
358 lines
11 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Maintainer: Valery Kartel <valery.kartel@gmail.com>
|
|
pkgname=php7
|
|
_pkgreal=php
|
|
pkgver=7.0.17
|
|
pkgrel=5
|
|
pkgdesc="The PHP language runtime engine - 7th branch"
|
|
url="http://www.php.net/"
|
|
arch="all"
|
|
license="PHP-3"
|
|
options=""
|
|
depends="$pkgname-common"
|
|
depends_dom="$pkgname-xml"
|
|
depends_mysqlnd="$pkgname-mysqli"
|
|
depends_phar="$pkgname"
|
|
depends_soap="$pkgname-xml"
|
|
depends_wddx="$pkgname-xml"
|
|
depends_xmlreader="$pkgname-dom"
|
|
depends_xmlrpc="$pkgname-xml"
|
|
depends_xsl="$pkgname-dom"
|
|
makedepends="autoconf bison re2c apache2-dev libxml2-dev libxslt-dev libzip-dev bzip2-dev zlib-dev
|
|
aspell-dev enchant-dev expat-dev pcre-dev curl-dev gmp-dev icu-dev imap-dev
|
|
libical-dev libressl-dev openldap-dev net-snmp-dev db-dev krb5-dev gdbm-dev sqlite-dev
|
|
freetds-dev mariadb-dev postgresql-dev unixodbc-dev freetype-dev tidyhtml-dev libxpm-dev
|
|
libpng-dev libwebp-dev libjpeg-turbo-dev libmcrypt-dev gsoap-dev recode-dev
|
|
libedit-dev paxmark gettext-dev
|
|
"
|
|
source="http://php.net/distributions/$_pkgreal-$pkgver.tar.bz2
|
|
$pkgname-fpm.initd
|
|
$pkgname-fpm.logrotate
|
|
$pkgname-module.conf
|
|
install-pear.patch
|
|
tidy-buffio.patch
|
|
includedir.patch
|
|
fix-asm-constraints-in-aarch64-multiply-macro.patch
|
|
pid_log.patch
|
|
libressl.patch
|
|
"
|
|
builddir="$srcdir/$_pkgreal-$pkgver"
|
|
|
|
_exts="bcmath bz2 calendar ctype curl dba dom enchant exif ftp gd gettext gmp iconv imap intl json
|
|
ldap mbstring mcrypt mysqli mysqlnd odbc opcache openssl pcntl pdo pdo_dblib pdo_mysql
|
|
pdo_odbc pdo_pgsql pdo_sqlite pgsql phar:phar posix pspell session shmop snmp soap
|
|
sockets sqlite3 sysvmsg sysvsem sysvshm tidy wddx xml xmlreader xmlrpc xsl zip zlib
|
|
"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-apache2 $pkgname-phpdbg $pkgname-embed
|
|
$pkgname-litespeed $pkgname-cgi $pkgname-fpm $pkgname-pear::noarch
|
|
"
|
|
for _ext in $_exts; do
|
|
case "$_ext" in
|
|
*:*) subpackages="$subpackages $pkgname-$_ext";;
|
|
*) subpackages="$subpackages $pkgname-$_ext:_package_ext";;
|
|
esac
|
|
done
|
|
subpackages="$subpackages $pkgname-common::noarch"
|
|
|
|
_apiver="20151012"
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
|
|
default_prepare || return 1
|
|
update_config_sub || return 1
|
|
|
|
local vapi=$(sed -n '/#define PHP_API_VERSION/{s/.* //;p}' main/php.h)
|
|
if [ "$vapi" != "$_apiver" ]; then
|
|
error "Upstreram API version is now $vapi. Expecting $_apiver"
|
|
return 1
|
|
fi
|
|
autoconf
|
|
}
|
|
|
|
_build() {
|
|
export EXTENSION_DIR=/usr/lib/$pkgname/modules
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--program-suffix=7 \
|
|
--libdir=/usr/lib/$pkgname \
|
|
--datadir=/usr/share/$pkgname \
|
|
--sysconfdir=/etc/$pkgname \
|
|
--localstatedir=/var \
|
|
--with-layout=GNU \
|
|
--with-pic \
|
|
--with-pear=/usr/share/$pkgname \
|
|
--with-config-file-path=/etc/$pkgname \
|
|
--with-config-file-scan-dir=/etc/$pkgname/conf.d \
|
|
--disable-short-tags \
|
|
--with-openssl=shared --with-kerberos --with-system-ciphers \
|
|
--with-pcre-regex --with-pcre-dir \
|
|
--with-zlib=shared --with-zlib-dir \
|
|
--enable-bcmath=shared \
|
|
--with-bz2=shared \
|
|
--enable-calendar=shared \
|
|
--enable-ctype=shared \
|
|
--with-curl=shared \
|
|
--enable-dba=shared --with-gdbm --with-db4 \
|
|
--enable-dom=shared \
|
|
--with-enchant=shared \
|
|
--enable-exif=shared \
|
|
--enable-ftp=shared \
|
|
--with-gd=shared --with-webp-dir=shared --with-jpeg-dir=shared --with-png-dir=shared --with-xpm-dir=shared \
|
|
--with-freetype-dir=shared --enable-gd-native-ttf --enable-gd-jis-conv \
|
|
--with-gettext=shared \
|
|
--with-gmp=shared \
|
|
--with-iconv=shared \
|
|
--with-imap=shared --with-imap-ssl \
|
|
--enable-intl=shared --with-icu-dir=/usr \
|
|
--enable-json=shared \
|
|
--enable-libxml=shared --with-libxml-dir=shared --with-libexpat-dir=shared \
|
|
--with-ldap=shared --with-ldap-sasl \
|
|
--enable-mbstring=shared --enable-mbregex \
|
|
--with-mcrypt=shared \
|
|
--with-sqlite3=shared,/usr --with-pdo-sqlite=shared,/usr \
|
|
--with-pdo-dblib=shared \
|
|
--with-mysqli=shared,/usr/bin/mysql_config \
|
|
--enable-mysqlnd=shared --with-pdo-mysql=shared,/usr/bin/mysql_config --with-mysql-sock=/run/mysqld/mysqld.sock \
|
|
--with-pgsql=shared --with-pdo-pgsql=shared \
|
|
--with-unixODBC=shared,/usr -with-pdo-odbc=shared,unixODBC,/usr \
|
|
--with-dbmaker=shared \
|
|
--enable-opcache=shared \
|
|
--enable-pdo=shared \
|
|
--enable-pcntl=shared \
|
|
--enable-posix=shared \
|
|
--enable-phar=shared \
|
|
--with-pspell=shared \
|
|
--without-readline \
|
|
--with-libedit \
|
|
--enable-session=shared \
|
|
--enable-shmop=shared \
|
|
--with-snmp=shared \
|
|
--enable-soap=shared \
|
|
--enable-sockets=shared \
|
|
--enable-sysvmsg=shared \
|
|
--enable-sysvsem=shared \
|
|
--enable-sysvshm=shared \
|
|
--with-tidy=shared \
|
|
--enable-xml=shared \
|
|
--enable-xmlreader=shared \
|
|
--with-xmlrpc=shared \
|
|
--with-xsl=shared \
|
|
--enable-wddx=shared \
|
|
--enable-zip=shared --with-libzip=shared \
|
|
$@ || return 1
|
|
sed -ri "s/^(EXTRA_LDFLAGS[ ]*\=.*)/\1 -lpthread/" Makefile # see #183 (from main/php)
|
|
make || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
# phpdbg
|
|
_build --enable-phpdbg \
|
|
--enable-phpdbg \
|
|
--enable-phpdbg-webhelper \
|
|
--disable-cgi \
|
|
--disable-cli \
|
|
|| return 1
|
|
# apache2 module
|
|
_build --disable-phpdbg \
|
|
--disable-cgi \
|
|
--disable-cli \
|
|
--with-apxs2 \
|
|
|| return 1
|
|
mv libs/libphp7.so sapi/apache2handler/mod_php7.so
|
|
# cgi,cli,fpm,embed,litespeed
|
|
_build --disable-phpdbg \
|
|
--enable-fpm \
|
|
--enable-embed \
|
|
--with-litespeed \
|
|
|| return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make -j1 INSTALL_ROOT="$pkgdir" install || return 1
|
|
|
|
install -Dm644 php.ini-production "$pkgdir"/etc/$pkgname/php.ini || return 1
|
|
|
|
local file; for file in pear peardev pecl; do
|
|
sed -i -e "s~/usr/bin/php~/usr/bin/php7~g" \
|
|
-e "s~PHP=php~PHP=php7~" \
|
|
"$pkgdir"/usr/bin/$file || return 1
|
|
done
|
|
paxmark -m "$pkgdir"/usr/bin/php7
|
|
|
|
find "$pkgdir" -name '.*' | xargs rm -rf || return 1
|
|
rmdir "$pkgdir"/var/run
|
|
}
|
|
|
|
dev() {
|
|
default_dev
|
|
replaces="php-dev"
|
|
depends="$depends $pkgname $pkgname-pear"
|
|
|
|
mkdir -p "$subpkgdir"/usr/bin \
|
|
"$subpkgdir"/usr/lib/$pkgname || return 1
|
|
|
|
mv "$pkgdir"/usr/bin/php-config7 \
|
|
"$pkgdir"/usr/bin/phpize7 \
|
|
"$pkgdir"/usr/bin/peardev \
|
|
"$subpkgdir"/usr/bin/ || return 1
|
|
mv "$pkgdir"/usr/lib/$pkgname/build \
|
|
"$subpkgdir"/usr/lib/$pkgname || return 1
|
|
ln -sf /usr/bin/phpize7 "$subpkgdir"/usr/bin/phpize
|
|
ln -sf /usr/bin/php-config7 "$subpkgdir"/usr/bin/php-config
|
|
}
|
|
|
|
doc() {
|
|
default_doc
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname
|
|
|
|
local file
|
|
for file in CODING_STANDARDS CREDITS EXTENSIONS INSTALL LICENSE NEWS README* UPGRADING*; do
|
|
cp "$builddir"/$file "$subpkgdir"/usr/share/doc/$pkgname/ || return 1
|
|
done
|
|
}
|
|
|
|
apache2() {
|
|
pkgdesc="PHP Module for Apache2"
|
|
depends="$pkgname-common apache2"
|
|
|
|
install -D -m755 "$builddir"/sapi/apache2handler/mod_php7.so \
|
|
"$subpkgdir"/usr/lib/apache2/mod_php7.so || return 1
|
|
|
|
install -D -m644 "$srcdir"/php7-module.conf \
|
|
"$subpkgdir"/etc/apache2/conf.d/php7-module.conf
|
|
}
|
|
|
|
phpdbg() {
|
|
pkgdesc="Interactive PHP debugger"
|
|
depends="$pkgname-common"
|
|
|
|
install -Dm755 "$builddir"/sapi/phpdbg/phpdbg \
|
|
"$subpkgdir"/usr/bin/phpdbg7
|
|
}
|
|
|
|
embed() {
|
|
pkgdesc="PHP Embedded Library"
|
|
depends="$pkgname-common"
|
|
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/libphp*.so "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
litespeed() {
|
|
pkgdesc="PHP LiteSpeed SAPI"
|
|
depends="$pkgname-common"
|
|
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/lsphp "$subpkgdir"/usr/bin/lsphp7
|
|
}
|
|
|
|
cgi() {
|
|
pkgdesc="PHP Common Gateway Interface"
|
|
depends="$pkgname-common"
|
|
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/php-cgi7 "$subpkgdir"/usr/bin/
|
|
ln -s php-cgi7 "$subpkgdir"/usr/bin/php-cgi
|
|
}
|
|
|
|
fpm() {
|
|
pkgdesc="PHP FastCGI Process Manager"
|
|
depends="$pkgname-common"
|
|
|
|
mv "$pkgdir"/var "$subpkgdir"/ || return 1
|
|
|
|
mkdir -p "$subpkgdir"/etc/$pkgname \
|
|
"$subpkgdir"/usr \
|
|
"$subpkgdir"/var/lib \
|
|
"$subpkgdir"/var/log/$pkgname
|
|
|
|
mv "$pkgdir"/usr/share/$pkgname/fpm "$subpkgdir"/var/lib/$pkgname/ || return 1
|
|
mv "$pkgdir"/usr/sbin "$subpkgdir"/usr/ || return 1
|
|
mv "$pkgdir"/etc/$pkgname/php-fpm* "$subpkgdir"/etc/$pkgname/ || return 1
|
|
|
|
local file; for file in php-fpm.conf php-fpm.d/www.conf; do
|
|
mv "$subpkgdir"/etc/$pkgname/$file.default \
|
|
"$subpkgdir"/etc/$pkgname/$file || return 1
|
|
done
|
|
|
|
install -D -m755 "$srcdir"/$pkgname-fpm.initd "$subpkgdir"/etc/init.d/php-fpm7 || return 1
|
|
install -D -m644 "$srcdir"/$pkgname-fpm.logrotate "$subpkgdir"/etc/logrotate.d/php-fpm7
|
|
}
|
|
|
|
pear() {
|
|
pkgdesc="PHP Extension and Application Repository"
|
|
depends="$pkgname $pkgname-xml"
|
|
|
|
mkdir -p "$subpkgdir"/usr/bin \
|
|
"$subpkgdir"/etc/$pkgname
|
|
|
|
local file; for file in pecl pear; do
|
|
mv "$pkgdir"/usr/bin/$file "$subpkgdir"/usr/bin/
|
|
done
|
|
mv "$pkgdir"/etc/$pkgname/pear.conf "$subpkgdir"/etc/$pkgname/ || return 1
|
|
mv "$pkgdir"/usr/share "$subpkgdir"/usr/
|
|
}
|
|
|
|
common() {
|
|
pkgdesc="$pkgdesc (common config)"
|
|
depends=""
|
|
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/lib "$subpkgdir"/usr/ || return 1
|
|
mv "$pkgdir"/etc "$subpkgdir"/ || return 1
|
|
|
|
mkdir "$subpkgdir"/etc/$pkgname/conf.d
|
|
}
|
|
|
|
phar() {
|
|
_package_ext || return 1
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/phar* "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
_package_ext() {
|
|
local extname="${subpkgname#$pkgname-}"
|
|
local extdepends="$(eval "echo \$depends_$extname")"
|
|
pkgdesc="PHP7 extension: $extname"
|
|
depends="$depends $extdepends"
|
|
|
|
case "$extname" in
|
|
pdo_*) depends="$depends $pkgname-pdo"
|
|
esac
|
|
|
|
# extension dependencies and loading order
|
|
local elo=00
|
|
[ -z "$extdepends" ] || elo=01
|
|
|
|
# extension prefix
|
|
local prefix=
|
|
[ "$extname" != "opcache" ] || prefix="zend_"
|
|
|
|
mkdir -p "$subpkgdir"/usr/lib/$pkgname/modules \
|
|
"$subpkgdir"/etc/$pkgname/conf.d
|
|
mv "$pkgdir"/usr/lib/$pkgname/modules/$extname.so \
|
|
"$subpkgdir"/usr/lib/$pkgname/modules/ || return 1
|
|
|
|
echo "${prefix}extension=$extname.so" \
|
|
> "$subpkgdir"/etc/$pkgname/conf.d/${elo}_${extname}.ini
|
|
}
|
|
|
|
sha512sums="a50e53915cb4af59d90cf5a754f74bc307bf0de7904297eb8364d85418399203b6f81ddff23e4c68d36bfe8c4ce8ae1d511ec3cad21872c5113acc0f494b43d7 php-7.0.17.tar.bz2
|
|
1c708de82d1086f272f484faf6cf6d087af7c31750cc2550b0b94ed723961b363f28a947b015b2dfc0765caea185a75f5d2c2f2b099c948b65c290924f606e4f php7-fpm.initd
|
|
cacce7bf789467ff40647b7319e3760c6c587218720538516e8d400baa75651f72165c4e28056cd0c1dc89efecb4d00d0d7823bed80b29136262c825ce816691 php7-fpm.logrotate
|
|
fbf9a1572d37370ec0d126502e1d066e045a992484d8fc4f1e2ede330134c1a15f4029f29fa4daebd48eed78b045dc051ced69fbf1f11efc7ad81d884a639a99 php7-module.conf
|
|
f1177cbf6b1f44402f421c3d317aab1a2a40d0b1209c11519c1158df337c8945f3a313d689c939768584f3e4edbe52e8bd6103fb6777462326a9d94e8ab1f505 install-pear.patch
|
|
6894c9cba7752a3406e774d9efc0e058c37433493c1c20101e9563bf247c112157a67e306b06b9517b0422eca521f543d637a6cbd2cea7639e43f13d773b3d2b tidy-buffio.patch
|
|
199aecdbd3b4035aabf5379c215f82412d3c98b79a1ee186944e7fe1f0ed6f40789ea30e2355149491de6be34fc66c5e486e2a79a7e41ab2ae18706ef3ffe79b includedir.patch
|
|
d93d3fc015580cf5f75c6cbca4cd980e054b61e1068495da81a7e61f1af2c9ae14f09964c04928ad338142de78e4844aed885b1ad1865282072999fb045c8ad7 fix-asm-constraints-in-aarch64-multiply-macro.patch
|
|
82231c7b27b4d044272857dc713674884715ed8e36e54be06faa5d2a949ba4bca597628958a9c5683ec51c36e05a00f6be811c7e95112b0314c98528f584a8d6 pid_log.patch
|
|
d04d7cccae789ebf607f4fd107c26b580752353c8636c6c509123285063d274f3fb4aa28e0b31677515435e41a234e9990d45ceb70756ac7f7aa4cb9b11faecb libressl.patch"
|