]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/php
Merge branch 'master' of ssh://ms@git.ipfire.org/pub/git/ipfire-2.x
[people/pmueller/ipfire-2.x.git] / lfs / php
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 5.2.4
28
29 THISAPP = php-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34 PROG = php
35 PAK_VER = 1
36
37 DEPS = ""
38
39
40 ###############################################################################
41 # Top-level Rules
42 ###############################################################################
43
44 objects = $(DL_FILE) idn-0.1.tgz Log-1.9.11.tgz
45
46 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
47 idn-0.1.tgz = $(DL_FROM)/idn-0.1.tgz
48 Log-1.9.11.tgz = $(DL_FROM)/Log-1.9.11.tgz
49
50 $(DL_FILE)_MD5 = 55c97a671fdabf462cc7a82971a656d2
51 idn-0.1.tgz_MD5 = ef8635ec22348325a76abd2abddca4a1
52 Log-1.9.11.tgz_MD5 = fb7c648b212f12fdb5ce1ab687793513
53
54 install : $(TARGET)
55
56 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
57
58 download :$(patsubst %,$(DIR_DL)/%,$(objects))
59
60 md5 : $(subst %,%_MD5,$(objects))
61
62 dist:
63 @$(PAK)
64
65 ###############################################################################
66 # Downloading, checking, md5sum
67 ###############################################################################
68
69 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
70 @$(CHECK)
71
72 $(patsubst %,$(DIR_DL)/%,$(objects)) :
73 @$(LOAD)
74
75 $(subst %,%_MD5,$(objects)) :
76 @$(MD5)
77
78 ###############################################################################
79 # Installation Details
80 ###############################################################################
81
82 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
83 @$(PREBUILD)
84 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml && \
85 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
86 cd $(DIR_APP) && sed -i 's/const char \*errpfx,/const DB_ENV *dbenv, & const/' ext/dba/dba_db4.c
87 cd $(DIR_APP) && ./configure --prefix=/usr \
88 --sysconfdir=/etc \
89 --with-apxs2 \
90 --enable-force-cgi-redirect \
91 --enable-discard-path \
92 --enable-fastcgi \
93 --with-config-file-path=/etc \
94 --with-openssl \
95 --with-kerberos \
96 --with-zlib \
97 --enable-bcmath \
98 --with-bz2 \
99 --enable-calendar \
100 --with-curl \
101 --with-curlwrappers \
102 --enable-dba=shared \
103 --with-gdbm \
104 --with-db4 \
105 --with-inifile \
106 --with-flatfile \
107 --enable-exif \
108 --enable-ftp \
109 --with-openssl-dir=/usr \
110 --with-gd=/usr \
111 --with-jpeg-dir=/usr \
112 --with-png-dir=/usr \
113 --with-zlib-dir=/usr \
114 --with-freetype-dir=/usr \
115 --with-gettext \
116 --with-gmp \
117 --enable-mbstring \
118 --with-mysql \
119 --with-mysql-sock=/var/run/mysql \
120 --with-ncurses \
121 --with-pdo-mysql \
122 --without-pdo-sqlite \
123 --with-readline \
124 --enable-sockets \
125 --with-xsl \
126 --with-iconv
127 cd $(DIR_APP) && make $(MAKETUNING)
128 cd $(DIR_APP) && make install
129 cd $(DIR_APP) && install -v -m644 $(DIR_SRC)/config/php/php.ini /etc/php.ini
130 -grep -v libphp5.so < /etc/httpd/conf/httpd.conf > /etc/httpd/conf/httpd.conf.bak
131 mv -f /etc/httpd/conf/httpd.conf.bak /etc/httpd/conf/httpd.conf
132 cd $(DIR_SRC) && tar xfz $(DIR_DL)/idn-0.1.tgz
133 -rm -f $(DIR_SRC)/package.xml
134 cd $(DIR_SRC)/idn-* && phpize
135 cd $(DIR_SRC)/idn-* && ./configure --prefix=/usr --with-idn
136 cd $(DIR_SRC)/idn-* && make $(MAKETUNING) $(EXTRA_MAKE)
137 cd $(DIR_SRC)/idn-* && make install
138 cd $(DIR_SRC) && tar xfz $(DIR_DL)/Log-1.9.11.tgz
139 -rm -f $(DIR_SRC)/package.xml
140 cd $(DIR_SRC)/Log-* && cp -av Log Log.php /usr/lib/php
141 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml
142 @$(POSTBUILD)