diff options
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/pchar/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/pchar/files/pchar-1.5-snmp.patch | 24 | ||||
-rw-r--r-- | net-analyzer/pchar/metadata.xml | 17 | ||||
-rw-r--r-- | net-analyzer/pchar/pchar-1.5-r1.ebuild | 42 |
4 files changed, 0 insertions, 84 deletions
diff --git a/net-analyzer/pchar/Manifest b/net-analyzer/pchar/Manifest deleted file mode 100644 index 7e249db080e3..000000000000 --- a/net-analyzer/pchar/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pchar-1.5.tar.gz 117678 BLAKE2B adf146867fae37e20f33cde9055b2766e3261a4da992de4d12cd937ea4afc0b9e8ed8a5ccfb43a34526b39a84ad06dfd204b979d0a9aefb20f4dcf1090c813bd SHA512 56784589a16638a12230a11a177b8dd97a7abac927624beaaea89e0169423f7242c2b434a36aad1a07d977e6b006fd71eb9132aecb1d35e3e3363eb2d1549d84 diff --git a/net-analyzer/pchar/files/pchar-1.5-snmp.patch b/net-analyzer/pchar/files/pchar-1.5-snmp.patch deleted file mode 100644 index 9ebfbad39eb0..000000000000 --- a/net-analyzer/pchar/files/pchar-1.5-snmp.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- GetIfInfo.h.old 2005-02-12 21:32:18.000000000 +0100 -+++ GetIfInfo.h 2006-09-22 11:08:44.000000000 +0200 -@@ -17,7 +17,7 @@ - bool IsValid(void); - - const char * GetDescription(void) const; -- const char * GetIfInfo::GetName(void) const; -+ const char * GetName(void) const; - const char * GetContact(void) const; - const char * GetLocation(void) const; - const char * GetIfDescription(void) const; ---- configure.in.old 2005-02-12 21:32:18.000000000 +0100 -+++ configure.in 2006-10-24 23:08:38.000000000 +0200 -@@ -128,8 +128,8 @@ - LDFLAGS="-L$with_snmp/lib $LDFLAGS" - CPPFLAGS="-I$with_snmp/include $CPPFLAGS" - fi -- AC_CHECK_LIB(crypto, des_cbc_encrypt) -- AC_CHECK_LIB(snmp, snmp_sess_init,,,-lcrypto) -+ AC_CHECK_LIB(crypto, DES_cbc_encrypt) -+ AC_CHECK_LIB(snmp, snmp_sess_init) - fi - - dnl pcap support if desired. If the user enabled --with-pcap, diff --git a/net-analyzer/pchar/metadata.xml b/net-analyzer/pchar/metadata.xml deleted file mode 100644 index f1fd21ae99d5..000000000000 --- a/net-analyzer/pchar/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="person"> - <email>chutzpah@gentoo.org</email> - <name>Patrick McLean</name> -</maintainer> -<longdescription lang="en"> -pchar is a reimplementation of the pathchar utility, written by Van -Jacobson. Both programs attempt to characterize the bandwidth, -latency, and loss of links along an end-to-end path through the -Internet. pchar works in both IPv4 and IPv6 networks. -</longdescription> -<use> - <flag name="pcap">Use the <pkg>net-libs/libpcap</pkg> library</flag> -</use> -</pkgmetadata> diff --git a/net-analyzer/pchar/pchar-1.5-r1.ebuild b/net-analyzer/pchar/pchar-1.5-r1.ebuild deleted file mode 100644 index 37006d24eeac..000000000000 --- a/net-analyzer/pchar/pchar-1.5-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -WANT_AUTOCONF=2.1 -WANT_AUTOMAKE=none - -inherit eutils autotools toolchain-funcs - -DESCRIPTION="Internet bandwidth, latency, and loss of links analyzer" -HOMEPAGE="http://www.kitchenlab.org/www/bmah/Software/pchar/" -SRC_URI="http://www.kitchenlab.org/www/bmah/Software/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="ipv6 pcap snmp" - -DEPEND=">=dev-libs/openssl-0.9.7 - snmp? ( net-analyzer/net-snmp[ucd-compat(+)] ) - pcap? ( net-libs/libpcap )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-snmp.patch - - eautoreconf -} - -src_configure() { - tc-export CC CXX - - econf --without-suid \ - $(use_with ipv6) \ - $(use_with snmp snmp /usr/lib) \ - $(use_with pcap) -} - -src_install() { - einstall - dodoc FAQ CHANGES README -} |