]>
Commit | Line | Data |
---|---|---|
7b6b8153 | 1 | ############################################################################### |
7b6b8153 | 2 | # # |
70df8302 | 3 | # IPFire.org - A linux based firewall # |
cbc492f5 | 4 | # Copyright (C) 2007-2014 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 | ||
70df8302 | 21 | |
7b6b8153 MT |
22 | ############################################################################### |
23 | # Definitions | |
24 | ############################################################################### | |
25 | ||
26 | include Config | |
27 | ||
7f5795c6 | 28 | VER = 2.2.29 |
7b6b8153 MT |
29 | |
30 | THISAPP = httpd-$(VER) | |
31 | DL_FILE = $(THISAPP).tar.bz2 | |
32 | DL_FROM = $(URL_IPFIRE) | |
33 | DIR_APP = $(DIR_SRC)/$(THISAPP) | |
afdf1483 MT |
34 | |
35 | TARGET = $(DIR_INFO)/$(THISAPP) | |
7b6b8153 MT |
36 | |
37 | ############################################################################### | |
38 | # Top-level Rules | |
39 | ############################################################################### | |
40 | ||
41 | objects = $(DL_FILE) \ | |
42 | httpd-2.2.2-config-1.patch | |
43 | ||
44 | $(DL_FILE) = $(DL_FROM)/$(DL_FILE) | |
45 | httpd-2.2.2-config-1.patch = $(DL_FROM)/httpd-2.2.2-config-1.patch | |
46 | ||
7f5795c6 | 47 | $(DL_FILE)_MD5 = 579342fdeaa7b8b68d17fee91f8fab6e |
7b6b8153 MT |
48 | httpd-2.2.2-config-1.patch_MD5 = e02a3ec5925eb9e111400b9aa229f822 |
49 | ||
50 | install : $(TARGET) | |
51 | ||
52 | check : $(patsubst %,$(DIR_CHK)/%,$(objects)) | |
53 | ||
54 | download :$(patsubst %,$(DIR_DL)/%,$(objects)) | |
55 | ||
56 | md5 : $(subst %,%_MD5,$(objects)) | |
57 | ||
7b6b8153 MT |
58 | ############################################################################### |
59 | # Downloading, checking, md5sum | |
60 | ############################################################################### | |
61 | ||
62 | $(patsubst %,$(DIR_CHK)/%,$(objects)) : | |
63 | @$(CHECK) | |
64 | ||
65 | $(patsubst %,$(DIR_DL)/%,$(objects)) : | |
66 | @$(LOAD) | |
67 | ||
68 | $(subst %,%_MD5,$(objects)) : | |
69 | @$(MD5) | |
70 | ||
71 | ############################################################################### | |
72 | # Installation Details | |
73 | ############################################################################### | |
74 | ||
75 | $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) | |
76 | @$(PREBUILD) | |
77 | @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) | |
34273fd0 | 78 | cd $(DIR_APP) && patch -Np1 -i $(DIR_DL)/httpd-2.2.2-config-1.patch |
a6b08d93 MT |
79 | |
80 | ### Add IPFire's layout, too | |
81 | echo "# IPFire layout" >> $(DIR_APP)/config.layout | |
82 | echo "<Layout IPFire>" >> $(DIR_APP)/config.layout | |
83 | echo " prefix: /usr" >> $(DIR_APP)/config.layout | |
84 | echo " exec_prefix: /usr" >> $(DIR_APP)/config.layout | |
85 | echo " bindir: /usr/bin" >> $(DIR_APP)/config.layout | |
86 | echo " sbindir: /usr/sbin" >> $(DIR_APP)/config.layout | |
87 | echo " libdir: /usr/lib" >> $(DIR_APP)/config.layout | |
88 | echo " libexecdir: /usr/lib/apache" >> $(DIR_APP)/config.layout | |
89 | echo " mandir: /usr/share/man" >> $(DIR_APP)/config.layout | |
90 | echo " sysconfdir: /etc/httpd/conf" >> $(DIR_APP)/config.layout | |
d733119b | 91 | echo " datadir: /srv/web/ipfire" >> $(DIR_APP)/config.layout |
a6b08d93 | 92 | echo " installbuilddir: /usr/lib/apache/build" >> $(DIR_APP)/config.layout |
d733119b MT |
93 | echo " errordir: /srv/web/ipfire/error" >> $(DIR_APP)/config.layout |
94 | echo " iconsdir: /srv/web/ipfire/icons" >> $(DIR_APP)/config.layout | |
95 | echo " htdocsdir: /srv/web/ipfire/htdocs" >> $(DIR_APP)/config.layout | |
96 | echo " manualdir: /srv/web/ipfire/manual" >> $(DIR_APP)/config.layout | |
97 | echo " cgidir: /srv/web/ipfire/cgi-bin" >> $(DIR_APP)/config.layout | |
a6b08d93 | 98 | echo " includedir: /usr/include/apache" >> $(DIR_APP)/config.layout |
d733119b | 99 | echo " localstatedir: /srv/web/ipfire" >> $(DIR_APP)/config.layout |
a6b08d93 MT |
100 | echo " runtimedir: /var/run" >> $(DIR_APP)/config.layout |
101 | echo " logfiledir: /var/log/httpd" >> $(DIR_APP)/config.layout | |
102 | echo " proxycachedir: /var/cache/apache/proxy" >> $(DIR_APP)/config.layout | |
103 | echo "</Layout>" >> $(DIR_APP)/config.layout | |
104 | ||
105 | cd $(DIR_APP) && ./configure --enable-layout=IPFire \ | |
574d71d9 | 106 | --enable-ssl --enable-mods-shared=all --enable-proxy |
c8ead4a5 | 107 | cd $(DIR_APP) && make $(MAKETUNING) |
7b6b8153 MT |
108 | cd $(DIR_APP) && make install |
109 | chown -v root:root /usr/lib/apache/httpd.exp \ | |
110 | /usr/sbin/{apxs,apachectl,dbmmanage,envvars{,-std}} \ | |
102d5487 AF |
111 | /usr/share/man/man1/{dbmmanage,ht{dbm,digest,passwd,txt2dbm}}.1 \ |
112 | /usr/share/man/man8/{ab,apachectl,apxs,htcacheclean,httpd}.8 \ | |
113 | /usr/share/man/man8/{logresolve,rotatelogs,suexec}.8 | |
afdf1483 MT |
114 | |
115 | # Install apache config | |
116 | cp -rf $(DIR_CONF)/httpd/* /etc/httpd/conf | |
117 | ln -sf $(CONFIG_ROOT)/main/hostname.conf /etc/httpd/conf/ | |
118 | ||
7b6b8153 MT |
119 | @rm -rf $(DIR_APP) |
120 | @$(POSTBUILD) |