From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0021D1396D9 for ; Sat, 11 Nov 2017 00:44:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAC22E0FCD; Sat, 11 Nov 2017 00:44:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5476E0FCD for ; Sat, 11 Nov 2017 00:44:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C8DC33BF01 for ; Sat, 11 Nov 2017 00:44:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B70EE9899 for ; Sat, 11 Nov 2017 00:44:11 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1510361049.0b82fc53a1bcfb1041f9e1a0eb8654215f7e2fc6.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/hping/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/hping/hping-3_pre20051105-r3.ebuild X-VCS-Directories: net-analyzer/hping/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 0b82fc53a1bcfb1041f9e1a0eb8654215f7e2fc6 X-VCS-Branch: master Date: Sat, 11 Nov 2017 00:44:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: feb3ded7-2748-42c9-841f-653d0f3bbb9d X-Archives-Hash: 107b129ab19a12d26094bc1e10581e84 commit: 0b82fc53a1bcfb1041f9e1a0eb8654215f7e2fc6 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Nov 11 00:18:47 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Nov 11 00:44:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b82fc53 net-analyzer/hping: Old. Package-Manager: Portage-2.3.13, Repoman-2.3.4 net-analyzer/hping/hping-3_pre20051105-r3.ebuild | 74 ------------------------ 1 file changed, 74 deletions(-) diff --git a/net-analyzer/hping/hping-3_pre20051105-r3.ebuild b/net-analyzer/hping/hping-3_pre20051105-r3.ebuild deleted file mode 100644 index 38dfcc336db..00000000000 --- a/net-analyzer/hping/hping-3_pre20051105-r3.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils multilib toolchain-funcs - -MY_P="${PN}${PV//_pre/-}" -DESCRIPTION="A ping-like TCP/IP packet assembler/analyzer" -HOMEPAGE="http://www.hping.org" -SRC_URI="http://www.hping.org/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc sparc x86" -IUSE="tcl" - -S="${WORKDIR}/${MY_P}" - -DEPEND="net-libs/libpcap - tcl? ( dev-lang/tcl:0 )" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}.patch \ - "${FILESDIR}"/bytesex.h.patch \ - "${FILESDIR}"/${P}-tcl.patch \ - "${FILESDIR}"/${P}-ldflags.patch \ - "${FILESDIR}"/${P}-libtcl.patch \ - "${FILESDIR}"/${P}-scan-overflow.patch - - # Correct hard coded values - sed -i Makefile.in \ - -e '/^CC=/d' \ - -e '/^AR=/d' \ - -e '/^RANLIB=/d' \ - -e 's:/usr/local/lib:/usr/$(LIBDIR):g' \ - -e 's:-O2:$(CFLAGS):' \ - || die "sed Makefile.in failed" - - # Change name from hping2 to hping3 - sed -i docs/hping3.8 \ - -e 's|HPING2|HPING|g' \ - -e 's|hping2|hping|g' \ - || die "sed hping3.8 failed" -} - -src_configure() { - tc-export CC - - # Not an autotools type configure: - sh configure $(use tcl || echo --no-tcl) || die "configure failed" -} - -src_compile() { - emake \ - DEBUG="" \ - "CFLAGS=${CFLAGS}" \ - "AR=$(tc-getAR)" \ - "RANLIB=$(tc-getRANLIB)" \ - "LIBDIR=$(get_libdir)" \ - || die "emake failed" -} - -src_install () { - dosbin hping3 - dosym /usr/sbin/hping3 /usr/sbin/hping - dosym /usr/sbin/hping3 /usr/sbin/hping2 - - newman docs/hping3.8 hping.8 - - dodoc INSTALL NEWS README TODO AUTHORS BUGS CHANGES -}