From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2FBD4139BC7 for ; Tue, 29 Sep 2015 17:45:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FE8421C00E; Tue, 29 Sep 2015 17:45:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2766321C00E for ; Tue, 29 Sep 2015 17:45:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D649C340997 for ; Tue, 29 Sep 2015 17:45:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F11D226 for ; Tue, 29 Sep 2015 17:45:26 +0000 (UTC) From: "Andrew Savchenko" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Savchenko" Message-ID: <1443548693.8cb1e14e700df00d44484d2daafae4862b7d75c3.bircoph@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/dropwatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/dropwatch/dropwatch-1.4.ebuild X-VCS-Directories: dev-util/dropwatch/ X-VCS-Committer: bircoph X-VCS-Committer-Name: Andrew Savchenko X-VCS-Revision: 8cb1e14e700df00d44484d2daafae4862b7d75c3 X-VCS-Branch: master Date: Tue, 29 Sep 2015 17:45:26 +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: 3e85d144-0e91-4916-9969-1de1e8a85cae X-Archives-Hash: b3062d673db232883de8cb12b7597e1e commit: 8cb1e14e700df00d44484d2daafae4862b7d75c3 Author: Andrew Savchenko gmail com> AuthorDate: Tue Sep 29 17:44:53 2015 +0000 Commit: Andrew Savchenko gentoo org> CommitDate: Tue Sep 29 17:44:53 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb1e14e dev-util/dropwatch: remove old Package-Manager: portage-2.2.22 Signed-off-by: Andrew Savchenko gentoo.org> dev-util/dropwatch/dropwatch-1.4.ebuild | 47 --------------------------------- 1 file changed, 47 deletions(-) diff --git a/dev-util/dropwatch/dropwatch-1.4.ebuild b/dev-util/dropwatch/dropwatch-1.4.ebuild deleted file mode 100644 index 59e63c1..0000000 --- a/dev-util/dropwatch/dropwatch-1.4.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit linux-info toolchain-funcs - -DESCRIPTION="A utility to interface to the kernel to monitor for dropped network packets" -HOMEPAGE="https://fedorahosted.org/dropwatch/" -SRC_URI="https://fedorahosted.org/releases/d/r/dropwatch/${P}.tbz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-libs/libnl:3 - sys-libs/readline - sys-devel/binutils" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -CONFIG_CHECK="~NET_DROP_MONITOR" - -PATCHES=( - "${FILESDIR}/${P}-makefile.patch" - "${FILESDIR}/${P}-binutils-2.23.patch" -) - -src_prepare() { - epatch ${PATCHES[@]} - epatch_user -} - -src_compile() { - emake CC="$(tc-getCC)" -C src -} - -src_install() { - dobin "src/${PN}" - doman "doc/${PN}.1" - dodoc README -} - -pkg_postinst() { - einfo "Ensure that 'drop_monitor' kernel module is loaded before running ${PN}" -}