ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/contrib/bopm.spec
Revision: 5052
Committed: Mon Dec 22 11:56:03 2014 UTC (9 years, 3 months ago) by michael
File size: 1527 byte(s)
Log Message:
- Initial import of bopm 3.1.3

File Contents

# Content
1 Summary: A daemon that protects an IRC server from insecure proxies.
2 Name: bopm
3 Version: 2.31
4 Release: 1
5 Copyright: GPL
6 Group: Applications/System
7 Source: http://www.blitzed.org/bop/files/%{name}-%{version}.tar.gz
8 BuildRoot: %{_tmppath}/%{name}-root
9 URL: http://www.blitzed.org/bopm/
10
11 %description
12 The Blitzed Open Proxy Monitor is designed to connect to an IRC
13 server and become an IRC operator. It then watches connect notices
14 in order to scan all connecting clients for open (insecure) proxies.
15 Such insecure proxies are commonly used for spamming, floods and other
16 abusive activities.
17
18 BOPM can detect WinGates, HTTP proxies, SOCKS 4/5 proxies and Cisco
19 routers with default passwords. BOPM also has support for checking
20 against a DNS-Based Blacklist (similar to MAPS RBL) and can be
21 configured to report new proxies back to the Blitzed Open Proxy
22 Monitoring project.
23
24 For more details please see http://www.blitzed.org/bopm.
25
26 %prep
27 %setup -q
28
29 %build
30 rm -rf $RPM_BUILD_ROOT
31 ./configure --prefix=/usr --localstatedir=/var/log
32 make
33
34 %install
35 install -d $RPM_BUILD_ROOT/usr/bin
36 install -d $RPM_BUILD_ROOT/etc
37 install -m755 -s src/bopm $RPM_BUILD_ROOT/usr/bin
38 install -m755 -s src/bopchecker $RPM_BUILD_ROOT/usr/bin
39 install -m600 bopm.conf.sample $RPM_BUILD_ROOT/etc/bopm.conf
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(-,root,root)
46 %doc README INSTALL ChangeLog
47 %{_bindir}/bopm
48 %{_bindir}/bopchecker
49 %config %{_sysconfdir}/bopm.conf
50
51 %changelog
52 * Sun May 26 2002 Andy Smith <grifferz@blitzed.org>
53 - Initial RPM attempt