]>
Commit | Line | Data |
---|---|---|
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 | ||
25 | include Config | |
26 | ||
7b40d822 | 27 | VER = 5.3.15 |
7b6b8153 MT |
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) | |
7b6b8153 MT |
34 | |
35 | ############################################################################### | |
36 | # Top-level Rules | |
37 | ############################################################################### | |
38 | ||
b0edd640 | 39 | objects = $(DL_FILE) idn-0.1.tgz Log-1.9.11.tgz |
7b6b8153 MT |
40 | |
41 | $(DL_FILE) = $(DL_FROM)/$(DL_FILE) | |
27b8cc24 | 42 | idn-0.1.tgz = $(DL_FROM)/idn-0.1.tgz |
b0edd640 | 43 | Log-1.9.11.tgz = $(DL_FROM)/Log-1.9.11.tgz |
7b6b8153 | 44 | |
7b40d822 | 45 | $(DL_FILE)_MD5 = 5cfcfd0fa4c4da7576f397073e7993cc |
27b8cc24 | 46 | idn-0.1.tgz_MD5 = ef8635ec22348325a76abd2abddca4a1 |
b0edd640 | 47 | Log-1.9.11.tgz_MD5 = fb7c648b212f12fdb5ce1ab687793513 |
7b6b8153 MT |
48 | |
49 | install : $(TARGET) | |
50 | ||
51 | check : $(patsubst %,$(DIR_CHK)/%,$(objects)) | |
52 | ||
53 | download :$(patsubst %,$(DIR_DL)/%,$(objects)) | |
54 | ||
55 | md5 : $(subst %,%_MD5,$(objects)) | |
56 | ||
7b6b8153 MT |
57 | ############################################################################### |
58 | # Downloading, checking, md5sum | |
59 | ############################################################################### | |
60 | ||
61 | $(patsubst %,$(DIR_CHK)/%,$(objects)) : | |
62 | @$(CHECK) | |
63 | ||
64 | $(patsubst %,$(DIR_DL)/%,$(objects)) : | |
65 | @$(LOAD) | |
66 | ||
67 | $(subst %,%_MD5,$(objects)) : | |
68 | @$(MD5) | |
69 | ||
70 | ############################################################################### | |
71 | # Installation Details | |
72 | ############################################################################### | |
73 | ||
74 | $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) | |
75 | @$(PREBUILD) | |
b0edd640 | 76 | @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml && \ |
27b8cc24 | 77 | cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) |
f5679937 MT |
78 | cd $(DIR_APP) && ./configure --prefix=/usr \ |
79 | --sysconfdir=/etc \ | |
80 | --with-apxs2 \ | |
81 | --enable-force-cgi-redirect \ | |
82 | --enable-discard-path \ | |
83 | --enable-fastcgi \ | |
84 | --with-config-file-path=/etc \ | |
85 | --with-openssl \ | |
86 | --with-kerberos \ | |
f5679937 MT |
87 | --with-zlib \ |
88 | --enable-bcmath \ | |
89 | --with-bz2 \ | |
90 | --enable-calendar \ | |
91 | --with-curl \ | |
92 | --with-curlwrappers \ | |
93 | --enable-dba=shared \ | |
94 | --with-gdbm \ | |
95 | --with-db4 \ | |
96 | --with-inifile \ | |
97 | --with-flatfile \ | |
98 | --enable-exif \ | |
99 | --enable-ftp \ | |
100 | --with-openssl-dir=/usr \ | |
101 | --with-gd=/usr \ | |
102 | --with-jpeg-dir=/usr \ | |
103 | --with-png-dir=/usr \ | |
104 | --with-zlib-dir=/usr \ | |
105 | --with-freetype-dir=/usr \ | |
106 | --with-gettext \ | |
107 | --with-gmp \ | |
108 | --enable-mbstring \ | |
109 | --with-mysql \ | |
110 | --with-mysql-sock=/var/run/mysql \ | |
111 | --with-ncurses \ | |
112 | --with-pdo-mysql \ | |
113 | --without-pdo-sqlite \ | |
114 | --with-readline \ | |
115 | --enable-sockets \ | |
116 | --with-xsl \ | |
117 | --with-iconv | |
c8ead4a5 | 118 | cd $(DIR_APP) && make $(MAKETUNING) |
7b6b8153 | 119 | cd $(DIR_APP) && make install |
83d95bf1 | 120 | cd $(DIR_APP) && install -v -m644 $(DIR_SRC)/config/php/php.ini /etc/php.ini |
27b8cc24 | 121 | -grep -v libphp5.so < /etc/httpd/conf/httpd.conf > /etc/httpd/conf/httpd.conf.bak |
9297899c | 122 | mv -f /etc/httpd/conf/httpd.conf.bak /etc/httpd/conf/httpd.conf |
27b8cc24 MT |
123 | cd $(DIR_SRC) && tar xfz $(DIR_DL)/idn-0.1.tgz |
124 | -rm -f $(DIR_SRC)/package.xml | |
125 | cd $(DIR_SRC)/idn-* && phpize | |
126 | cd $(DIR_SRC)/idn-* && ./configure --prefix=/usr --with-idn | |
fcc53523 | 127 | cd $(DIR_SRC)/idn-* && make $(MAKETUNING) $(EXTRA_MAKE) |
27b8cc24 | 128 | cd $(DIR_SRC)/idn-* && make install |
b0edd640 MT |
129 | cd $(DIR_SRC) && tar xfz $(DIR_DL)/Log-1.9.11.tgz |
130 | -rm -f $(DIR_SRC)/package.xml | |
131 | cd $(DIR_SRC)/Log-* && cp -av Log Log.php /usr/lib/php | |
132 | @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml | |
7b6b8153 | 133 | @$(POSTBUILD) |