]> git.pld-linux.org Git - packages/apache1-mod_antihak.git/blob - apache1-mod_antihak.spec
- pl translation, changed Source URL to ftp
[packages/apache1-mod_antihak.git] / apache1-mod_antihak.spec
1 Summary:        Antihak module for Apache
2 Summary(pl):    Modu³ antihak dla Apache
3 Name:           apache-mod_antihak
4 Version:        0.3.1beta
5 Release:        2
6 License:        GPL
7 Group:          Networking/Daemons
8 Group(de):      Netzwerkwesen/Server
9 Group(pl):      Sieciowe/Serwery
10 Source0:        ftp://ftp.sourceforge.net/pub/sourceforge/apantihak/mod_antihak-0.3.1-beta.tar.gz
11 Patch0:         mod_antihak-iptables.patch
12 Patch1:         mod_antihak-am.patch
13 BuildRequires:  automake
14 BuildRequires:  autoconf
15 BuildRequires:  apache(EAPI)-devel
16 BuildRequires:  libtool
17 BuildRequires:  mysql-devel
18 Requires:       apache(EAPI) >= 1.3.1
19 Requires:       iptables
20 Requires:       sudo
21 Prereq:         grep
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %define         _libexecdir     %{_libdir}/apache
25 %define         _htmldocdir     /home/httpd/manual/mod
26
27 %description
28 mod_antihak is an Apache Module designed to eliminate the CodeRed and
29 Nimda worm's network bandwidth consumption. We're working to make it
30 as easy as writing a line of text to add more worms! :)
31
32 %description -l pl
33 mod_antihak to modu³ Apache s³u¿±cy do eliminowania zapychania sieci
34 przez robaki CodeRed i Nimda. Ponadto trwaj± prace nad umo¿liwieniem
35 ³atwego dodawania obs³ugi kolejnych robaków.
36
37 %prep
38 %setup -q -n mod_antihak-0.3.1-beta
39 cd src
40 %patch0 -p0
41 %patch1 -p0
42
43 %build
44 cd src
45
46 rm -f tools/missing
47 libtoolize --copy --force
48 aclocal
49 autoconf
50 automake -a -c
51
52 %configure \
53         CC=%{__cc} \
54         CFLAGS="%{rpmcflags} -I/usr/include/mysql" \
55         APACHE_APXS=/usr/sbin/apxs \
56         --with-mysql
57
58 %{__make}
59
60 %install
61 rm -rf $RPM_BUILD_ROOT
62 install -d $RPM_BUILD_ROOT{%{_libexecdir},%{_htmldocdir}}
63
64 cd src
65
66 install mod_antihak/mod_antihak.so $RPM_BUILD_ROOT%{_libexecdir}
67
68 gzip -9nf AUTHORS INSTALL ChangeLog NEWS TODO
69
70 %post
71 if [ `fgrep "http ALL= NOPASSWD: /sbin/iptables" /etc/sudoers | wc -l` = 0 ] then
72         echo "http ALL= NOPASSWD: /sbin/iptables" >> /etc/sudoers
73 fi
74
75 %{_sbindir}/apxs -e -a -n antihak %{_libexecdir}/mod_antihak.so 1>&2
76 if [ -f /var/lock/subsys/httpd ]; then
77         /etc/rc.d/init.d/httpd restart 1>&2
78 else
79         echo "Run \"/etc/rc.d/init.d/httpd start\" to start apache http daemon."
80 fi
81
82 %preun
83 if [ "$1" = "0" ]; then
84         if [ `fgrep "http ALL= NOPASSWD: /sbin/iptables" /etc/sudoers | wc -l` != 0 ]
85         then
86                 grep -v '^http ALL= NOPASSWD: /sbin/iptables$' /etc/sudoers \
87                         > /etc/sudoers.rpmnew-antihak
88                 mv -f /etc/sudoers.rpmnew-antihak /etc/sudoers
89         fi
90
91         %{_sbindir}/apxs -e -A -n antihak %{_libexecdir}/mod_antihak.so 1>&2
92         if [ -f /var/lock/subsys/httpd ]; then
93                 /etc/rc.d/init.d/httpd restart 1>&2
94         fi
95 fi
96
97 %clean
98 rm -rf $RPM_BUILD_ROOT
99
100 %files
101 %defattr(644,root,root,755)
102 %doc src/*.gz
103 %attr(755,root,root) %{_libexecdir}/*
This page took 0.086132 seconds and 4 git commands to generate.