]> git.pld-linux.org Git - packages/dsniff.git/blob - dsniff.spec
- rel 32
[packages/dsniff.git] / dsniff.spec
1 # TODO
2 # - make R: mozilla-firefox something generic (it uses X11 and remote.c to find
3 #   browser window to send openURL(%s, %s) command there)
4 %define         rel     25
5 Summary:        Network audit tools
6 Summary(pl.UTF-8):      Narzędzia do kontroli sieci
7 Name:           dsniff
8 Version:        2.4
9 Release:        0.b1.%{rel}
10 License:        BSD
11 Group:          Networking/Utilities
12 Source0:        http://www.monkey.org/~dugsong/dsniff/beta/%{name}-%{version}b1.tar.gz
13 # Source0-md5:  2f761fa3475682a7512b0b43568ee7d6
14 Patch0:         %{name}-ac.patch
15 Patch1:         %{name}-libnet1.patch
16 Patch2:         %{name}-clk_tck.patch
17 Patch3:         %{name}-openssl-0.9.8.patch
18 # ggsniff 1.2 from http://ggsniff.sourceforge.net/
19 #Patch3:        %{name}-gg.patch
20 URL:            http://www.monkey.org/~dugsong/dsniff/
21 BuildRequires:  autoconf
22 BuildRequires:  automake
23 BuildRequires:  cpp
24 BuildRequires:  db-devel
25 BuildRequires:  glibc-static
26 BuildRequires:  libnet1-devel
27 BuildRequires:  libnids-devel
28 BuildRequires:  libpcap-devel
29 BuildRequires:  openssl-devel >= 0.9.7d
30 BuildRequires:  rpm >= 4.4.9-56
31 %if "%{pld_release}" == "ac"
32 BuildRequires:  XFree86-devel
33 %else
34 BuildRequires:  xorg-lib-libX11-devel
35 BuildRequires:  xorg-lib-libXmu-devel
36 %endif
37 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
38
39 %description
40 Tools to audit network and to demonstrate the insecurity of cleartext
41 network protocols. Please do not abuse this software.
42
43 %description -l pl.UTF-8
44 Narzędzia do kontroli sieci oraz demonstracji braku zabezpieczeń w
45 nieszyfrowanych protokołach sieciowych. Proszę nie nadużywać tego
46 oprogramowania.
47
48 %package webspy
49 Summary:        Network audit tools
50 Summary(pl.UTF-8):      Narzędzia do kontroli sieci
51 Group:          Networking/Utilities
52 Requires:       %{name} = %{version}-%{release}
53 %if "%{pld_release}" == "ac"
54 Requires:       mozilla-firefox
55 %else
56 Requires:       firefox
57 %endif
58
59 %description webspy
60 webspy sends URLs sniffed from a client to your local Mozilla browser
61 for display, updated in real-time (as the target surfs, your browser
62 surfs along with them, automagically). Mozilla must be running on your
63 local X display ahead of time.
64
65 %description webspy -l pl.UTF-8
66 webspy przesyła podsłuchane URL-e do wyświetlenia w lokalnie
67 uruchomionej przeglądarce Mozilla. Adresy są uaktualniane na bieżąco
68 (a więc przegląda się strony równolegle z podsłuchiwanym). Mozilla
69 musi być wcześniej uruchomiona na lokalnym serwerze X.
70
71 %prep
72 %setup -q
73 %patch0 -p1
74 %patch1 -p1
75 %patch2 -p1
76 %patch3 -p1
77
78 %build
79 %{__autoheader}
80 %{__aclocal}
81 %{__autoconf}
82 CFLAGS="%{rpmcflags} -I./missing"
83 %configure \
84         --libdir=%{_datadir}/%{name}
85 sed -i -e 's#-L/usr/lib64 # #g' -e 's#-L/usr/lib # #g' Makefile
86 %{__make} libmissing.a all
87
88 %install
89 rm -rf $RPM_BUILD_ROOT
90
91 %{__make} install \
92         install_prefix=$RPM_BUILD_ROOT
93
94 %clean
95 rm -rf $RPM_BUILD_ROOT
96
97 %files
98 %defattr(644,root,root,755)
99 %doc README*
100 %attr(755,root,root) %{_sbindir}/[a-u]*
101 %attr(755,root,root) %{_sbindir}/webmitm
102 %{_datadir}/%{name}
103 %{_mandir}/man8/[a-u]*
104 %{_mandir}/man8/webmitm*
105
106 %files webspy
107 %defattr(644,root,root,755)
108 %attr(755,root,root) %{_sbindir}/webspy
109 %{_mandir}/man8/webspy*
This page took 0.04486 seconds and 3 git commands to generate.