]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/php
Merge remote-tracking branch 'amarx/BUG10796' into next
[ipfire-2.x.git] / lfs / php
CommitLineData
7b6b8153 1###############################################################################
7b6b8153 2# #
70df8302 3# IPFire.org - A linux based firewall #
be5a3b36 4# Copyright (C) 2007-2012 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
d4896931 27VER = 5.3.27
7b6b8153
MT
28
29THISAPP = php-$(VER)
30DL_FILE = $(THISAPP).tar.bz2
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
7b6b8153 34
31850b46
AF
35ifeq "$(MACHINE_TYPE)" "arm"
36 CFLAGS := $(patsubst -march=%,,$(CFLAGS))
37endif
38
7b6b8153
MT
39###############################################################################
40# Top-level Rules
41###############################################################################
42
b0edd640 43objects = $(DL_FILE) idn-0.1.tgz Log-1.9.11.tgz
7b6b8153
MT
44
45$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
27b8cc24 46idn-0.1.tgz = $(DL_FROM)/idn-0.1.tgz
b0edd640 47Log-1.9.11.tgz = $(DL_FROM)/Log-1.9.11.tgz
7b6b8153 48
d4896931 49$(DL_FILE)_MD5 = 25ae23a5b9615fe8d33de5b63e1bb788
27b8cc24 50idn-0.1.tgz_MD5 = ef8635ec22348325a76abd2abddca4a1
b0edd640 51Log-1.9.11.tgz_MD5 = fb7c648b212f12fdb5ce1ab687793513
7b6b8153
MT
52
53install : $(TARGET)
54
55check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59md5 : $(subst %,%_MD5,$(objects))
60
7b6b8153
MT
61###############################################################################
62# Downloading, checking, md5sum
63###############################################################################
64
65$(patsubst %,$(DIR_CHK)/%,$(objects)) :
66 @$(CHECK)
67
68$(patsubst %,$(DIR_DL)/%,$(objects)) :
69 @$(LOAD)
70
71$(subst %,%_MD5,$(objects)) :
72 @$(MD5)
73
74###############################################################################
75# Installation Details
76###############################################################################
77
78$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
79 @$(PREBUILD)
b0edd640 80 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml && \
27b8cc24 81 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
f5679937
MT
82 cd $(DIR_APP) && ./configure --prefix=/usr \
83 --sysconfdir=/etc \
84 --with-apxs2 \
85 --enable-force-cgi-redirect \
86 --enable-discard-path \
87 --enable-fastcgi \
88 --with-config-file-path=/etc \
89 --with-openssl \
90 --with-kerberos \
f5679937
MT
91 --with-zlib \
92 --enable-bcmath \
93 --with-bz2 \
94 --enable-calendar \
95 --with-curl \
96 --with-curlwrappers \
97 --enable-dba=shared \
98 --with-gdbm \
99 --with-db4 \
100 --with-inifile \
101 --with-flatfile \
102 --enable-exif \
103 --enable-ftp \
104 --with-openssl-dir=/usr \
105 --with-gd=/usr \
106 --with-jpeg-dir=/usr \
107 --with-png-dir=/usr \
108 --with-zlib-dir=/usr \
109 --with-freetype-dir=/usr \
110 --with-gettext \
111 --with-gmp \
112 --enable-mbstring \
113 --with-mysql \
114 --with-mysql-sock=/var/run/mysql \
115 --with-ncurses \
116 --with-pdo-mysql \
a761716f 117 --with-pdo-sqlite \
f5679937
MT
118 --with-readline \
119 --enable-sockets \
120 --with-xsl \
64aac4fe
MT
121 --with-iconv \
122 --enable-zip
c8ead4a5 123 cd $(DIR_APP) && make $(MAKETUNING)
7b6b8153 124 cd $(DIR_APP) && make install
83d95bf1 125 cd $(DIR_APP) && install -v -m644 $(DIR_SRC)/config/php/php.ini /etc/php.ini
27b8cc24 126 -grep -v libphp5.so < /etc/httpd/conf/httpd.conf > /etc/httpd/conf/httpd.conf.bak
9297899c 127 mv -f /etc/httpd/conf/httpd.conf.bak /etc/httpd/conf/httpd.conf
27b8cc24
MT
128 cd $(DIR_SRC) && tar xfz $(DIR_DL)/idn-0.1.tgz
129 -rm -f $(DIR_SRC)/package.xml
130 cd $(DIR_SRC)/idn-* && phpize
131 cd $(DIR_SRC)/idn-* && ./configure --prefix=/usr --with-idn
fcc53523 132 cd $(DIR_SRC)/idn-* && make $(MAKETUNING) $(EXTRA_MAKE)
27b8cc24 133 cd $(DIR_SRC)/idn-* && make install
b0edd640
MT
134 cd $(DIR_SRC) && tar xfz $(DIR_DL)/Log-1.9.11.tgz
135 -rm -f $(DIR_SRC)/package.xml
136 cd $(DIR_SRC)/Log-* && cp -av Log Log.php /usr/lib/php
137 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml
7b6b8153 138 @$(POSTBUILD)