]> git.pld-linux.org Git - packages/fakebo.git/blobdiff - fakebo.spec
- release 5 for Ac (4 is for Ra)
[packages/fakebo.git] / fakebo.spec
index ac7866b0098d676141442cf2f0c2b344e1acba6a..3ae495036859e667beb8cdbe7b31a7ae2d31875b 100644 (file)
@@ -2,15 +2,17 @@ Summary:      Fakes trojan servers and logs incoming requests
 Summary(pl):   Program udaj±cy trojany i loguj±cy nadchodz±ce po³±czenia
 Name:          fakebo
 Version:       0.4.1
-Release:       1
+Release:       5
 License:       GPL
-Group:         X11/Utilities
-Group(pl):     X11/Narzêdzia
+Group:         Networking/Daemons
 Source0:       ftp://ftp.linux.hr/pub/fakebo/%{name}-%{version}.tar.gz
-Source1:       fakebo.init
-BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+# Source0-md5: 442b48ba44250104c30a6e7975230b7c
+Source1:       %{name}.init
 URL:           http://cvs.linux.hr/fakebo/
-Requires:      /sbin/chkconfig
+BuildRequires: autoconf
+PreReq:                rc-scripts
+Requires(post,preun):  /sbin/chkconfig
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 FakeBO fakes trojan server responses (Back Orifice, NetBus, etc.) and
@@ -25,7 +27,9 @@ klienta pr
 
 %prep
 %setup -q
+
 %build
+%{__autoconf}
 %configure
 %{__make}
 
@@ -33,26 +37,35 @@ klienta pr
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
 
-%{__make} install DESTDIR=$RPM_BUILD_ROOT
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
 
 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/fakebo
 
-gzip -9nf INSTALL HACKING AUTHORS TODO NEWS ChangeLog README \
-       custom.replies
-
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %post
-DESC="fakebo daemon"; %chkconfig_add
+/sbin/chkconfig --add fakebo
+if [ -f /var/lock/subsys/fakebo ]; then
+       /etc/rc.d/init.d/fakebo restart 1>&2
+else
+       echo "Run \"/etc/rc.d/init.d/fakebo start\" to start fakebo daemon."
+fi
+
 
 %preun
-%chkconfig_del
+if [ "$1" = "0" ]; then
+       if [ -f /var/lock/subsys/fakebo ]; then
+               /etc/rc.d/init.d/fakebo stop 1>&2
+       fi
+       /sbin/chkconfig --del fakebo
+fi
 
 %files
 %defattr(644,root,root,755)
+%doc HACKING AUTHORS TODO NEWS ChangeLog README custom.replies
 %attr(755,root,root) %{_bindir}/fakebo
 %attr(754,root,root) /etc/rc.d/init.d/fakebo
 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/fakebo.conf
 %{_mandir}/man1/fakebo.1*
-%doc {INSTALL,HACKING,AUTHORS,TODO,NEWS,ChangeLog,README,custom.replies}.gz
This page took 0.069801 seconds and 4 git commands to generate.