diff options
author | Sam James <sam@gentoo.org> | 2022-07-10 08:42:09 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-10 08:42:09 +0100 |
commit | c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30 (patch) | |
tree | 5db2b28a02745b7ec0c73f12ef9e790ee8c74435 | |
parent | virtual/libelf: EAPI 8 (diff) | |
download | gentoo-c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30.tar.gz gentoo-c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30.tar.bz2 gentoo-c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30.zip |
net-analyzer/netselect: drop 0.4-r1
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | net-analyzer/netselect/netselect-0.4-r1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/net-analyzer/netselect/netselect-0.4-r1.ebuild b/net-analyzer/netselect/netselect-0.4-r1.ebuild deleted file mode 100644 index 80066a138a33..000000000000 --- a/net-analyzer/netselect/netselect-0.4-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Ultrafast implementation of ping" -HOMEPAGE="http://apenwarr.ca/netselect/" -SRC_URI=" - https://github.com/apenwarr/${PN}/archive/${P}.tar.gz - ipv6? ( https://dev.gentoo.org/~jsmolic/distfiles/${P}-ipv6.patch.xz ) -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="ipv6" - -PATCHES=( - "${FILESDIR}"/${PN}-0.4-bsd.patch - "${FILESDIR}"/${PN}-0.4-flags.patch -) -S=${WORKDIR}/${PN}-${P} - -src_prepare() { - use ipv6 && eapply "${WORKDIR}"/${PN}-0.4-ipv6.patch - - default -} - -src_compile() { - emake CC="$(tc-getCC)" LDFLAGS="${CFLAGS} ${LDFLAGS}" -} - -src_install() { - dobin netselect - - if ! use prefix ; then - fowners root:wheel /usr/bin/netselect - fperms 4711 /usr/bin/netselect - fi - - dodoc HISTORY README - - doman netselect.1 -} |