]>
Commit | Line | Data |
---|---|---|
7c4cc0d8 | 1 | ############################################################################### |
7c4cc0d8 | 2 | # # |
70df8302 | 3 | # IPFire.org - A linux based firewall # |
c5f633c9 | 4 | # Copyright (C) 2007-2016 IPFire Team <info@ipfire.org> # |
70df8302 MT |
5 | # # |
6 | # This program is free software: you can redistribute it and/or modify # | |
7c4cc0d8 | 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 # |
7c4cc0d8 CS |
9 | # (at your option) any later version. # |
10 | # # | |
70df8302 | 11 | # This program is distributed in the hope that it will be useful, # |
7c4cc0d8 CS |
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/>. # |
7c4cc0d8 CS |
18 | # # |
19 | ############################################################################### | |
20 | ||
21 | ############################################################################### | |
22 | # Definitions | |
23 | ############################################################################### | |
24 | ||
25 | include Config | |
26 | ||
a11aaa91 | 27 | VER = 2.0 |
7c4cc0d8 CS |
28 | |
29 | THISAPP = guardian-$(VER) | |
a11aaa91 SS |
30 | DL_FILE = $(THISAPP).tar.gz |
31 | DL_FROM = $(URL_IPFIRE) | |
7c4cc0d8 CS |
32 | DIR_APP = $(DIR_SRC)/$(THISAPP) |
33 | TARGET = $(DIR_INFO)/$(THISAPP) | |
a11aaa91 | 34 | |
7c4cc0d8 | 35 | PROG = guardian |
2872f345 | 36 | PAK_VER = 13 |
a11aaa91 SS |
37 | |
38 | DEPS = "perl-inotify2 perl-Net-IP" | |
7c4cc0d8 | 39 | |
7c4cc0d8 CS |
40 | ############################################################################### |
41 | # Top-level Rules | |
42 | ############################################################################### | |
43 | ||
a11aaa91 SS |
44 | objects = $(DL_FILE) |
45 | ||
46 | $(DL_FILE) = $(DL_FROM)/$(DL_FILE) | |
47 | ||
e73a5ce7 | 48 | $(DL_FILE)_MD5 = 15be3b14a70e21502368deca74903f5c |
7c4cc0d8 CS |
49 | |
50 | install : $(TARGET) | |
51 | ||
a11aaa91 | 52 | check : $(patsubst %,$(DIR_CHK)/%,$(objects)) |
7c4cc0d8 | 53 | |
a11aaa91 | 54 | download :$(patsubst %,$(DIR_DL)/%,$(objects)) |
7c4cc0d8 | 55 | |
a11aaa91 | 56 | md5 : $(subst %,%_MD5,$(objects)) |
7c4cc0d8 | 57 | |
a11aaa91 | 58 | dist: |
7c4cc0d8 CS |
59 | @$(PAK) |
60 | ||
a11aaa91 SS |
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 | ||
7c4cc0d8 CS |
74 | ############################################################################### |
75 | # Installation Details | |
76 | ############################################################################### | |
77 | ||
78 | $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) | |
79 | @$(PREBUILD) | |
a11aaa91 SS |
80 | @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axvf $(DIR_DL)/$(DL_FILE) |
81 | ||
82 | # Adjust path for firewall binaries. | |
83 | cd $(DIR_APP) && sed -i "s|/usr/sbin/|/sbin/|g" modules/IPtables.pm | |
84 | ||
85 | cd $(DIR_APP) && make | |
86 | cd $(DIR_APP) && make install | |
87 | ||
88 | # Create config directory and create files. | |
89 | -mkdir -pv /var/ipfire/guardian | |
a332b303 | 90 | chown nobody.nobody /var/ipfire/guardian |
a11aaa91 SS |
91 | |
92 | # Create directory and file for logging. | |
93 | -mkdir -pv /var/log/guardian | |
94 | touch /var/log/guardian/guardian.log | |
95 | ||
ba43a6fe JS |
96 | #install initscripts |
97 | $(call INSTALL_INITSCRIPT,guardian) | |
98 | ||
a11aaa91 SS |
99 | # Create symlinks for runlevel interaction. |
100 | ln -svf /etc/rc.d/init.d/guardian /etc/rc.d/rc3.d/S45guardian | |
101 | ln -svf /etc/rc.d/init.d/guardian /etc/rc.d/rc0.d/K76guardian | |
102 | ln -svf /etc/rc.d/init.d/guardian /etc/rc.d/rc6.d/K76guardian | |
103 | ||
104 | # Install include file for backup. | |
105 | install -v -m 644 $(DIR_SRC)/config/backup/includes/guardian \ | |
106 | /var/ipfire/backup/addons/includes/guardian | |
107 | ||
108 | # Logrotate. | |
109 | -mkdir -pv /etc/logrotate.d | |
110 | install -v -m 644 $(DIR_SRC)/config/guardian/guardian.logrotate \ | |
111 | /etc/logrotate.d/guardian | |
112 | ||
c5f633c9 MF |
113 | # Install addon-specific language-files. |
114 | install -v -m 004 $(DIR_SRC)/config/guardian/guardian.*.pl \ | |
115 | /var/ipfire/addon-lang/ | |
116 | ||
a11aaa91 | 117 | @rm -rf $(DIR_APP) |
7c4cc0d8 | 118 | @$(POSTBUILD) |