Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
128e1a4e6a | ||
|
4974c2334f | ||
|
b347e79904 | ||
|
213d6ecc59 | ||
|
8788b3a7ec |
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
@ -1,21 +0,0 @@
|
||||
# Makefile for source rpm: dsniff
|
||||
# $Id$
|
||||
NAME := dsniff
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
53
dsniff.spec
53
dsniff.spec
@ -1,7 +1,7 @@
|
||||
Summary: Tools for network auditing and penetration testing
|
||||
Name: dsniff
|
||||
Version: 2.4
|
||||
Release: 0.5.b1%{?dist}
|
||||
Release: 0.9.b1%{?dist}
|
||||
License: BSD
|
||||
Group: Applications/Internet
|
||||
URL: http://www.monkey.org/~dugsong/%{name}/
|
||||
@ -27,6 +27,11 @@ Patch17: dsniff-2.4-fedora_dirs.patch
|
||||
Patch18: dsniff-2.4-glib2.patch
|
||||
BuildRequires: libnet-devel, openssl-devel, libnids-devel
|
||||
BuildRequires: glib2-devel, db4-devel, %{_includedir}/pcap.h
|
||||
%if 0%{?rhel}%{?fedora} >= 5
|
||||
BuildRequires: libXmu-devel
|
||||
%else
|
||||
BuildRequires: xorg-x11-devel
|
||||
%endif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
%description
|
||||
@ -68,20 +73,58 @@ make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install_prefix=$RPM_BUILD_ROOT install
|
||||
make install_prefix=$RPM_BUILD_ROOT INSTALL='install -p' install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGES LICENSE README TODO
|
||||
%dir %{_sysconfdir}/%{name}
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/*
|
||||
%{_sbindir}/*
|
||||
%{_mandir}/man8/*.8*
|
||||
%{_sbindir}/arpspoof
|
||||
%{_sbindir}/dnsspoof
|
||||
%{_sbindir}/%{name}
|
||||
%{_sbindir}/filesnarf
|
||||
%{_sbindir}/macof
|
||||
%{_sbindir}/mailsnarf
|
||||
%{_sbindir}/msgsnarf
|
||||
%{_sbindir}/sshmitm
|
||||
%{_sbindir}/sshow
|
||||
%{_sbindir}/tcpkill
|
||||
%{_sbindir}/tcpnice
|
||||
%{_sbindir}/urlsnarf
|
||||
%{_sbindir}/webmitm
|
||||
%{_sbindir}/webspy
|
||||
%{_mandir}/man8/arpspoof.8*
|
||||
%{_mandir}/man8/dnsspoof.8*
|
||||
%{_mandir}/man8/%{name}.8*
|
||||
%{_mandir}/man8/filesnarf.8*
|
||||
%{_mandir}/man8/macof.8*
|
||||
%{_mandir}/man8/mailsnarf.8*
|
||||
%{_mandir}/man8/msgsnarf.8*
|
||||
%{_mandir}/man8/sshmitm.8*
|
||||
%{_mandir}/man8/sshow.8*
|
||||
%{_mandir}/man8/tcpkill.8*
|
||||
%{_mandir}/man8/tcpnice.8*
|
||||
%{_mandir}/man8/urlsnarf.8*
|
||||
%{_mandir}/man8/webmitm.8*
|
||||
%{_mandir}/man8/webspy.8*
|
||||
|
||||
%changelog
|
||||
* Mon Mar 29 2010 Robert Scheck <robert@fedoraproject.org> 2.4-0.9.b1
|
||||
- Rebuild against libnids 1.24
|
||||
|
||||
* Fri Jan 08 2010 Robert Scheck <robert@fedoraproject.org> 2.4-0.8.b1
|
||||
- Added build requirement to libXmu-devel for webspy (#553230)
|
||||
|
||||
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.4-0.7.b1
|
||||
- rebuilt with new openssl
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-0.6.b1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Mon Feb 23 2009 Robert Scheck <robert@fedoraproject.org> 2.4-0.5.b1
|
||||
- Rebuild against gcc 4.4 and rpm 4.6
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user