]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - lfs/apache2
Firewall: Bug10513
[people/teissler/ipfire-2.x.git] / lfs / apache2
CommitLineData
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
26include Config
27
fee04791 28VER = 2.2.27
7b6b8153
MT
29
30THISAPP = httpd-$(VER)
31DL_FILE = $(THISAPP).tar.bz2
32DL_FROM = $(URL_IPFIRE)
33DIR_APP = $(DIR_SRC)/$(THISAPP)
c8ead4a5 34ifeq "$(PASS)" "C"
f1baee3e
MT
35 TARGET = $(DIR_INFO)/$(THISAPP)-config
36else
37 TARGET = $(DIR_INFO)/$(THISAPP)
38endif
7b6b8153
MT
39
40###############################################################################
41# Top-level Rules
42###############################################################################
43
44objects = $(DL_FILE) \
45 httpd-2.2.2-config-1.patch
46
47$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
48httpd-2.2.2-config-1.patch = $(DL_FROM)/httpd-2.2.2-config-1.patch
49
fee04791 50$(DL_FILE)_MD5 = 8faef0decf3fa7e69b2568eb2105a3d8
7b6b8153
MT
51httpd-2.2.2-config-1.patch_MD5 = e02a3ec5925eb9e111400b9aa229f822
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)
c8ead4a5 80ifeq "$(PASS)" "C"
f1baee3e
MT
81 # DO THIS IN AN EXTRA STEP BECAUSE PHP AND SUBVERSION WILL FAIL.
82
83 cp -rf $(DIR_CONF)/httpd/* /etc/httpd/conf
84 ln -sf $(CONFIG_ROOT)/main/hostname.conf /etc/httpd/conf/
f1baee3e
MT
85
86 # Copy all html/cgi-bin files
5db10f47
AF
87 mkdir -p /srv/web/ipfire/{cgi-bin,html}
88 mkdir -p /var/updatecache/{download,metadata}
d733119b 89 cp -aR $(DIR_SRC)/html/* /srv/web/ipfire
f1baee3e
MT
90
91 # Change CONFIG_ROOT in cgi-scripts
d733119b 92 for i in /srv/web/ipfire/cgi-bin/{*,logs.cgi/*,vpn.cgi/*}; do \
f1baee3e
MT
93 if [ -f $$i ]; then \
94 sed -i "s+CONFIG_ROOT+$(CONFIG_ROOT)+g" $$i; \
95 fi; \
96 done
d733119b
MT
97 chown -R root:root /srv/web/ipfire
98 chmod -R 755 /srv/web/ipfire/cgi-bin
99 chmod -R 644 /srv/web/ipfire/html
fd0763dc 100 chmod 755 /srv/web/ipfire/html /srv/web/ipfire/html/{index.cgi,redirect.cgi,dial.cgi,images,include,themes,themes/*,themes/*/*}
935f311e 101 ln -svf ipfire /srv/web/ipfire/html/themes/ipfire-rounded
6e77821d 102
1fbb415a
MT
103 # Reset permissions of redirect templates and theme directories
104 find /srv/web/ipfire/html/{redirect-templates,themes} -type d | xargs chmod -v 755
f1baee3e 105else
7b6b8153 106 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
34273fd0 107 cd $(DIR_APP) && patch -Np1 -i $(DIR_DL)/httpd-2.2.2-config-1.patch
a6b08d93
MT
108
109 ### Add IPFire's layout, too
110 echo "# IPFire layout" >> $(DIR_APP)/config.layout
111 echo "<Layout IPFire>" >> $(DIR_APP)/config.layout
112 echo " prefix: /usr" >> $(DIR_APP)/config.layout
113 echo " exec_prefix: /usr" >> $(DIR_APP)/config.layout
114 echo " bindir: /usr/bin" >> $(DIR_APP)/config.layout
115 echo " sbindir: /usr/sbin" >> $(DIR_APP)/config.layout
116 echo " libdir: /usr/lib" >> $(DIR_APP)/config.layout
117 echo " libexecdir: /usr/lib/apache" >> $(DIR_APP)/config.layout
118 echo " mandir: /usr/share/man" >> $(DIR_APP)/config.layout
119 echo " sysconfdir: /etc/httpd/conf" >> $(DIR_APP)/config.layout
d733119b 120 echo " datadir: /srv/web/ipfire" >> $(DIR_APP)/config.layout
a6b08d93 121 echo " installbuilddir: /usr/lib/apache/build" >> $(DIR_APP)/config.layout
d733119b
MT
122 echo " errordir: /srv/web/ipfire/error" >> $(DIR_APP)/config.layout
123 echo " iconsdir: /srv/web/ipfire/icons" >> $(DIR_APP)/config.layout
124 echo " htdocsdir: /srv/web/ipfire/htdocs" >> $(DIR_APP)/config.layout
125 echo " manualdir: /srv/web/ipfire/manual" >> $(DIR_APP)/config.layout
126 echo " cgidir: /srv/web/ipfire/cgi-bin" >> $(DIR_APP)/config.layout
a6b08d93 127 echo " includedir: /usr/include/apache" >> $(DIR_APP)/config.layout
d733119b 128 echo " localstatedir: /srv/web/ipfire" >> $(DIR_APP)/config.layout
a6b08d93
MT
129 echo " runtimedir: /var/run" >> $(DIR_APP)/config.layout
130 echo " logfiledir: /var/log/httpd" >> $(DIR_APP)/config.layout
131 echo " proxycachedir: /var/cache/apache/proxy" >> $(DIR_APP)/config.layout
132 echo "</Layout>" >> $(DIR_APP)/config.layout
133
134 cd $(DIR_APP) && ./configure --enable-layout=IPFire \
574d71d9 135 --enable-ssl --enable-mods-shared=all --enable-proxy
c8ead4a5 136 cd $(DIR_APP) && make $(MAKETUNING)
7b6b8153
MT
137 cd $(DIR_APP) && make install
138 chown -v root:root /usr/lib/apache/httpd.exp \
139 /usr/sbin/{apxs,apachectl,dbmmanage,envvars{,-std}} \
102d5487
AF
140 /usr/share/man/man1/{dbmmanage,ht{dbm,digest,passwd,txt2dbm}}.1 \
141 /usr/share/man/man8/{ab,apachectl,apxs,htcacheclean,httpd}.8 \
142 /usr/share/man/man8/{logresolve,rotatelogs,suexec}.8
7b6b8153 143 @rm -rf $(DIR_APP)
f1baee3e 144endif
7b6b8153 145 @$(POSTBUILD)