Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/thc-ipv6/
Date: Sun, 27 Jan 2019 19:46:55
Message-Id: 1548618363.ac4ddf800a9410162f13a586a01369b4674e66c1.pacho@gentoo
1 commit: ac4ddf800a9410162f13a586a01369b4674e66c1
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 19:43:19 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 19:46:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac4ddf80
7
8 net-analyzer/thc-ipv6: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 net-analyzer/thc-ipv6/Manifest | 1 -
14 net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild | 55 -------------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/net-analyzer/thc-ipv6/Manifest b/net-analyzer/thc-ipv6/Manifest
18 index c7586fa05c7..2d19bb77271 100644
19 --- a/net-analyzer/thc-ipv6/Manifest
20 +++ b/net-analyzer/thc-ipv6/Manifest
21 @@ -1,2 +1 @@
22 -DIST thc-ipv6-3.0.tar.gz 667859 BLAKE2B 6fa4f697bf316c3b9730b58e35c3d8ac6910c0e063751037a0900aa459c128c5de9a07e4912025dd6eebb92061a7cc48a6e2e2a0b5d7d53b339e4d5416e4fdf7 SHA512 969ebbf4da4514cb83e3abcff637f7ba301c4f072f1f983b3cd3cfd3b0643b55af6eacca3c76e39e11ea9ef6e465be03dfa7ce1d6c988cabbd42cdd95d1e2552
23 DIST thc-ipv6-3.2.tar.gz 1595453 BLAKE2B f1bb1cdc31f4cf4d067b39997ca3cc2d6d8c15e7a8c585c7c494f03e229fccbcd65677e382a65f0e650d79278f5ede89173db1cdf313ade7c48dff1566856afa SHA512 648db4618ebb83572e2e318cdbb284fe96a86adf335f7dd9b26fd010c76d12e9137ed7367207c66c93c1961c868d3917d706db9f597289ac47ea3f9b83c03441
24
25 diff --git a/net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild b/net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild
26 deleted file mode 100644
27 index d4aee56ff48..00000000000
28 --- a/net-analyzer/thc-ipv6/thc-ipv6-3.0.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -[[ ${PV} == *9999 ]] && SCM="git-r3"
36 -EGIT_REPO_URI="https://github.com/vanhauser-thc/thc-ipv6.git"
37 -EGIT_BRANCH=master
38 -
39 -inherit eutils toolchain-funcs ${SCM}
40 -
41 -DESCRIPTION="complete tool set to attack the inherent protocol weaknesses of IPV6 and ICMP6"
42 -HOMEPAGE="https://www.thc.org/thc-ipv6/"
43 -LICENSE="AGPL-3 openssl"
44 -SLOT="0"
45 -IUSE="ssl"
46 -
47 -if [[ ${PV} != *9999 ]]; then
48 - SRC_URI="http://www.thc.org/releases/${P}.tar.gz"
49 - KEYWORDS="~amd64 ~x86"
50 -fi
51 -
52 -DEPEND="net-libs/libpcap
53 - net-libs/libnetfilter_queue
54 - ssl? ( dev-libs/openssl:* )"
55 -RDEPEND="${DEPEND}"
56 -
57 -PATCHES=( "${FILESDIR}/${PN}-3.2-stdint.patch"
58 - "${FILESDIR}"/${PN}-3.0-Makefile.patch )
59 -
60 -src_unpack() {
61 - if [[ ${PV} != *9999 ]]; then
62 - default_src_unpack
63 - else
64 - git-r3_src_unpack
65 - fi
66 -}
67 -
68 -src_prepare() {
69 - sed -e '/^CFLAGS=/s,CFLAGS=,CFLAGS?=,' \
70 - -i Makefile || die
71 - if ! use ssl ; then
72 - sed -e '/^HAVE_SSL/s:^:#:' \
73 - -i Makefile
74 - fi
75 - default
76 -}
77 -
78 -src_compile() {
79 - emake CC="$(tc-getCC)"
80 -}
81 -
82 -src_install() {
83 - emake DESTDIR="${D}" PREFIX="/usr" STRIP="true" install
84 - dodoc CHANGES HOWTO-INJECT README
85 -}