forked from pool/apache2-mod_security2
Petr Gajdos
d07185cefe
OBS-URL: https://build.opensuse.org/package/show/Apache:Modules/apache2-mod_security2?expand=0&rev=95
118 lines
4.4 KiB
RPMSpec
118 lines
4.4 KiB
RPMSpec
#
|
|
# spec file for package apache2-mod_security2
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define modname mod_security2
|
|
%define tarballname modsecurity-%{version}
|
|
%define usrsharedir %{_datadir}/%{name}
|
|
Name: apache2-mod_security2
|
|
Version: 2.9.7
|
|
Release: 0
|
|
Summary: Web Application Firewall for apache httpd
|
|
License: Apache-2.0
|
|
Group: Productivity/Networking/Web/Servers
|
|
URL: https://www.modsecurity.org/
|
|
Source: https://github.com/SpiderLabs/ModSecurity/releases/download/v%{version}/modsecurity-%{version}.tar.gz
|
|
Source1: https://github.com/SpiderLabs/owasp-modsecurity-crs/tarball/master//SpiderLabs-owasp-modsecurity-crs-2.2.9-5-gebe8790.tar.gz
|
|
Source2: mod_security2.conf
|
|
Source6: README-SUSE-mod_security2.txt
|
|
Source7: empty.conf
|
|
Patch0: apache2-mod_security2-no_rpath.diff
|
|
Patch1: modsecurity-fixes.patch
|
|
Patch2: apache2-mod_security2_tests_conf.patch
|
|
# https://github.com/SpiderLabs/ModSecurity/issues/2514
|
|
Patch3: modsecurity-2.9.3-input_filtering_errors.patch
|
|
# fix build with gcc14
|
|
Patch4: apache2-mod_security2-gcc14.patch
|
|
BuildRequires: apache-rpm-macros
|
|
BuildRequires: apache2-devel
|
|
BuildRequires: apache2-prefork
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: c++_compiler
|
|
BuildRequires: libcurl-devel
|
|
BuildRequires: libtool
|
|
BuildRequires: libxml2-devel
|
|
BuildRequires: lua53-devel
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: perl-libwww-perl
|
|
BuildRequires: pkgconfig
|
|
Requires: %{apache_mmn}
|
|
Requires: %{apache_suse_maintenance_mmn}
|
|
Requires: apache2
|
|
|
|
%description
|
|
ModSecurity is an intrusion detection and prevention
|
|
engine for web applications (or a web application firewall). Operating
|
|
as an Apache Web server module or standalone, the purpose of
|
|
ModSecurity is to increase web application security, protecting web
|
|
applications from known and unknown attacks.
|
|
|
|
%prep
|
|
%setup -q -n %{tarballname}
|
|
%setup -q -D -T -a 1 -n %{tarballname}
|
|
mv -v SpiderLabs* rules
|
|
%autopatch -p1
|
|
|
|
%build
|
|
aclocal
|
|
automake
|
|
%configure --with-apxs=%{apache_apxs} --enable-request-early --enable-htaccess-config --disable-mlogc
|
|
CFLAGS="%{optflags}" make %{?_smp_mflags}
|
|
|
|
%install
|
|
pushd apache2
|
|
install -d -m 0755 %{buildroot}%{apache_libexecdir}
|
|
install .libs/mod_security2.so %{buildroot}%{apache_libexecdir}/%{modname}.so
|
|
popd
|
|
install -D -m 0644 %{SOURCE2} %{buildroot}%{apache_sysconfdir}/conf.d/%{modname}.conf
|
|
install -d -m 0755 %{buildroot}%{apache_sysconfdir}/mod_security2.d
|
|
install -D -m 0644 %{SOURCE6} %{buildroot}%{apache_sysconfdir}/mod_security2.d
|
|
install -D -m 0644 %{SOURCE7} %{buildroot}%{apache_sysconfdir}/mod_security2.d
|
|
cp -a %{SOURCE6} doc
|
|
install -d -m 0755 %{buildroot}/%{usrsharedir}
|
|
install -d -m 0755 %{buildroot}/%{usrsharedir}/tools
|
|
rm -f rules/.gitignore rules/LICENSE
|
|
cp -a rules/util/README %{buildroot}/%{usrsharedir}/tools/README-rules-updater.txt
|
|
cp -a tools/rules-updater.pl tools/rules-updater-example.conf %{buildroot}/%{usrsharedir}/tools
|
|
find rules -type f -exec chmod 644 {} +
|
|
cp -a rules %{buildroot}/%{usrsharedir}
|
|
rm -rf %{buildroot}/%{usrsharedir}/rules/util
|
|
rm -rf %{buildroot}/%{usrsharedir}/rules/lua
|
|
rm -f %{buildroot}/%{usrsharedir}/rules/READM*
|
|
rm -f %{buildroot}/%{usrsharedir}/rules/INSTALL %{buildroot}/%{usrsharedir}/rules/CHANGELOG
|
|
|
|
# Temporarily disable test suite as there are some failures that need to be solved
|
|
%check
|
|
make test
|
|
# make test-regression
|
|
|
|
%files
|
|
%{apache_libexecdir}/%{modname}.so
|
|
%config(noreplace) %{apache_sysconfdir}/conf.d/%{modname}.conf
|
|
%dir %{apache_sysconfdir}/mod_security2.d
|
|
%{apache_sysconfdir}/mod_security2.d/README-SUSE-mod_security2.txt
|
|
%{apache_sysconfdir}/mod_security2.d/empty.conf
|
|
%{usrsharedir}
|
|
%license LICENSE
|
|
%doc README.md CHANGES NOTICE authors.txt
|
|
%doc doc/README.txt
|
|
%doc doc/README-SUSE-mod_security2.txt
|
|
%doc rules/util/regression-tests
|
|
|
|
%changelog
|