summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-07 15:19:56 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-07 15:53:25 +0200
commitf42254bbf3af2ca41dc7c621bfff886926f5c3ba (patch)
treef197b8cf2ddf2704cfe57ebeaa4a7c606cc3e48b /net-analyzer
parentmedia-sound/audiotag: Drop old (EAPI=0) (diff)
downloadgentoo-f42254bbf3af2ca41dc7c621bfff886926f5c3ba.tar.gz
gentoo-f42254bbf3af2ca41dc7c621bfff886926f5c3ba.tar.bz2
gentoo-f42254bbf3af2ca41dc7c621bfff886926f5c3ba.zip
net-analyzer/tcpstat: Drop old (EAPI=0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild38
-rw-r--r--net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild34
-rw-r--r--net-analyzer/tcpstat/tcpstat-1.5.ebuild26
3 files changed, 0 insertions, 98 deletions
diff --git a/net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild b/net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild
deleted file mode 100644
index e12e9962899f..000000000000
--- a/net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils autotools flag-o-matic
-
-DESCRIPTION="Reports network interface statistics"
-SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz"
-HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/"
-
-DEPEND="net-libs/libpcap"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="amd64 ~ppc ~ppc64 sparc x86"
-
-IUSE="ipv6"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-db.patch"
- eautoreconf
-}
-
-src_compile() {
- append-flags -Wall -Wextra
- econf $(use_enable ipv6) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "emake install failed"
- dobin src/{catpcap,packetdump} || die "dobin failed"
- dodoc AUTHORS ChangeLog NEWS README doc/Tips_and_Tricks.txt
- newdoc src/README README.src
-}
diff --git a/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild b/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild
deleted file mode 100644
index cc4cd5ac89ad..000000000000
--- a/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils autotools flag-o-matic
-
-DESCRIPTION="Reports network interface statistics"
-SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz"
-HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/"
-
-DEPEND="net-libs/libpcap"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="ipv6"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-db.patch
- eautoreconf
-}
-
-src_configure() {
- append-flags -Wall -Wextra
- econf $(use_enable ipv6)
-}
-
-DOCS=( AUTHORS ChangeLog NEWS README doc/Tips_and_Tricks.txt )
-
-src_install() {
- default
- dobin src/{catpcap,packetdump}
- newdoc src/README README.src
-}
diff --git a/net-analyzer/tcpstat/tcpstat-1.5.ebuild b/net-analyzer/tcpstat/tcpstat-1.5.ebuild
deleted file mode 100644
index 3be19c53a62a..000000000000
--- a/net-analyzer/tcpstat/tcpstat-1.5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-IUSE="berkdb"
-
-DESCRIPTION="Reports network interface statistics"
-SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz"
-HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/"
-
-DEPEND="net-libs/libpcap
- berkdb? ( <sys-libs/db-2 )"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="amd64 ~ppc ppc64 sparc x86"
-
-src_install () {
-
- make DESTDIR=${D} install || die
- use berkdb && dobin src/tcpprof
-
- dodoc AUTHORS ChangeLog COPYING LICENSE NEWS README*
-
-}