]> git.pld-linux.org Git - packages/ssldump.git/blame - ssldump.spec
- added AES support (patch by Adam Osuchowski)
[packages/ssldump.git] / ssldump.spec
CommitLineData
38d05f8c 1Summary: SSLv3/TLS network protocol analyzer
50ca7bdc 2Summary(pl.UTF-8): Analizator protokołu sieciowego SSLv3/TLS
38d05f8c
AM
3Name: ssldump
4Version: 0.9b3
fd324c6e 5Release: 7
38d05f8c 6License: BSD
cbaa17e7 7Group: Networking/Utilities
38d05f8c
AM
8Source0: http://www.rtfm.com/ssldump/%{name}-%{version}.tar.gz
9# Source0-md5: ac8c28fe87508d6bfb06344ec496b1dd
0b750ea2 10Patch0: %{name}-openssl.patch
fd324c6e 11Patch1: aes-support.patch
38d05f8c 12URL: http://www.rtfm.com/ssldump/
38d05f8c 13BuildRequires: autoconf
1fa37015 14BuildRequires: automake
38d05f8c
AM
15BuildRequires: libpcap-devel >= 2:0.8.3
16BuildRequires: openssl-devel >= 0.9.7d
1fa37015 17BuildRequires: sed >= 4.0
38d05f8c
AM
18BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20%description
21ssldump is an SSLv3/TLS network protocol analyzer. It identifies TCP
22connections on the chosen network interface and attempts to interpret
23them as SSLv3/TLS traffic. When it identifies SSLv3/TLS traffic, it
24decodes the records and displays them in a textual form to stdout. If
25provided with the appropriate keying material, it will also decrypt
26the connections and display the application data traffic.
27
a1367123
JR
28%description -l pl.UTF-8
29ssldump to analizator protokołu sieciowego SSLv3/TLS. Identyfikuje
30połączenia TCP na wybranym interfejsie sieciowym i próbuje
31interpretować je jako ruch SSLv3/TLS. Po zidentyfikowaniu ruchu
32SSLv3/TLS dekoduje rekordy i wyświetla je w postaci tekstowej na
33standardowym wyjściu. W przypadku wyposarzenia we właściwe klucze
34będzie także dekodował połączenia i wyświetlał ruch danych aplikacji.
38d05f8c
AM
35
36%prep
37%setup -q
0b750ea2 38%patch0 -p1
fd324c6e 39%patch1 -p1
0b750ea2 40
38d05f8c
AM
41sed -i -e 's#libpcap.a#libpcap.so#g' configure*
42sed -i -e 's#net/bpf.h#pcap-bpf.h#g' base/pcap-snoop.c
43
44%build
45cp -f %{_datadir}/automake/config.* .
46%{__aclocal}
47%{__autoconf}
48%configure \
49 --with-pcap-inc=%{_includedir} \
fd324c6e
MB
50 --with-pcap-lib=%{_libdir} \
51 --with-openssl-lib=%{_libdir}
38d05f8c
AM
52%{__make}
53
54%install
55rm -rf $RPM_BUILD_ROOT
56
57%{__make} install \
58 BINDIR=$RPM_BUILD_ROOT%{_sbindir} \
59 MANDIR=$RPM_BUILD_ROOT%{_mandir}
60
61%clean
62rm -rf $RPM_BUILD_ROOT
63
64%files
65%defattr(644,root,root,755)
66%doc CREDITS README
67%attr(755,root,root) %{_sbindir}/ssldump
68%{_mandir}/man1/*
This page took 0.075684 seconds and 4 git commands to generate.