diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-30 12:24:40 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-30 12:33:34 +0100 |
commit | 1f0a60bfc841630dba1f884e94d198166b237b26 (patch) | |
tree | 099ddc13a36bbd6865431cc124f18f16b9655e08 /net-analyzer | |
parent | dev-java/fop: add 2.10 - CVE-2024-28168 (diff) | |
download | gentoo-1f0a60bfc841630dba1f884e94d198166b237b26.tar.gz gentoo-1f0a60bfc841630dba1f884e94d198166b237b26.tar.bz2 gentoo-1f0a60bfc841630dba1f884e94d198166b237b26.zip |
net-analyzer/tptest: drop 3.1.7-r2
Bug: https://bugs.gentoo.org/897832
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/tptest/tptest-3.1.7-r2.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/net-analyzer/tptest/tptest-3.1.7-r2.ebuild b/net-analyzer/tptest/tptest-3.1.7-r2.ebuild deleted file mode 100644 index f6b2f45ff837..000000000000 --- a/net-analyzer/tptest/tptest-3.1.7-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PV="${PV/./_}" - -DESCRIPTION="Internet bandwidth tester" -HOMEPAGE="https://tptest.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" - -PATCHES=( - "${FILESDIR}"/${PN}-3.1.7-getstatsfromlinevuln.patch -) - -src_prepare() { - default - - sed -i apps/unix/{client,server}/Makefile \ - -e "s:^CFLAGS[[:space:]]*=:CFLAGS+=:" \ - || die - - cp -f os-dep/unix/* . || die - cp -f engine/* . || die -} - -src_compile() { - emake -C apps/unix/client \ - CC="$(tc-getCC)" \ - LDFLAGS="${LDFLAGS}" - - emake -C apps/unix/server \ - CC="$(tc-getCC)" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin apps/unix/client/tptestclient - dosbin apps/unix/server/tptestserver - - insinto /etc - doins apps/unix/server/tptest.conf -} |