Gentoo Archives: gentoo-commits

From: Andrew Savchenko <bircoph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/dropwatch/
Date: Tue, 29 Sep 2015 17:45:35
Message-Id: 1443548693.8cb1e14e700df00d44484d2daafae4862b7d75c3.bircoph@gentoo
1 commit: 8cb1e14e700df00d44484d2daafae4862b7d75c3
2 Author: Andrew Savchenko <bircoph <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 29 17:44:53 2015 +0000
4 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 17:44:53 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb1e14e
7
8 dev-util/dropwatch: remove old
9
10 Package-Manager: portage-2.2.22
11 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
12
13 dev-util/dropwatch/dropwatch-1.4.ebuild | 47 ---------------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/dev-util/dropwatch/dropwatch-1.4.ebuild b/dev-util/dropwatch/dropwatch-1.4.ebuild
17 deleted file mode 100644
18 index 59e63c1..0000000
19 --- a/dev-util/dropwatch/dropwatch-1.4.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=5
27 -
28 -inherit linux-info toolchain-funcs
29 -
30 -DESCRIPTION="A utility to interface to the kernel to monitor for dropped network packets"
31 -HOMEPAGE="https://fedorahosted.org/dropwatch/"
32 -SRC_URI="https://fedorahosted.org/releases/d/r/dropwatch/${P}.tbz2"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86"
37 -
38 -RDEPEND="dev-libs/libnl:3
39 - sys-libs/readline
40 - sys-devel/binutils"
41 -DEPEND="${RDEPEND}
42 - virtual/pkgconfig"
43 -
44 -CONFIG_CHECK="~NET_DROP_MONITOR"
45 -
46 -PATCHES=(
47 - "${FILESDIR}/${P}-makefile.patch"
48 - "${FILESDIR}/${P}-binutils-2.23.patch"
49 -)
50 -
51 -src_prepare() {
52 - epatch ${PATCHES[@]}
53 - epatch_user
54 -}
55 -
56 -src_compile() {
57 - emake CC="$(tc-getCC)" -C src
58 -}
59 -
60 -src_install() {
61 - dobin "src/${PN}"
62 - doman "doc/${PN}.1"
63 - dodoc README
64 -}
65 -
66 -pkg_postinst() {
67 - einfo "Ensure that 'drop_monitor' kernel module is loaded before running ${PN}"
68 -}