diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-11-26 17:49:20 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-11-26 18:04:03 -0500 |
commit | 0b8c1cc996dce6857dd2762239dc3dd40de66079 (patch) | |
tree | e3b96a8cea9906409b42f921675ad5e8157045b4 /net-analyzer/pinger | |
parent | net-analyzer/nttcp: drop old (diff) | |
download | gentoo-0b8c1cc996dce6857dd2762239dc3dd40de66079.tar.gz gentoo-0b8c1cc996dce6857dd2762239dc3dd40de66079.tar.bz2 gentoo-0b8c1cc996dce6857dd2762239dc3dd40de66079.zip |
net-analyzer/pinger: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-analyzer/pinger')
-rw-r--r-- | net-analyzer/pinger/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/pinger/pinger-0.32e.ebuild | 48 |
2 files changed, 0 insertions, 49 deletions
diff --git a/net-analyzer/pinger/Manifest b/net-analyzer/pinger/Manifest index 1469fdffd3f6..994a344d6a4d 100644 --- a/net-analyzer/pinger/Manifest +++ b/net-analyzer/pinger/Manifest @@ -1,2 +1 @@ -DIST pinger-0.32e.tar.gz 239002 BLAKE2B d8fb905eac4cc84271196fb96503be512c18356668ddef943af028eac9aeb61a0836d3e85ee1c45546a0f88725e0a883947d5c3f38030b55b857d4be13af196f SHA512 8a6cebe9b37399e2e84eead3b386b999212904ecffb1fc951b4165295b278690217f35d20830e1f1440b94567d9d5d3423d37ee6e9200173be9aacefb68a87f7 DIST pinger-0.33.tar.gz 247827 BLAKE2B 6139044be634438945c92a431b97276b5556b513a948a675d6d70c73e4e22d08a58b9cf6607170f804354c18371af54a222b0e064cc1c8275ba77f67ddbd6699 SHA512 fff07599ef91fbdcff9be7806eca57a71e8e6fac7e9afc67c4147e6246b0bcdadf379de28f87054dbe7c409955c0e0ddeae7f529e954231bea0cfb39e4e29bc1 diff --git a/net-analyzer/pinger/pinger-0.32e.ebuild b/net-analyzer/pinger/pinger-0.32e.ebuild deleted file mode 100644 index 85b142c36460..000000000000 --- a/net-analyzer/pinger/pinger-0.32e.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils flag-o-matic - -DESCRIPTION="Cyclic multi ping utility for selected adresses using GTK/ncurses" -HOMEPAGE="http://aa.vslib.cz/silk/projekty/pinger/index.php" -SRC_URI="http://aa.vslib.cz/silk/projekty/pinger/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="gtk ncurses nls" - -REQUIRED_USE=" - !gtk? ( ncurses ) - !ncurses? ( gtk ) -" - -RDEPEND=" - gtk? ( >=x11-libs/gtk+-2.4:2 ) - ncurses? ( sys-libs/ncurses ) -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -DOCS=( AUTHORS BUGS ChangeLog NEWS README ) - -src_prepare() { - # bug #494636 - cp "${FILESDIR}"/gtk-2.0.m4 m4/ || die - - epatch "${FILESDIR}"/${P}-tinfo.patch - - sed -i -e '/Root privileges/d' src/Makefile.am || die - - eautoreconf -} - -src_configure() { - append-cppflags -D_GNU_SOURCE - - econf $(use_enable gtk) $(use_enable ncurses) $(use_enable nls) -} |