diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-11-26 18:00:33 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-11-26 18:04:05 -0500 |
commit | 3c8c77bec8a44ff04b7f8ff4c1e45ee0a0429727 (patch) | |
tree | 38ab1c05d70fb1354b2196ed8b867c27b31fa18c /net-analyzer/tracebox/tracebox-0.2.ebuild | |
parent | net-analyzer/symon: drop old EAPI (diff) | |
download | gentoo-3c8c77bec8a44ff04b7f8ff4c1e45ee0a0429727.tar.gz gentoo-3c8c77bec8a44ff04b7f8ff4c1e45ee0a0429727.tar.bz2 gentoo-3c8c77bec8a44ff04b7f8ff4c1e45ee0a0429727.zip |
net-analyzer/tracebox: drop old EAPI
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-analyzer/tracebox/tracebox-0.2.ebuild')
-rw-r--r-- | net-analyzer/tracebox/tracebox-0.2.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/net-analyzer/tracebox/tracebox-0.2.ebuild b/net-analyzer/tracebox/tracebox-0.2.ebuild deleted file mode 100644 index 6713366d9482..000000000000 --- a/net-analyzer/tracebox/tracebox-0.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils - -DESCRIPTION="A Middlebox Detection Tool" -HOMEPAGE="http://www.tracebox.org/" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - dev-lang/lua - net-libs/libcrafter - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -RESTRICT="test" - -src_prepare() { - epatch "${FILESDIR}"/${P}-deps.patch - - sed -i -e '/SUBDIRS/s|noinst||g' Makefile.am || die - sed -i -e '/DIST_SUBDIRS.*libcrafter/d' noinst/Makefile.am || die - - sed -i \ - -e '/[[:graph:]]*libcrafter[[:graph:]]*/d' \ - -e '/dist_bin_SCRIPTS/d' \ - src/${PN}/Makefile.am \ - || die - - sed -i \ - -e 's|"crafter.h"|<crafter.h>|g' \ - src/${PN}/PacketModification.h \ - src/${PN}/PartialHeader.h \ - src/${PN}/script.h \ - src/${PN}/${PN}.h \ - || die - - rm README.md || die - - eautoreconf -} |