]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/suricata
suricata: Downgrade to 5.0.5
[ipfire-2.x.git] / lfs / suricata
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
5 # #
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. #
10 # #
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. #
15 # #
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/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 5.0.5
28
29 THISAPP = suricata-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34
35 ifeq "$(BUILD_ARCH)" "armv5tel"
36 LDFLAGS += -latomic
37 endif
38
39 ###############################################################################
40 # Top-level Rules
41 ###############################################################################
42
43 objects = $(DL_FILE)
44
45 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46
47 $(DL_FILE)_MD5 = fe039cc4571eb56828874ddc0b71dc51
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
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)
76 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
77 cd $(DIR_APP) && LDFLAGS="$(LDFLAGS)" ./configure \
78 --prefix=/usr \
79 --sysconfdir=/etc \
80 --localstatedir=/var \
81 --enable-gccprotect \
82 --disable-gccmarch-native \
83 --enable-non-bundled-htp \
84 --enable-nfqueue \
85 --disable-static \
86 --disable-python \
87 --with-libjansson-libraries=/usr/lib \
88 --with-libjansson-includes=/usr/include \
89 --disable-suricata-update \
90 --enable-rust
91
92 cd $(DIR_APP) && make $(MAKETUNING)
93 cd $(DIR_APP) && make install
94 cd $(DIR_APP) && make install-conf
95
96 # Remove default suricata config file.
97 rm -rvf /etc/suricata/suricata.yaml
98
99 # Install IPFire related config file.
100 install -m 0644 $(DIR_SRC)/config/suricata/suricata.yaml /etc/suricata
101
102 # Remove shipped rules.
103 rm -rvf /usr/share/suricata
104
105 # Create emtpy rules directory.
106 -mkdir -p /var/lib/suricata
107
108 # Move config files for references, threshold and classification
109 # to the rules directory.
110 mv /etc/suricata/*.config /var/lib/suricata
111
112 # Set correct permissions for the files.
113 chmod 644 /var/lib/suricata/*.config
114
115 # Set correct ownership for /var/lib/suricata and the
116 # contained files
117 chown -R nobody:nobody /var/lib/suricata
118
119 # Create logging directory.
120 -mkdir -p /var/log/suricata
121
122 # Set correct ownership for /var/log/suricata.
123 chown suricata:suricata /var/log/suricata
124
125 @rm -rf $(DIR_APP)
126 @$(POSTBUILD)