-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathtemplate
More file actions
370 lines (335 loc) · 10 KB
/
Copy pathtemplate
File metadata and controls
370 lines (335 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
# Template file for 'php8.1'
# rebuild php8.1-apcu and php8.1-imagick when updating this package
pkgname=php8.1
version=8.1.34
revision=1
_php_version=${version%.*}
hostmakedepends="bison pkg-config apache-devel autoconf"
makedepends="apache-devel enchant2-devel freetds-devel freetype-devel gdbm-devel
gmp-devel libcurl-devel libjpeg-turbo-devel libmariadbclient-devel
libsodium-devel libtidy5-devel libxslt-devel libzip-devel net-snmp-devel
postgresql-libs-devel readline-devel sqlite-devel unixodbc-devel pcre2-devel
libxml2-devel
libffi-devel oniguruma-devel gd-devel acl-devel"
short_desc="HTML-embedded scripting language"
maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
license="PHP-3.01"
homepage="https://www.php.net"
changelog="https://raw.githubusercontent.com/php/php-src/php-${version}/NEWS"
# this is the source where the www.php.net code pulls the tarballs it serves
# at https://www.php.net/distributions/
distfiles="https://github.com/php/web-php-distributions/raw/master/php-${version}.tar.gz"
checksum=3c5b060ec8e0d5dd1d8237823f3161cc8bc5342aab3c46893eba9857759c4bfa
provides="php-runtime-${version}_1"
# pear is dead, php8.1-pear depends is broken and noone notices it,
# noone is using it
replaces="php8.1-pear>=0"
system_accounts="_phpfpm"
_phpfpm_homedir="/var/empty"
conf_files="/etc/php${_php_version}/php.ini"
lib32disabled=yes
if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then
makedepends+=" libxcrypt-devel"
fi
CFLAGS="-D_FILE_OFFSET_BITS=64"
if [ -n "$CROSS_BUILD" ]; then
# phar need php to build
hostmakedepends+=" php${_php_version}"
CFLAGS+=" -DHAVE_LIBDL
-DHAVE_DLOPEN
-DHAVE_DLSYM
-DHAVE_SHM_IPC
-DHAVE_SHM_MMAP_ANON
-DHAVE_SHM_MMAP_ZERO
-DHAVE_SHM_MMAP_POSIX
-DHAVE_SHM_MMAP_FILE"
fi
alternatives="
php:phar.phar:/usr/bin/phar${_php_version}.phar
php:php:/usr/bin/php${_php_version}
php:phar:/usr/bin/phar${_php_version}
php:phar.1:/usr/share/man/man1/phar${_php_version}.1
php:phar.phar.1:/usr/share/man/man1/phar${_php_version}.phar.1
php:php.1:/usr/share/man/man1/php${_php_version}.1"
do_configure() {
autoconf -f
}
do_build() {
local _phpconfig="--srcdir=.. \
--config-cache \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc/php${_php_version} \
--localstatedir=/var \
--with-layout=GNU \
--with-config-file-path=/etc/php${_php_version} \
--with-config-file-scan-dir=/etc/php${_php_version}/conf.d \
--disable-rpath \
--mandir=/usr/share/man \
--libdir=/usr/lib/php${_php_version} \
--datarootdir=/usr/share/php${_php_version} \
--datadir=/usr/share/php${_php_version} \
--program-suffix=${_php_version} \
--includedir=/usr/include/php${_php_version} \
"
local _phpextensions="--enable-bcmath=shared \
--enable-calendar=shared \
--enable-exif=shared \
--enable-ftp=shared \
--enable-intl=shared \
--enable-mbstring \
--enable-opcache \
--enable-pcntl \
--enable-phar=shared \
--enable-posix=shared \
--enable-shmop=shared \
--enable-soap=shared \
--enable-sockets=shared \
--enable-sysvmsg=shared \
--enable-sysvsem=shared \
--enable-sysvshm=shared \
--enable-mysqlnd \
--enable-gd=shared \
--with-external-gd \
--with-ffi=shared \
--with-bz2=shared,$XBPS_CROSS_BASE/usr/ \
--with-curl=shared \
--with-db4=$XBPS_CROSS_BASE/usr \
--with-enchant=shared,$XBPS_CROSS_BASE/usr \
--with-gdbm=$XBPS_CROSS_BASE/usr \
--with-gettext=shared \
--with-gmp=shared \
--with-iconv=shared \
--with-ldap=shared,$XBPS_CROSS_BASE/usr \
--with-ldap-sasl \
--with-sodium=shared \
--with-mhash \
--with-mysql-sock=/run/mysqld/mysqld.sock \
--with-mysqli=shared,mysqlnd \
--with-openssl=shared \
--with-external-pcre \
--with-pdo-mysql=shared,mysqlnd \
--with-pdo-odbc=shared,unixODBC,$XBPS_CROSS_BASE/usr \
--with-pdo-pgsql=shared,$XBPS_CROSS_BASE/usr \
--with-pdo-sqlite=shared,$XBPS_CROSS_BASE/usr \
--with-pgsql=shared,$XBPS_CROSS_BASE/usr \
--with-readline=$XBPS_CROSS_BASE/usr \
--with-snmp=shared,$XBPS_CROSS_BASE/usr \
--with-sqlite3=shared,$XBPS_CROSS_BASE/usr \
--with-unixODBC=shared,$XBPS_CROSS_BASE/usr \
--with-xsl=shared,$XBPS_CROSS_BASE/usr \
--with-tidy=shared,$XBPS_CROSS_BASE/usr \
--with-zip=shared \
--with-zlib \
${configure_args} \
"
if [ -n "$CROSS_BUILD" ]; then
local _make_env="PHAR_PHP=/usr/bin/php${_php_version} PHAR_PHP_MODULES=/usr/lib/php${_php_version}/modules"
fi
EXTENSION_DIR="/usr/lib/php${_php_version}/modules"
export EXTENSION_DIR
EXTRA_LIBS="-ldl"
export EXTRA_LIBS
# cgi,cli,embed,fcgi,fpm
mkdir -p build
cd build
ln -sf ../configure .
./configure ${_phpconfig} \
--host=${XBPS_CROSS_TRIPLET} \
--enable-cgi \
--enable-fpm \
--with-fpm-user=_phpfpm \
--with-fpm-group=_phpfpm \
--with-fpm-acl \
--enable-embed=shared \
${_phpextensions}
make ${makejobs} ${_make_env}
# apache
# reuse the previous run; this will save us a lot of time
cp -a ${wrksrc}/build ${wrksrc}/build-apache
cd ${wrksrc}/build-apache
./configure ${_phpconfig} \
--host=${XBPS_CROSS_TRIPLET} \
--with-apxs2 \
${_phpextensions}
make ${makejobs} ${_make_env}
}
do_check() {
make ${makejobs} -C build test
make ${makejobs} -C build-apache test
}
do_install() {
cd ${wrksrc}/build
local _env="INSTALL_ROOT=${DESTDIR}"
if [ -n "$CROSS_BUILD" ]; then
_env+=" PHAR_PHP=/usr/bin/php${_php_version}"
fi
make ${_env} install-{modules,cli,build,headers,programs,pharcmd}
# install php.ini
vinstall ${wrksrc}/php.ini-production 644 "etc/php${_php_version}" php.ini
# remove static modules
rm -f "${DESTDIR}/usr/lib/php${_php_version}/modules/*.a"
}
php8.1-devel_package() {
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/php${_php_version}/build"
vmove "usr/bin/php-config${_php_version}"
vmove "usr/bin/phpize${_php_version}"
vmove "usr/share/man/man1/phpize${_php_version}.1"
vmove "usr/share/man/man1/php-config${_php_version}.1"
}
}
php8.1-phpdbg_package() {
short_desc+=" - interactive debugger"
depends="php${_php_version}>=${version}_${revision}"
pkg_install() {
cd ${wrksrc}/build
make INSTALL_ROOT=${PKGDESTDIR} install-phpdbg
}
}
php8.1-cgi_package() {
short_desc+=' - CGI and FCGI SAPI'
depends="php${_php_version}>=${version}_${revision}"
pkg_install() {
cd ${wrksrc}/build
make INSTALL_ROOT=${PKGDESTDIR} install-cgi
}
}
php8.1-apache_package() {
short_desc+=' - Apache SAPI'
depends="php${_php_version}>=${version}_${revision}"
conf_files="/etc/apache/extra/php${_php_version}_module.conf"
alternatives="
php-apache:libphp.so:/usr/libexec/httpd/modules/libphp${_php_version}.so
php-apache:php_module.conf:/etc/apache/extra/php${_php_version}_module.conf"
pkg_install() {
vinstall ${wrksrc}/build-apache/libs/libphp.so 755 usr/libexec/httpd/modules "libphp${_php_version}.so"
vinstall ${FILESDIR}/apache.conf 644 etc/apache/extra "php${_php_version}_module.conf"
}
}
php8.1-fpm_package() {
short_desc+=' - FastCGI Process Manager'
depends="php${_php_version}>=${version}_${revision}"
conf_files="/etc/php${_php_version}/php-fpm.conf /etc/php${_php_version}/php-fpm.d/*"
pkg_install() {
cd ${wrksrc}/build
make INSTALL_ROOT=${PKGDESTDIR} install-fpm
vsv "php-fpm${_php_version}"
}
}
php8.1-embed_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - Embed SAPI'
pkg_install() {
cd ${wrksrc}/build
make INSTALL_ROOT=${PKGDESTDIR} PHP_SAPI=embed install-sapi
mv ${PKGDESTDIR}/usr/lib/libphp.so ${PKGDESTDIR}/usr/lib/libphp${_php_version}.so
}
}
php8.1-enchant_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - enchant module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/enchant.so"
}
}
php8.1-gd_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - gd module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/gd.so"
}
}
php8.1-intl_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - Internationalization module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/intl.so"
}
}
php8.1-ldap_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - LDAP module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/ldap.so"
}
}
php8.1-mysql_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - MySQL modules'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/*mysql*.so"
}
}
php8.1-odbc_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - ODBC modules'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/*odbc.so"
}
}
php8.1-pgsql_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - PostgreSQL modules'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/*pgsql.so"
}
}
php8.1-snmp_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - snmp module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/snmp.so"
}
}
php8.1-sqlite_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - sqlite module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/*sqlite*.so"
}
}
php8.1-tidy_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - tidy HTML module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/*tidy*.so"
}
}
php8.1-xsl_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - XSL module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/xsl.so"
}
}
php8.1-sodium_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - sodium module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/sodium.so"
}
}
php8.1-ffi_package() {
lib32disabled=yes
depends="php${_php_version}>=${version}_${revision}"
short_desc+=' - FFI module'
pkg_install() {
vmove "usr/lib/php${_php_version}/modules/ffi.so"
}
}