]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/suricata
suricata: Downgrade to 5.0.5
[ipfire-2.x.git] / lfs / suricata
CommitLineData
67752a95
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
1a65ea1b 4# Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
67752a95
SS
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
25include Config
26
3b8e3955 27VER = 5.0.5
67752a95
SS
28
29THISAPP = suricata-$(VER)
30DL_FILE = $(THISAPP).tar.gz
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
aa81aaf8
MT
35ifeq "$(BUILD_ARCH)" "armv5tel"
36 LDFLAGS += -latomic
37endif
38
67752a95
SS
39###############################################################################
40# Top-level Rules
41###############################################################################
42
43objects = $(DL_FILE)
44
45$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46
3b8e3955 47$(DL_FILE)_MD5 = fe039cc4571eb56828874ddc0b71dc51
67752a95
SS
48
49install : $(TARGET)
50
51check : $(patsubst %,$(DIR_CHK)/%,$(objects))
52
53download :$(patsubst %,$(DIR_DL)/%,$(objects))
54
55md5 : $(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)
66970ccb 77 cd $(DIR_APP) && LDFLAGS="$(LDFLAGS)" ./configure \
67752a95
SS
78 --prefix=/usr \
79 --sysconfdir=/etc \
80 --localstatedir=/var \
81 --enable-gccprotect \
82 --disable-gccmarch-native \
83 --enable-non-bundled-htp \
84 --enable-nfqueue \
e8b1b397
SS
85 --disable-static \
86 --disable-python \
21a83823
EK
87 --with-libjansson-libraries=/usr/lib \
88 --with-libjansson-includes=/usr/include \
1a65ea1b
SS
89 --disable-suricata-update \
90 --enable-rust
91
67752a95
SS
92 cd $(DIR_APP) && make $(MAKETUNING)
93 cd $(DIR_APP) && make install
94 cd $(DIR_APP) && make install-conf
d2e6bf6e
SS
95
96 # Remove default suricata config file.
97 rm -rvf /etc/suricata/suricata.yaml
98
99 # Install IPFire related config file.
4c6d6c1e 100 install -m 0644 $(DIR_SRC)/config/suricata/suricata.yaml /etc/suricata
21cab141 101
e8b1b397
SS
102 # Remove shipped rules.
103 rm -rvf /usr/share/suricata
104
21cab141
SS
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
728f3d2e
SS
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
89a12b38 118
21cab141 119 # Create logging directory.
67752a95 120 -mkdir -p /var/log/suricata
21cab141 121
f717b1dc
SS
122 # Set correct ownership for /var/log/suricata.
123 chown suricata:suricata /var/log/suricata
124
67752a95
SS
125 @rm -rf $(DIR_APP)
126 @$(POSTBUILD)