1 ###############################################################################
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
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. #
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. #
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/>. #
19 ###############################################################################
21 ###############################################################################
23 ###############################################################################
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
35 ifeq "$(MACHINE_TYPE)" "arm"
36 CFLAGS := $(patsubst -march=%,,$(CFLAGS))
39 ###############################################################################
41 ###############################################################################
43 objects = $(DL_FILE) idn-0.1.tgz Log-1.9.11.tgz
45 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46 idn-0.1.tgz = $(DL_FROM)/idn-0.1.tgz
47 Log-1.9.11.tgz = $(DL_FROM)/Log-1.9.11.tgz
49 $(DL_FILE)_MD5 = 25ae23a5b9615fe8d33de5b63e1bb788
50 idn-0.1.tgz_MD5 = ef8635ec22348325a76abd2abddca4a1
51 Log-1.9.11.tgz_MD5 = fb7c648b212f12fdb5ce1ab687793513
55 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
57 download :$(patsubst %,$(DIR_DL)/%,$(objects))
59 md5 : $(subst %,%_MD5,$(objects))
61 ###############################################################################
62 # Downloading, checking, md5sum
63 ###############################################################################
65 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
68 $(patsubst %,$(DIR_DL)/%,$(objects)) :
71 $(subst %,%_MD5,$(objects)) :
74 ###############################################################################
75 # Installation Details
76 ###############################################################################
78 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
80 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/Log-* $(DIR_SRC)/package.xml && \
81 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
82 cd $(DIR_APP) && ./configure --prefix=/usr \
85 --enable-force-cgi-redirect \
86 --enable-discard-path \
88 --with-config-file-path=/etc \
104 --with-openssl-dir=/usr \
106 --with-jpeg-dir=/usr \
107 --with-png-dir=/usr \
108 --with-zlib-dir=/usr \
109 --with-freetype-dir=/usr \
114 --with-mysql-sock=/var/run/mysql \
123 cd $(DIR_APP) && make $(MAKETUNING)
124 cd $(DIR_APP) && make install
125 cd $(DIR_APP) && install -v -m644 $(DIR_SRC)/config/php/php.ini /etc/php.ini
126 -grep -v libphp5.so < /etc/httpd/conf/httpd.conf > /etc/httpd/conf/httpd.conf.bak
127 mv -f /etc/httpd/conf/httpd.conf.bak /etc/httpd/conf/httpd.conf
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
132 cd $(DIR_SRC)/idn-* && make $(MAKETUNING) $(EXTRA_MAKE)
133 cd $(DIR_SRC)/idn-* && make install
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