]> git.pld-linux.org Git - packages/bopm.git/commitdiff
- new
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 25 May 2005 18:57:52 +0000 (18:57 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    bopm.spec -> 1.1

bopm.spec [new file with mode: 0644]

diff --git a/bopm.spec b/bopm.spec
new file mode 100644 (file)
index 0000000..d7d4482
--- /dev/null
+++ b/bopm.spec
@@ -0,0 +1,100 @@
+Summary:       Open proxy monitor and blocker, designed for use with ircds
+Name:          bopm
+Version:       3.1.2
+Release:       0.10
+Epoch:         0
+License:       GPL
+Group:         Applications/Communications
+Source0:       http://static.blitzed.org/www.blitzed.org/bopm/files/%{name}-%{version}.tar.gz
+# Source0-md5: ab1b7494c4242eef957b5fca61c92b18
+Source1:       %{name}.init
+Source2:       %{name}.conf
+BuildRequires: rpmbuild(macros) >= 1.202
+Patch0:                %{name}-DESTDIR.patch
+URL:           http://www.blitzed.org/bopm/
+BuildRequires: automake
+BuildRequires: autoconf
+BuildRequires: libtool
+BuildRequires: findutils
+Requires:      rc-scripts
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The Blitzed Open Proxy Monitor is designed to connect to an IRC server
+and become an IRC operator. It then watches connect notices in order
+to scan all connecting clients for open (insecure) proxies. Such
+insecure proxies are commonly used for spamming, floods and other
+abusive activities.
+
+BOPM can detect WinGates, HTTP proxies, SOCKS 4/5 proxies and Cisco
+routers with default passwords. BOPM also has support for checking
+against a DNS-Based Blacklist (similar to MAPS RBL) and can be
+configured to report new proxies back to the Blitzed Open Proxy
+Monitoring project.
+
+%prep
+%setup -q
+%patch0 -p1
+
+find -name CVS | xargs -r rm -rf
+rm -f contrib/bopm.spec
+
+%build
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure \
+       --localstatedir=/var/log/%{name} \
+       --bindir=%{_sbindir}
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,/var/{run,log}/%{name}}
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
+install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.conf
+> $RPM_BUILD_ROOT/var/log/%{name}/bopm.log
+> $RPM_BUILD_ROOT/var/log/%{name}/scan.log
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%pre
+%groupadd -g 151 %{name}
+%useradd -u 151 -c "BOPM Daemon" -g %{name} %{name}
+
+%post
+/sbin/chkconfig --add %{name}
+if [ -f /var/lock/subsys/%{name} ]; then
+       /etc/rc.d/init.d/%{name} restart 1>&2
+else
+       echo "Run \"/etc/rc.d/init.d/%{name} start\" to start BOPM daemon."
+fi
+
+%preun
+if [ "$1" = "0" ]; then
+       if [ -f /var/lock/subsys/%{name} ]; then
+               /etc/rc.d/init.d/%{name} stop 1>&2
+       fi
+       /sbin/chkconfig --del %{name}
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc ChangeLog INSTALL README bopm.conf.sample
+%doc contrib/ network-bopm/
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}.conf
+%attr(754,root,root) /etc/rc.d/init.d/%{name}
+%attr(755,root,root) %{_sbindir}/%{name}
+
+%attr(770,root,bopm) %dir /var/run/%{name}
+%attr(770,root,bopm) %dir /var/log/%{name}
+%attr(640,bopm,bopm) %ghost /var/log/%{name}/bopm.log
+%attr(640,bopm,bopm) %ghost /var/log/%{name}/scan.log
This page took 0.092292 seconds and 4 git commands to generate.