Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fragroute/
Date: Sun, 17 Feb 2019 14:29:21
Message-Id: 1550413754.ae132ca7e64318c49a40b547681c07ba684ccd55.jer@gentoo
1 commit: ae132ca7e64318c49a40b547681c07ba684ccd55
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 17 14:28:45 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 17 14:29:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae132ca7
7
8 net-analyzer/fragroute: Old
9
10 Package-Manager: Portage-2.3.60, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 net-analyzer/fragroute/fragroute-1.2.6.ebuild | 47 ---------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/net-analyzer/fragroute/fragroute-1.2.6.ebuild b/net-analyzer/fragroute/fragroute-1.2.6.ebuild
17 deleted file mode 100644
18 index 480dc836096..00000000000
19 --- a/net-analyzer/fragroute/fragroute-1.2.6.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -AUTOTOOLS_AUTORECONF=1
28 -AUTOTOOLS_IN_SOURCE_BUILD=1
29 -MY_P="${P}-ipv6"
30 -
31 -inherit autotools-utils
32 -
33 -DESCRIPTION="Testing of network intrusion detection systems, firewalls and TCP/IP stacks"
34 -HOMEPAGE="https://github.com/stsi/fragroute-ipv6"
35 -SRC_URI="https://fragroute-ipv6.googlecode.com/files/${MY_P}.tar.gz"
36 -
37 -LICENSE="BSD"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~ppc ~ppc64 x86"
40 -
41 -RDEPEND="
42 - dev-libs/libevent
43 - net-libs/libpcap
44 - >=dev-libs/libdnet-1.12[ipv6]
45 -"
46 -DEPEND="${RDEPEND}
47 - virtual/awk"
48 -
49 -S="${WORKDIR}/${MY_P}"
50 -
51 -DOCS=( INSTALL README TODO )
52 -
53 -src_prepare() {
54 - # Remove broken and old files, autotools will regen needed files
55 - rm *.m4 acconfig.h missing Makefile.in || die
56 - # Add missing includes
57 - sed -i -e "/#define IPUTIL_H/a#include <stdio.h>\n#include <stdint.h>" iputil.h || die
58 - autotools-utils_src_prepare
59 -}
60 -
61 -src_configure() {
62 - local myeconfargs=(
63 - --with-libevent="${EPREFIX}"/usr \
64 - --with-libdnet="${EPREFIX}"/usr \
65 - --with-libpcap="${EPREFIX}"/usr
66 - )
67 - autotools-utils_src_configure
68 -}