]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/php
Finish core48.
[people/pmueller/ipfire-2.x.git] / lfs / php
CommitLineData
7b6b8153 1###############################################################################
7b6b8153 2# #
70df8302 3# IPFire.org - A linux based firewall #
a408c745 4# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7b6b8153 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
7b6b8153
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
7b6b8153
MT
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 #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
7b6b8153
MT
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
a408c745 27VER = 5.3.5
7b6b8153
MT
28
29THISAPP = php-$(VER)
30DL_FILE = $(THISAPP).tar.bz2
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
e245b293
MT
34PROG = php
35PAK_VER = 1
36
37DEPS = ""
38
7b6b8153
MT
39
40###############################################################################
41# Top-level Rules
42###############################################################################
43
b0edd640 44objects = $(DL_FILE) idn-0.1.tgz Log-1.9.11.tgz
7b6b8153
MT
45
46$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
27b8cc24 47idn-0.1.tgz = $(DL_FROM)/idn-0.1.tgz
b0edd640 48Log-1.9.11.tgz = $(DL_FROM)/Log-1.9.11.tgz
7b6b8153 49
a408c745 50$(DL_FILE)_MD5 = 8aaf20c95e91f25c5b6a591e5d6d61b9
27b8cc24 51idn-0.1.tgz_MD5 = ef8635ec22348325a76abd2abddca4a1
b0edd640 52Log-1.9.11.tgz_MD5 = fb7c648b212f12fdb5ce1ab687793513
7b6b8153
MT
53
54install : $(TARGET)
55
56check : $(patsubst %,$(DIR_CHK)/%,$(objects))
57
58download :$(patsubst %,$(DIR_DL)/%,$(objects))
59
60md5 : $(subst %,%_MD5,$(objects))
61
62dist:
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)
b0edd640 84 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml && \
27b8cc24 85 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
f5679937
MT
86 cd $(DIR_APP) && ./configure --prefix=/usr \
87 --sysconfdir=/etc \
88 --with-apxs2 \
89 --enable-force-cgi-redirect \
90 --enable-discard-path \
91 --enable-fastcgi \
92 --with-config-file-path=/etc \
93 --with-openssl \
94 --with-kerberos \
f5679937
MT
95 --with-zlib \
96 --enable-bcmath \
97 --with-bz2 \
98 --enable-calendar \
99 --with-curl \
100 --with-curlwrappers \
101 --enable-dba=shared \
102 --with-gdbm \
103 --with-db4 \
104 --with-inifile \
105 --with-flatfile \
106 --enable-exif \
107 --enable-ftp \
108 --with-openssl-dir=/usr \
109 --with-gd=/usr \
110 --with-jpeg-dir=/usr \
111 --with-png-dir=/usr \
112 --with-zlib-dir=/usr \
113 --with-freetype-dir=/usr \
114 --with-gettext \
115 --with-gmp \
116 --enable-mbstring \
117 --with-mysql \
118 --with-mysql-sock=/var/run/mysql \
119 --with-ncurses \
120 --with-pdo-mysql \
121 --without-pdo-sqlite \
122 --with-readline \
123 --enable-sockets \
124 --with-xsl \
125 --with-iconv
c8ead4a5 126 cd $(DIR_APP) && make $(MAKETUNING)
7b6b8153 127 cd $(DIR_APP) && make install
83d95bf1 128 cd $(DIR_APP) && install -v -m644 $(DIR_SRC)/config/php/php.ini /etc/php.ini
27b8cc24 129 -grep -v libphp5.so < /etc/httpd/conf/httpd.conf > /etc/httpd/conf/httpd.conf.bak
9297899c 130 mv -f /etc/httpd/conf/httpd.conf.bak /etc/httpd/conf/httpd.conf
27b8cc24
MT
131 cd $(DIR_SRC) && tar xfz $(DIR_DL)/idn-0.1.tgz
132 -rm -f $(DIR_SRC)/package.xml
133 cd $(DIR_SRC)/idn-* && phpize
134 cd $(DIR_SRC)/idn-* && ./configure --prefix=/usr --with-idn
fcc53523 135 cd $(DIR_SRC)/idn-* && make $(MAKETUNING) $(EXTRA_MAKE)
27b8cc24 136 cd $(DIR_SRC)/idn-* && make install
b0edd640
MT
137 cd $(DIR_SRC) && tar xfz $(DIR_DL)/Log-1.9.11.tgz
138 -rm -f $(DIR_SRC)/package.xml
139 cd $(DIR_SRC)/Log-* && cp -av Log Log.php /usr/lib/php
140 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml
7b6b8153 141 @$(POSTBUILD)