Gentoo Archives: gentoo-commits

From: "Agostino Sarubbo (ago)" <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/ettercap: ettercap-0.7.5_p20121103.ebuild ChangeLog ettercap-0.7.5_p20121020.ebuild
Date: Sat, 03 Nov 2012 12:59:29
Message-Id: 20121103125857.5FFA4215F3@flycatcher.gentoo.org
1 ago 12/11/03 12:58:57
2
3 Modified: ChangeLog
4 Added: ettercap-0.7.5_p20121103.ebuild
5 Removed: ettercap-0.7.5_p20121020.ebuild
6 Log:
7 Automated addition of the new snapshot.
8
9 (Portage version: 2.1.11.9/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.109 net-analyzer/ettercap/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ChangeLog?rev=1.109&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ChangeLog?rev=1.109&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ChangeLog?r1=1.108&r2=1.109
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v
21 retrieving revision 1.108
22 retrieving revision 1.109
23 diff -u -r1.108 -r1.109
24 --- ChangeLog 20 Oct 2012 11:23:10 -0000 1.108
25 +++ ChangeLog 3 Nov 2012 12:58:57 -0000 1.109
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-analyzer/ettercap
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.108 2012/10/20 11:23:10 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.109 2012/11/03 12:58:57 ago Exp $
31 +
32 +*ettercap-0.7.5_p20121103 (03 Nov 2012)
33 +
34 + 03 Nov 2012; Agostino Sarubbo <ago@g.o>
35 + +ettercap-0.7.5_p20121103.ebuild, -ettercap-0.7.5_p20121020.ebuild:
36 + Automated addition of the new snapshot.
37
38 *ettercap-0.7.5_p20121020 (20 Oct 2012)
39
40
41
42
43 1.1 net-analyzer/ettercap/ettercap-0.7.5_p20121103.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ettercap-0.7.5_p20121103.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ettercap-0.7.5_p20121103.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ettercap-0.7.5_p20121103.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.7.5_p20121103.ebuild,v 1.1 2012/11/03 12:58:57 ago Exp $
53
54 EAPI=4
55
56 CMAKE_MIN_VERSION=2.8
57
58 inherit cmake-utils
59
60 DESCRIPTION="A suite for man in the middle attacks"
61 HOMEPAGE="http://ettercap.sourceforge.net https://github.com/Ettercap/ettercap"
62 SRC_URI="http://dev.gentoo.org/~ago/distfiles/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
67 IUSE="gtk ipv6 ncurses +plugins ssl"
68
69 RDEPEND="dev-libs/libpcre
70 net-libs/libnet:1.1
71 >=net-libs/libpcap-0.8.1
72 sys-libs/zlib
73 gtk? (
74 >=dev-libs/atk-1.2.4
75 >=dev-libs/glib-2.2.2:2
76 media-libs/freetype
77 x11-libs/cairo
78 x11-libs/gdk-pixbuf:2
79 >=x11-libs/gtk+-2.2.2:2
80 >=x11-libs/pango-1.2.3
81 )
82 ncurses? ( >=sys-libs/ncurses-5.3 )
83 plugins? (
84 >=net-misc/curl-7.26.0
85 sys-devel/libtool
86 )
87 ssl? ( dev-libs/openssl )"
88 DEPEND="${RDEPEND}
89 app-text/ghostscript-gpl
90 sys-devel/flex
91 virtual/yacc"
92
93 src_prepare() {
94 #ettercap defaults to using mozilla so let's try to use xdg-open and pray it works
95 sed -i 's#mozilla -remote openurl(http://%host%url)#xdg-open 'http://%host%url'#' \
96 share/etter.conf || die
97 }
98
99 src_configure() {
100 local mycmakeargs=(
101 $(cmake-utils_use_enable ncurses CURSES)
102 $(cmake-utils_use_enable gtk)
103 $(cmake-utils_use_enable ssl)
104 $(cmake-utils_use_enable plugins)
105 $(cmake-utils_use_enable ipv6)
106 )
107 cmake-utils_src_configure
108 }