]> git.pld-linux.org Git - packages/fakebo.git/blob - fakebo.spec
- reverting last change: removing new macros from %p{re,ost}{,un}
[packages/fakebo.git] / fakebo.spec
1 Summary:        Fakes trojan servers and logs incoming requests
2 Summary(pl):    Program udaj±cy trojany i loguj±cy nadchodz±ce po³±czenia
3 Name:           fakebo
4 Version:        0.4.1
5 Release:        1
6 License:        GPL
7 Group:          X11/Utilities
8 Group(pl):      X11/Narzêdzia
9 Source0:        ftp://ftp.linux.hr/pub/fakebo/%{name}-%{version}.tar.gz
10 Source1:        fakebo.init
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12 URL:            http://cvs.linux.hr/fakebo/
13 Requires:       /sbin/chkconfig
14
15 %description
16 FakeBO fakes trojan server responses (Back Orifice, NetBus, etc.) and
17 logs every attempt to a logfile or stdout. It is able to send fake
18 pings and replies back to the client trying to access your system.
19
20 %description -l pl
21 FakeBO udaje odpowiedzi trojanów (Back Orifice, NetBus, itp.) i loguje
22 ka¿d± próbê do pliku z logiem lub na standardowe wyj¶cie. Jest on
23 zdolny do wysy³ania fa³szywych pingów i odpowiedzi z powrotem do
24 klienta próbuj±cego uzyskaæ dostêp do twojego systemu.
25
26 %prep
27 %setup -q
28 %build
29 %configure
30 %{__make}
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
35
36 %{__make} install DESTDIR=$RPM_BUILD_ROOT
37
38 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/fakebo
39
40 gzip -9nf INSTALL HACKING AUTHORS TODO NEWS ChangeLog README \
41         custom.replies
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %post
47 /sbin/chkconfig --add fakebo
48 if [ -f /var/lock/subsys/fakebo ]; then
49         /etc/rc.d/init.d/fakebo restart 1>&2
50 else
51         echo "Run \"/etc/rc.d/init.d/fakebo start\" to start fakebo daemon."
52 fi
53
54
55 %postun
56 if [ "$1" = "0" ]; then
57         if [ -f /var/lock/subsys/fakebo ]; then
58                 /etc/rc.d/init.d/fakebo stop 1>&2
59         fi
60         /sbin/chkconfig --del fakebo
61 fi
62
63 %files
64 %defattr(644,root,root,755)
65 %attr(755,root,root) %{_bindir}/fakebo
66 %attr(754,root,root) /etc/rc.d/init.d/fakebo
67 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/fakebo.conf
68 %{_mandir}/man1/fakebo.1*
69 %doc {INSTALL,HACKING,AUTHORS,TODO,NEWS,ChangeLog,README,custom.replies}.gz
This page took 0.080994 seconds and 3 git commands to generate.