Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/thc-ipv6: thc-ipv6-2.5.ebuild ChangeLog thc-ipv6-2.1.ebuild thc-ipv6-2.0.ebuild
Date: Wed, 30 Jul 2014 22:20:15
Message-Id: 20140730222009.6B3ED2004F@flycatcher.gentoo.org
1 xmw 14/07/30 22:20:07
2
3 Modified: ChangeLog
4 Added: thc-ipv6-2.5.ebuild
5 Removed: thc-ipv6-2.1.ebuild thc-ipv6-2.0.ebuild
6 Log:
7 Version bump, drop old.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
10
11 Revision Changes Path
12 1.10 net-analyzer/thc-ipv6/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/thc-ipv6/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/thc-ipv6/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/thc-ipv6/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/thc-ipv6/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 6 May 2013 07:03:32 -0000 1.9
25 +++ ChangeLog 30 Jul 2014 22:20:07 -0000 1.10
26 @@ -1,6 +1,14 @@
27 # ChangeLog for net-analyzer/thc-ipv6
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thc-ipv6/ChangeLog,v 1.9 2013/05/06 07:03:32 xmw Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thc-ipv6/ChangeLog,v 1.10 2014/07/30 22:20:07 xmw Exp $
32 +
33 +*thc-ipv6-2.5 (30 Jul 2014)
34 +
35 + 30 Jul 2014; Michael Weber <xmw@g.o> +thc-ipv6-2.5.ebuild,
36 + -files/thc-ipv6-1.4-Makefile.patch, -files/thc-ipv6-1.9-Makefile.patch,
37 + -files/thc-ipv6-2.0-Makefile.patch, -thc-ipv6-2.0.ebuild,
38 + -thc-ipv6-2.1.ebuild:
39 + Version bump, drop old.
40
41 *thc-ipv6-2.3 (06 May 2013)
42
43
44
45
46 1.1 net-analyzer/thc-ipv6/thc-ipv6-2.5.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/thc-ipv6/thc-ipv6-2.5.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/thc-ipv6/thc-ipv6-2.5.ebuild?rev=1.1&content-type=text/plain
50
51 Index: thc-ipv6-2.5.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/thc-ipv6/thc-ipv6-2.5.ebuild,v 1.1 2014/07/30 22:20:07 xmw Exp $
56
57 EAPI=4
58
59 inherit eutils toolchain-funcs
60
61 DESCRIPTION="complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
62 HOMEPAGE="http://freeworld.thc.org/thc-ipv6/"
63 SRC_URI="http://freeworld.thc.org/releases/${P}.tar.gz"
64
65 LICENSE="AGPL-3 openssl"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="ssl"
69
70 DEPEND="net-libs/libpcap
71 ssl? ( dev-libs/openssl )"
72 RDEPEND="${DEPEND}"
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${PN}-2.1-Makefile.patch
76 if ! use ssl ; then
77 sed -e '/^HAVE_SSL/s:^:#:' \
78 -i Makefile
79 fi
80 }
81
82 src_compile() {
83 emake CC="$(tc-getCC)"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" PREFIX="/usr" STRIP="true" install
88 dodoc CHANGES HOWTO-INJECT README
89 }