2b2f020d5131ecff6c5f72e6363b5acd7f248f0b
[packages.git] / lang / php5 / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=php
11 PKG_VERSION:=5.3.8
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://www.php.net/distributions/
16 PKG_MD5SUM:=704cd414a0565d905e1074ffdc1fadfb
17
18 PKG_FIXUP:=libtool no-autoreconf
19 PKG_BUILD_PARALLEL:=1
20
21 PHP5_MODULES = \
22         apc \
23         ctype curl \
24         fileinfo \
25         dio dom \
26         exif \
27         ftp \
28         gettext gd gmp \
29         hash http \
30         iconv \
31         json \
32         ldap libevent \
33         mbstring mcrypt mysql \
34         openssl \
35         pcntl pdo pdo-mysql pdo-pgsql pdo-sqlite pgsql \
36         session simplexml soap sockets sqlite sqlite3 sysvmsg sysvsem sysvshm \
37         tokenizer \
38         xml xmlreader xmlwriter \
39
40 PKG_CONFIG_DEPENDS:= \
41         CONFIG_PACKAGE_php5-cgi CONFIG_PACKAGE_php5-cli \
42         $(patsubst %,CONFIG_PACKAGE_php5-mod-%,$(PHP5_MODULES)) \
43         CONFIG_PHP5_FILTER CONFIG_PHP5_LIBXML
44
45 include $(INCLUDE_DIR)/package.mk
46 include $(INCLUDE_DIR)/nls.mk
47
48 define Package/php5/Default
49   SUBMENU:=PHP
50   SECTION:=lang
51   CATEGORY:=Languages
52   TITLE:=PHP5 Hypertext preprocessor
53   URL:=http://www.php.net/
54   MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
55   DEPENDS:=php5
56 endef
57
58 define Package/php5/Default/description
59   PHP is a widely-used general-purpose scripting language that is especially 
60   suited for Web development and can be embedded into HTML.
61 endef
62
63 define Package/php5/config
64         config PHP5_FILTER
65                 bool "PHP5 Filter support"
66                 depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
67
68         config PHP5_LIBXML
69                 bool "PHP5 LIBXML support"
70                 depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
71 endef
72
73 define Package/php5
74   $(call Package/php5/Default)
75
76   DEPENDS:=+libpcre +zlib \
77            +PHP5_LIBXML:libxml2
78 endef
79
80 define Package/php5/description
81   $(call Package/php5/Default/description)
82   This package contains only the PHP config file. You must actually choose 
83   your PHP flavour (cli, cgi or fastcgi).
84 endef
85
86 define Package/php5-cli
87   $(call Package/php5/Default)
88   TITLE+= (CLI)
89 endef
90
91 define Package/php5-cli/description
92   $(call Package/php5/Default/description)
93   This package contains the CLI version of the PHP5 interpreter.
94 endef
95
96 define Package/php5-cgi
97   $(call Package/php5/Default)
98   TITLE+= (CGI & FastCGI)
99 endef
100
101 define Package/php5-cgi/description
102   $(call Package/php5/Default/description)
103   This package contains the CGI version of the PHP5 interpreter.
104 endef
105
106 define Package/php5-fastcgi
107   $(call Package/php5/Default)
108   DEPENDS+= +php5-cgi
109   TITLE:=FastCGI startup script
110 endef
111
112 define Package/php5-fastcgi/description
113   As FastCGI support is now a core feature the php5-fastcgi package now depends
114   on the php5-cgi package, containing just the startup script.
115 endef
116
117 CONFIGURE_ARGS+= \
118         --enable-shared \
119         --disable-static \
120         --disable-rpath \
121         --disable-debug \
122         --without-pear \
123         \
124         --with-config-file-path=/etc \
125         --with-config-file-scan-dir=/etc/php5 \
126         --enable-magic-quotes \
127         --disable-short-tags \
128         \
129         --with-zlib="$(STAGING_DIR)/usr" \
130           --with-zlib-dir="$(STAGING_DIR)/usr" \
131         --with-pcre-regex="$(STAGING_DIR)/usr" \
132         --disable-phar
133
134 ifneq ($(SDK),)
135   PKG_BUILD_DEPENDS+=libopenssl zlib libcurl libgd libgmp libopenldap libmysqlclient libpq libsqlite2 libpthread libsqlite3 libpcre libxml2
136 # force PKG_CONFIGURE_{LIBS,OPTS} below when built in the SDK
137   CONFIG_PACKAGE_php5-cli:=m
138   CONFIG_PACKAGE_php5-cgi:=m
139   CONFIG_PACKAGE_php5-fastcgi:=m
140   CONFIG_PACKAGE_php5-mod-curl:=m
141   CONFIG_PACKAGE_php5-mod-gd:=m
142   CONFIG_PACKAGE_php5-mod-gmp:=m
143   CONFIG_PACKAGE_php5-mod-ldap:=m
144   CONFIG_PACKAGE_php5-mod-mysql:=m
145   CONFIG_PACKAGE_php5-mod-pgsql:=m
146   CONFIG_PACKAGE_php5-mod-sqlite:=m
147   CONFIG_PACKAGE_php5-mod-sqlite3:=m
148   CONFIG_PACKAGE_php5-mod-xml:=m
149 endif
150
151 ifneq ($(CONFIG_PACKAGE_php5-cli),)
152   CONFIGURE_ARGS+= --enable-cli
153 else
154   CONFIGURE_ARGS+= --disable-cli
155 endif
156
157 ifneq ($(CONFIG_PACKAGE_php5-cgi),)
158   CONFIGURE_ARGS+= --enable-cgi
159 else
160   CONFIGURE_ARGS+= --disable-cgi
161 endif
162
163 ifneq ($(CONFIG_PACKAGE_php5-mod-apc),)
164   CONFIGURE_ARGS+= --enable-apc=shared --disable-apc-mmap --disable-apc-pthreadmutex
165 else
166   CONFIGURE_ARGS+= --disable-apc
167 endif
168
169 ifneq ($(CONFIG_PACKAGE_php5-mod-ctype),)
170   CONFIGURE_ARGS+= --enable-ctype=shared
171 else
172   CONFIGURE_ARGS+= --disable-ctype
173 endif
174
175 ifneq ($(CONFIG_PACKAGE_php5-mod-curl),)
176   CONFIGURE_ARGS+= --with-curl=shared,"$(STAGING_DIR)/usr"
177 else
178   CONFIGURE_ARGS+= --without-curl
179 endif
180
181 ifneq ($(CONFIG_PACKAGE_php5-mod-fileinfo),)
182   CONFIGURE_ARGS+= --enable-fileinfo=shared
183 else
184   CONFIGURE_ARGS+= --disable-fileinfo
185 endif
186
187 ifneq ($(CONFIG_PACKAGE_php5-mod-gettext),)
188   CONFIGURE_ARGS+= --with-gettext=shared,"$(STAGING_DIR)/usr/lib/libintl-full"
189 else
190   CONFIGURE_ARGS+= --without-gettext
191 endif
192
193 ifneq ($(CONFIG_PACKAGE_php5-mod-dio),)
194   CONFIGURE_ARGS+= --enable-dio=shared
195 else
196   CONFIGURE_ARGS+= --disable-dio
197 endif
198
199 ifneq ($(CONFIG_PACKAGE_php5-mod-dom),)
200   CONFIGURE_ARGS+= --enable-dom=shared
201 else
202   CONFIGURE_ARGS+= --disable-dom
203 endif
204
205 ifneq ($(CONFIG_PACKAGE_php5-mod-exif),)
206   CONFIGURE_ARGS+= --enable-exif=shared
207 else
208   CONFIGURE_ARGS+= --disable-exif
209 endif
210
211 ifneq ($(CONFIG_PACKAGE_php5-mod-ftp),)
212   CONFIGURE_ARGS+= --enable-ftp=shared
213 else
214   CONFIGURE_ARGS+= --disable-ftp
215 endif
216
217 ifneq ($(CONFIG_PACKAGE_php5-mod-gd),)
218   CONFIGURE_ARGS+= \
219         --with-gd=shared,"$(STAGING_DIR)/usr" \
220         --without-freetype-dir \
221         --with-jpeg-dir="$(STAGING_DIR)/usr" \
222         --with-png-dir="$(STAGING_DIR)/usr" \
223         --without-xpm-dir \
224         --without-t1lib \
225         --enable-gd-native-ttf \
226         --disable-gd-jis-conv
227 else
228   CONFIGURE_ARGS+= --without-gd
229 endif
230
231 ifneq ($(CONFIG_PACKAGE_php5-mod-gmp),)
232   CONFIGURE_ARGS+= --with-gmp=shared,"$(STAGING_DIR)/usr"
233 else
234   CONFIGURE_ARGS+= --without-gmp
235 endif
236
237 ifneq ($(CONFIG_PACKAGE_php5-mod-hash),)
238   CONFIGURE_ARGS+= --enable-hash=shared
239 else
240   CONFIGURE_ARGS+= --disable-hash
241 endif
242
243 ifneq ($(CONFIG_PACKAGE_php5-mod-http),)
244   CONFIGURE_ARGS+= \
245         --enable-http=shared \
246         --without-http-shared-deps \
247         --with-http-curl-requests="$(STAGING_DIR)/usr"
248 else
249   CONFIGURE_ARGS+= --disable-http
250 endif
251
252 ifneq ($(CONFIG_PACKAGE_php5-mod-iconv),)
253   CONFIGURE_ARGS+= --with-iconv=shared,"$(ICONV_PREFIX)"
254 else
255   CONFIGURE_ARGS+= --without-iconv
256 endif
257
258 ifneq ($(CONFIG_PACKAGE_php5-mod-json),)
259   CONFIGURE_ARGS+= --enable-json=shared
260 else
261   CONFIGURE_ARGS+= --disable-json
262 endif
263
264 ifneq ($(CONFIG_PACKAGE_php5-mod-ldap),)
265   CONFIGURE_ARGS+= \
266         --with-ldap=shared,"$(STAGING_DIR)/usr" \
267         --with-ldap-sasl="$(STAGING_DIR)/usr"
268 else
269   CONFIGURE_ARGS+= --without-ldap
270 endif
271
272 ifneq ($(CONFIG_PACKAGE_php5-mod-libevent),)
273   CONFIGURE_ARGS+= --with-libevent=shared,"$(STAGING_DIR)/usr"
274 else
275   CONFIGURE_ARGS+= --without-libevent
276 endif
277
278 ifneq ($(CONFIG_PACKAGE_php5-mod-mbstring),)
279   CONFIGURE_ARGS+= --enable-mbstring=shared --enable-mbregex
280 else
281   CONFIGURE_ARGS+= --disable-mbstring
282 endif
283
284 ifneq ($(CONFIG_PACKAGE_php5-mod-mcrypt),)
285   CONFIGURE_ARGS+=  --with-mcrypt=shared,"$(STAGING_DIR)/usr"
286 else
287   CONFIGURE_ARGS+= --without-mcrypt
288 endif
289
290 ifneq ($(CONFIG_PACKAGE_php5-mod-mysql),)
291   CONFIGURE_ARGS+= --with-mysql=shared,"$(STAGING_DIR)/usr"
292 else
293   CONFIGURE_ARGS+= --without-mysql
294 endif
295
296 ifneq ($(CONFIG_PACKAGE_php5-mod-openssl),)
297   CONFIGURE_ARGS+= \
298         --with-openssl=shared,"$(STAGING_DIR)/usr" \
299         --with-kerberos=no \
300         --with-openssl-dir="$(STAGING_DIR)/usr"
301 else
302   CONFIGURE_ARGS+= --without-openssl
303 endif
304
305 ifneq ($(CONFIG_PACKAGE_php5-mod-pcntl),)
306   CONFIGURE_ARGS+= --enable-pcntl=shared
307 else
308   CONFIGURE_ARGS+= --disable-pcntl
309 endif
310
311 ifneq ($(CONFIG_PACKAGE_php5-mod-pdo),)
312   CONFIGURE_ARGS+= --enable-pdo=shared
313   ifneq ($(CONFIG_PACKAGE_php5-mod-pdo-mysql),)
314     CONFIGURE_ARGS+= --with-pdo-mysql=shared,"$(STAGING_DIR)/usr"
315   else
316     CONFIGURE_ARGS+= --without-pdo-mysql
317   endif
318   ifneq ($(CONFIG_PACKAGE_php5-mod-pdo-pgsql),)
319     CONFIGURE_ARGS+= --with-pdo-pgsql=shared,"$(STAGING_DIR)/usr"
320   else
321     CONFIGURE_ARGS+= --without-pdo-pgsql
322   endif
323   ifneq ($(CONFIG_PACKAGE_php5-mod-pdo-sqlite),)
324     CONFIGURE_ARGS+= --with-pdo-sqlite=shared,"$(STAGING_DIR)/usr"
325   else
326     CONFIGURE_ARGS+= --without-pdo-sqlite
327   endif
328 else
329   CONFIGURE_ARGS+= --disable-pdo
330 endif
331
332 ifneq ($(CONFIG_PACKAGE_php5-mod-pgsql),)
333   CONFIGURE_ARGS+= --with-pgsql=shared,"$(STAGING_DIR)/usr"
334 else
335   CONFIGURE_ARGS+= --without-pgsql
336 endif
337
338 ifneq ($(CONFIG_PACKAGE_php5-mod-session),)
339   CONFIGURE_ARGS+= --enable-session=shared
340 else
341   CONFIGURE_ARGS+= --disable-session
342 endif
343
344 ifneq ($(CONFIG_PACKAGE_php5-mod-simplexml),)
345   CONFIGURE_ARGS+= --enable-simplexml=shared
346 else
347   CONFIGURE_ARGS+= --disable-simplexml
348 endif
349
350 ifneq ($(CONFIG_PACKAGE_php5-mod-soap),)
351   CONFIGURE_ARGS+= --enable-soap=shared
352 else
353   CONFIGURE_ARGS+= --disable-soap
354 endif
355
356 ifneq ($(CONFIG_PACKAGE_php5-mod-sockets),)
357   CONFIGURE_ARGS+= --enable-sockets=shared
358 else
359   CONFIGURE_ARGS+= --disable-sockets
360 endif
361
362 ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite),)
363   CONFIGURE_ARGS+= --with-sqlite=shared,"$(STAGING_DIR)/usr"
364 else
365   CONFIGURE_ARGS+= --without-sqlite
366 endif
367
368 ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite3),)
369   CONFIGURE_ARGS+= --with-sqlite3=shared,"$(STAGING_DIR)/usr"
370 else
371   CONFIGURE_ARGS+= --without-sqlite3
372 endif
373
374 ifneq ($(CONFIG_PACKAGE_php5-mod-sysvmsg),)
375   CONFIGURE_ARGS+= --enable-sysvmsg=shared
376 else
377   CONFIGURE_ARGS+= --disable-sysvmsg
378 endif
379
380 ifneq ($(CONFIG_PACKAGE_php5-mod-sysvsem),)
381   CONFIGURE_ARGS+= --enable-sysvsem=shared
382 else
383   CONFIGURE_ARGS+= --disable-sysvsem
384 endif
385
386 ifneq ($(CONFIG_PACKAGE_php5-mod-sysvshm),)
387   CONFIGURE_ARGS+= --enable-sysvshm=shared
388 else
389   CONFIGURE_ARGS+= --disable-sysvshm
390 endif
391
392 ifneq ($(CONFIG_PACKAGE_php5-mod-tokenizer),)
393   CONFIGURE_ARGS+= --enable-tokenizer=shared
394 else
395   CONFIGURE_ARGS+= --disable-tokenizer
396 endif
397
398 ifneq ($(CONFIG_PACKAGE_php5-mod-xml),)
399   CONFIGURE_ARGS+= --enable-xml=shared,"$(STAGING_DIR)/usr"
400   ifneq ($(CONFIG_PHP5_LIBXML),)
401     CONFIGURE_ARGS+= --with-libxml-dir="$(STAGING_DIR)/usr/include/libxml2"
402   else
403     CONFIGURE_ARGS+= --with-libexpat-dir="$(STAGING_DIR)/usr"
404   endif
405 else
406   CONFIGURE_ARGS+= --disable-xml
407 endif
408
409 ifneq ($(CONFIG_PACKAGE_php5-mod-xmlreader),)
410   CONFIGURE_ARGS+= --enable-xmlreader=shared,"$(STAGING_DIR)/usr"
411 else
412   CONFIGURE_ARGS+= --disable-xmlreader
413 endif
414
415 ifneq ($(CONFIG_PACKAGE_php5-mod-xmlwriter),)
416   CONFIGURE_ARGS+= --enable-xmlwriter=shared,"$(STAGING_DIR)/usr"
417 else
418   CONFIGURE_ARGS+= --disable-xmlwriter
419 endif
420
421 ifneq ($(CONFIG_PHP5_FILTER),)
422   CONFIGURE_ARGS+= --enable-filter
423 else
424   CONFIGURE_ARGS+= --disable-filter
425 endif
426
427 ifneq ($(CONFIG_PHP5_LIBXML),)
428   CONFIGURE_ARGS+= --enable-libxml
429   CONFIGURE_ARGS+= --with-libxml-dir="$(STAGING_DIR)/usr/include/libxml2"
430 else
431   CONFIGURE_ARGS+= --disable-libxml
432 endif
433
434 CONFIGURE_VARS+= \
435         LIBS="$(CONFIGURE_LIBS)" \
436         ac_cv_c_bigendian_php=$(if $(CONFIG_BIG_ENDIAN),yes,no) \
437         php_cv_cc_rpath="no" \
438         iconv_impl_name="gnu_libiconv" \
439         ac_cv_php_xml2_config_path="$(STAGING_DIR)/host/bin/xml2-config" \
440
441 define Package/php5/conffiles
442 /etc/php.ini
443 endef
444
445 define Package/php5/install
446         $(INSTALL_DIR) $(1)/etc
447         $(INSTALL_DATA) ./files/php.ini $(1)/etc/
448 endef
449
450 define Package/php5-cli/install
451         $(INSTALL_DIR) $(1)/usr/bin
452         $(CP) $(PKG_BUILD_DIR)/sapi/cli/php $(1)/usr/bin/php-cli
453 endef
454
455 define Package/php5-cgi/install
456         $(INSTALL_DIR) $(1)/usr/bin
457         $(CP) $(PKG_BUILD_DIR)/sapi/cgi/php-cgi $(1)/usr/bin/php-cgi
458         ln -sf php-cgi $(1)/usr/bin/php-fcgi
459 endef
460
461 define Package/php5-fastcgi/install
462         $(INSTALL_DIR) $(1)/etc/init.d
463         $(INSTALL_BIN) ./files/php.init $(1)/etc/init.d/php
464 endef
465
466 define BuildModule
467
468   define Package/php5-mod-$(1)
469     $(call Package/php5/Default)
470
471     ifneq ($(3),)
472       DEPENDS+=$(3)
473     endif
474
475     TITLE:=$(2) shared module
476   endef
477
478   define Package/php5-mod-$(1)/install
479         $(INSTALL_DIR) $$(1)/usr/lib/php
480         $(INSTALL_BIN) $(PKG_BUILD_DIR)/modules/$(subst -,_,$(1)).so $$(1)/usr/lib/php/
481         $(INSTALL_DIR) $$(1)/etc/php5
482         echo "extension=$(subst -,_,$(1)).so" > $$(1)/etc/php5/$(subst -,_,$(1)).ini
483   endef
484
485   $$(eval $$(call BuildPackage,php5-mod-$(1)))
486
487 endef
488
489 $(eval $(call BuildPackage,php5))
490 $(eval $(call BuildPackage,php5-cli))
491 $(eval $(call BuildPackage,php5-cgi))
492 $(eval $(call BuildPackage,php5-fastcgi))
493
494 #$(eval $(call BuildModule,NAME,TITLE[,PKG DEPENDS]))
495 $(eval $(call BuildModule,apc,APC,+librt))
496 $(eval $(call BuildModule,ctype,Ctype))
497 $(eval $(call BuildModule,curl,cURL,+libcurl))
498 $(eval $(call BuildModule,fileinfo,Fileinfo,+libmagic))
499 $(eval $(call BuildModule,dio,Direct IO))
500 $(eval $(call BuildModule,dom,DOM,@PHP5_LIBXML +libxml2))
501 $(eval $(call BuildModule,exif,EXIF))
502 $(eval $(call BuildModule,ftp,FTP))
503 $(eval $(call BuildModule,gettext,Gettext,+libintl-full))
504 $(eval $(call BuildModule,gd,GD graphics,+libgd))
505 $(eval $(call BuildModule,gmp,GMP,+libgmp))
506 $(eval $(call BuildModule,hash,Hash))
507 $(eval $(call BuildModule,http,HTTP,+libcurl +librt))
508 $(eval $(call BuildModule,iconv,iConv,+libiconv))
509 $(eval $(call BuildModule,json,JSON))
510 $(eval $(call BuildModule,ldap,LDAP,+libopenldap +libsasl2))
511 $(eval $(call BuildModule,libevent,libevent,+libevent))
512 $(eval $(call BuildModule,mbstring,MBString))
513 $(eval $(call BuildModule,mcrypt,Mcrypt,+libmcrypt +libltdl))
514 $(eval $(call BuildModule,mysql,MySQL,+libmysqlclient))
515 $(eval $(call BuildModule,openssl,OpenSSL,+libopenssl))
516 $(eval $(call BuildModule,pcntl,PCNTL))
517 $(eval $(call BuildModule,pdo,PHP Data Objects))
518 $(eval $(call BuildModule,pdo-mysql,PDO driver for MySQL,php5-mod-pdo +libmysqlclient))
519 $(eval $(call BuildModule,pdo-pgsql,PDO driver for PostgreSQL,php5-mod-pdo +libpq))
520 $(eval $(call BuildModule,pdo-sqlite,PDO driver for SQLite 3.x,php5-mod-pdo +libsqlite3 +libpthread))
521 $(eval $(call BuildModule,pgsql,PostgreSQL,+libpq))
522 $(eval $(call BuildModule,session,Session))
523 $(eval $(call BuildModule,simplexml,SimpleXML,@PHP5_LIBXML +libxml2))
524 $(eval $(call BuildModule,soap,SOAP,@PHP5_LIBXML +libxml2))
525 $(eval $(call BuildModule,sockets,Sockets))
526 $(eval $(call BuildModule,sqlite,SQLite 2.x,+libsqlite2))
527 $(eval $(call BuildModule,sqlite3,SQLite3,+libsqlite3 +libpthread))
528 $(eval $(call BuildModule,sysvmsg,System V messages))
529 $(eval $(call BuildModule,sysvsem,System V shared memory))
530 $(eval $(call BuildModule,sysvshm,System V semaphore))
531 $(eval $(call BuildModule,tokenizer,Tokenizer))
532 $(eval $(call BuildModule,xml,XML,+PHP5_LIBXML:libxml2 +!PHP5_LIBXML:libexpat))
533 $(eval $(call BuildModule,xmlreader,XMLReader,@PHP5_LIBXML +libxml2 +libiconv))
534 $(eval $(call BuildModule,xmlwriter,XMLWriter,@PHP5_LIBXML +libxml2 +libiconv))