diff options
author | 2021-09-19 08:08:47 +0200 | |
---|---|---|
committer | 2021-09-19 08:08:47 +0200 | |
commit | 4a6701de0e356efdee1d5557316f16cd58bead33 (patch) | |
tree | a0b9c4a207596140bca711c4904ad4989276bb98 /net-analyzer/netwox/netwox-5.39.0.ebuild | |
parent | net-analyzer/netwag: Remove last-rited package (diff) | |
download | gentoo-4a6701de0e356efdee1d5557316f16cd58bead33.tar.gz gentoo-4a6701de0e356efdee1d5557316f16cd58bead33.tar.bz2 gentoo-4a6701de0e356efdee1d5557316f16cd58bead33.zip |
net-analyzer/netwox: Remove last-rited package
Closes: https://bugs.gentoo.org/790680
Closes: https://bugs.gentoo.org/711088
Closes: https://bugs.gentoo.org/775944
Closes: https://bugs.gentoo.org/806953
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-analyzer/netwox/netwox-5.39.0.ebuild')
-rw-r--r-- | net-analyzer/netwox/netwox-5.39.0.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/net-analyzer/netwox/netwox-5.39.0.ebuild b/net-analyzer/netwox/netwox-5.39.0.ebuild deleted file mode 100644 index 60405d17bda4..000000000000 --- a/net-analyzer/netwox/netwox-5.39.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# NOTE: netwib, netwox and netwag go together, bump all or bump none - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Toolbox of 217 utilities for testing Ethernet/IP networks" -HOMEPAGE=" - http://ntwox.sourceforge.net/ - http://www.laurentconstantin.com/en/netw/netwox/ -" -SRC_URI="mirror://sourceforge/ntwox/${P}-src.tgz - doc? ( mirror://sourceforge/ntwox/${P}-doc_html.tgz )" -S="${WORKDIR}"/${P}-src/src - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc x86" -IUSE="doc" - -DEPEND=" - net-libs/libnet:1.1 - net-libs/libpcap - ~net-libs/netwib-${PV} -" -RDEPEND="${DEPEND}" - -src_prepare() { - default - - sed -i \ - -e 's:/man$:/share/man:g' \ - -e "s:/lib:/$(get_libdir):" \ - -e "s:/usr/local:/usr:" \ - -e "s:=ar:=$(tc-getAR):" \ - -e "s:=ranlib:=$(tc-getRANLIB):" \ - -e "s:=gcc:=$(tc-getCC):" \ - -e "s:-O2:${CFLAGS}:" \ - config.dat || die - sed -i \ - -e "s:-o netwox:& \${LDFLAGS}:g" \ - -e 's: ; make: ; \\$(MAKE):g' \ - genemake || die -} - -src_configure() { - sh genemake || die -} - -DOCS=( - "${WORKDIR}"/${P}-src/README.TXT - "${WORKDIR}"/${P}-src/doc/{changelog.txt,credits.txt} - "${WORKDIR}"/${P}-src/doc/{problemreport.txt,problemusageunix.txt,todo.txt} -) - -src_install() { - default - - if use doc ; then - docinto html - dodoc -r "${WORKDIR}"/${P}-doc_html/* - fi -} |