net-analyzer/flowgrind: drop old

Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Aaron Bauman
2020-11-26 17:15:22 -05:00
parent ae8cdb2aa0
commit a9b93671b6
3 changed files with 0 additions and 70 deletions

View File

@@ -1,2 +1 @@
DIST flowgrind-0.7.1.tar.bz2 224678 BLAKE2B e5a6759e57950b2484879f6259f9e17ae3fb5a3b49e1e27dfb6c1c89d476dbc693f29b87bf8ab4975fdde30f57dcd9c279ad6508168136b6e2ddd335bba6fc31 SHA512 fe1bc82d8b1b5bbe37989c0d8f24ba87bca73522983b855e249a3fa5e5fc96d9a63190aa94627db2b1bfea63304e453b4bc1c5fd18260fad9bda38313ad912b8
DIST flowgrind-0.8.0.tar.bz2 298730 BLAKE2B e924c9900d24565dc025af47d57173d828eea6a0d0bce462ab1e9cb38a14b1ac14b4148797c164212473852f5c0525161766b115b5a435fbfd673dbde8e14765 SHA512 2af250da696c4d0f613191e7a2e3084b2aa1dc995665a4164324cdb2cc56af7b000b8a2f5d5e7ac8ebbad3ae0ba4fc8eb641afe65c1a842a633c19e95ba3e65a

View File

@@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Network performance measurement tool"
HOMEPAGE="http://flowgrind.net/ https://github.com/flowgrind/flowgrind/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug gsl pcap"
RDEPEND="dev-libs/xmlrpc-c[abyss,curl]
gsl? ( sci-libs/gsl )
pcap? ( net-libs/libpcap )"
DEPEND="${RDEPEND}"
src_configure() {
econf \
$(use_enable debug) \
$(use_enable gsl) \
$(use_enable pcap)
}

View File

@@ -1,44 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Network performance measurement tool"
HOMEPAGE="http://flowgrind.net/ https://github.com/flowgrind/flowgrind/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc gsl pcap"
RDEPEND="
sys-apps/util-linux
dev-libs/xmlrpc-c[abyss,curl]
gsl? ( sci-libs/gsl )
pcap? ( net-libs/libpcap )
"
DEPEND="
${RDEPEND}
doc? ( app-doc/doxygen )
"
src_configure() {
econf \
$(use_enable debug) \
$(use_with doc doxygen) \
$(use_with gsl) \
$(use_with pcap)
}
src_compile() {
default
use doc && emake html
}
src_install() {
default
use doc && dodoc -r doc/html
}