Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/trafshow/
Date: Wed, 02 Dec 2020 17:23:02
Message-Id: 1606929711.385f9dbce4bea505f3b82774f0e569a361f5c0f1.bman@gentoo
1 commit: 385f9dbce4bea505f3b82774f0e569a361f5c0f1
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 17:21:51 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 17:21:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385f9dbc
7
8 net-analyzer/trafshow: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 net-analyzer/trafshow/trafshow-5.2.3.ebuild | 39 -----------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/net-analyzer/trafshow/trafshow-5.2.3.ebuild b/net-analyzer/trafshow/trafshow-5.2.3.ebuild
16 deleted file mode 100644
17 index 9cde85d61f4..00000000000
18 --- a/net-analyzer/trafshow/trafshow-5.2.3.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit autotools eutils
26 -
27 -DESCRIPTION="Full screen visualization of the network traffic"
28 -HOMEPAGE="http://soft.risp.ru/trafshow/index_en.shtml"
29 -SRC_URI="ftp://ftp.nsk.su/pub/RinetSoftware/${P}.tgz"
30 -
31 -LICENSE="BSD"
32 -SLOT="3"
33 -KEYWORDS="amd64 hppa ~ppc ppc64 sparc x86"
34 -IUSE="slang"
35 -
36 -DEPEND="
37 - net-libs/libpcap
38 - !slang? ( sys-libs/ncurses )
39 - slang? ( >=sys-libs/slang-1.4 )
40 -"
41 -
42 -src_prepare() {
43 - cat /usr/share/aclocal/pkg.m4 >> aclocal.m4 || die
44 - epatch \
45 - "${FILESDIR}"/${P}-gcc44.patch \
46 - "${FILESDIR}"/${P}-gentoo.patch \
47 - "${FILESDIR}"/${P}-tinfo.patch
48 - eautoreconf
49 -}
50 -
51 -src_configure() {
52 - if ! use slang; then
53 - # No command-line option so pre-cache instead
54 - export ac_cv_have_curses=ncurses
55 - export LIBS=-lncurses
56 - fi
57 -
58 - econf
59 -}