]> git.pld-linux.org Git - packages/ettercap.git/blob - ettercap.spec
- rel 6; fix build
[packages/ettercap.git] / ettercap.spec
1 #
2 # Conditional build:
3 %bcond_without  gtk             # build without gtk-based frontend (fewer dependencies)
4 #
5 Summary:        ettercap - a ncurses-based sniffer/interceptor utility
6 Summary(pl.UTF-8):      ettercap - oparte o ncurses narzędzie do sniffowania/przechwytywania
7 Summary(pt_BR.UTF-8):   ettercap e um interceptador/sniffer paseado em ncurses
8 Name:           ettercap
9 Version:        0.7.3
10 Release:        6
11 Epoch:          1
12 License:        GPL
13 Group:          Networking/Utilities
14 Source0:        http://dl.sourceforge.net/ettercap/%{name}-NG-%{version}.tar.gz
15 # Source0-md5:  28fb15cd024162c55249888fe1b97820
16 Patch1:         %{name}-ncurses.patch
17 Patch2:         %{name}-plugin_dir.patch
18 Patch3:         %{name}-kernel_version.patch
19 Patch4:         %{name}-as-needed.patch
20 Patch5:         %{name}-build.patch
21 URL:            http://ettercap.sourceforge.net/
22 BuildRequires:  autoconf
23 BuildRequires:  automake
24 %{?with_gtk:BuildRequires:      gtk+2-devel}
25 BuildRequires:  libltdl-devel
26 BuildRequires:  libnet-devel >= 1.1.2.1
27 BuildRequires:  libpcap-devel
28 BuildRequires:  ncurses-ext-devel
29 BuildRequires:  openssl-devel >= 0.9.7d
30 BuildRequires:  pcre-devel
31 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
32
33 %define         specflags       -fomit-frame-pointer
34
35 %description
36 ettercap is a network sniffer/interceptor/logger for ethernet LANs
37 (both switched or not). It supports active and passive dissection of
38 many protocols (even ciphered ones, like SSH and HTTPS). Data
39 injection in an established connection and filtering (substitute or
40 drop a packet) on the fly is also possible, keeping the connection
41 synchronized. Many sniffing modes were implemented to give you a
42 powerful and complete sniffing suite. Plugins are supported. It has
43 the ability to check whether you are in a switched LAN or not, and to
44 use OS fingerprints (active or passive) to let you know the geometry
45 of the LAN. The passive scan of the LAN retrieves infos about: hosts
46 in the lan, open ports, services version, type of the host (gateway,
47 router or simple host) and extimated distance in hop.
48
49 %description -l pl.UTF-8
50 ettercap jest wieloczynnościowym snifferem/przechwytywaczem/loggerem
51 dla sieci LAN (opartych na switchach lub hubach). Obsługuje aktywną i
52 pasywną analizę wielu protokołów (nawet szyfrowanych, jak SSH czy
53 HTTPS). Możliwe jest także wstrzykiwanie lub filtrowanie danych
54 (podmiana lub usunięcie pakietu) w locie, przy podtrzymaniu
55 synchronizacji połączenia. Program ma zaimplementowane wiele trybów
56 sniffowania, aby dać potężne i kompletne narzędzie. Obsługiwane są
57 wtyczki. Program ma możliwość sprawdzania, czy pracuje w sieci ze
58 switchami oraz używania odcisków systemów (aktywnego lub pasywnego) do
59 poznania geometrii sieci. Pasywne skanowanie sieci uzyskuje informacje
60 o: hostach w sieci, otwartych portach, wersjach usług, rodzajach
61 hostów (bramki, routery lub zwykłe komputery) oraz przybliżonych
62 odległościach (w hopach).
63
64 %description -l pt_BR.UTF-8
65 ettercap é um sniffer/interceptor/logger de rede para redes locais
66 (com uso de switches ou não). Suporta operações ativas e passivas de
67 vários protocolos (mesmo os criptografados, como SSH e HTTPS). Também
68 é possível injeção de dados em uma conexão estabelecida e filtragem
69 (substituição ou descarte de um pacote) em tempo real mantendo a
70 conexão sincronizada. Muitos modos de sniffing foram implementadas
71 para proporcionar a você um completo conjunto de sniffing. Plugins são
72 suportados. Tem a habilidade de verificar se você está em uma rede
73 local com switches ou não. Utiliza fingerprints do Sistema Operacional
74 (ativo ou passivo) para permitir que você conheça a geometria da rede
75 local. A varredura passiva da rede local obtém informações sobre:
76 hosts na rede local, portas abertas, versão de serviços, tipo de host
77 (gateway, router ou um computador) e a distância estimada no hop.
78
79 %prep
80 %setup -q -n %{name}-NG-%{version}
81 #%patch1 -p0
82 #%patch2 -p1
83 %patch4 -p1
84 %patch5 -p1
85
86 %build
87 #cp -f /usr/share/automake/config.sub .
88 #%{__aclocal}
89 #%{__autoconf}
90 #%{__autoheader}
91 CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
92 %configure \
93         --%{!?debug:dis}%{?debug:en}able-debug \
94         --%{?with_gtk:en}%{!?with_gtk:dis}able-gtk \
95         --enable-plugins \
96         --enable-https
97 %{__make}
98
99 %install
100 rm -rf $RPM_BUILD_ROOT
101
102 %{__make} install \
103         DESTDIR=$RPM_BUILD_ROOT
104
105 %clean
106 rm -rf $RPM_BUILD_ROOT
107
108 %files
109 %defattr(644,root,root,755)
110 %doc README CHANGELOG AUTHORS TODO doc/*
111 %doc THANKS README.BUGS
112 %attr(755,root,root) %{_bindir}/*
113 %dir %{_libdir}/ettercap
114 %attr(755,root,root) %{_libdir}/ettercap/*.so
115 %{_libdir}/ettercap/*.la
116 %{_datadir}/ettercap
117 %{_mandir}/man8/*
118 %{_mandir}/man5/*
119 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/etter.conf
This page took 0.069102 seconds and 4 git commands to generate.