Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/netwatch: netwatch-1.3.0.1-r2.ebuild ChangeLog netwatch-1.3.0.1-r1.ebuild netwatch-1.3.0.1.ebuild
Date: Mon, 23 Dec 2013 01:59:56
Message-Id: 20131223015952.F314E2004C@flycatcher.gentoo.org
1 jer 13/12/23 01:59:52
2
3 Modified: ChangeLog
4 Added: netwatch-1.3.0.1-r2.ebuild
5 Removed: netwatch-1.3.0.1-r1.ebuild netwatch-1.3.0.1.ebuild
6 Log:
7 Add support for sys-libs/ncurses[tinfo]. Add a patch to stop netwatch from calling home (bug #495056 by bugtrack@×××.de). Rename and clean up patches.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.16 net-analyzer/netwatch/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netwatch/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netwatch/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netwatch/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netwatch/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 23 Dec 2013 01:22:54 -0000 1.15
25 +++ ChangeLog 23 Dec 2013 01:59:52 -0000 1.16
26 @@ -1,6 +1,17 @@
27 # ChangeLog for net-analyzer/netwatch
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwatch/ChangeLog,v 1.15 2013/12/23 01:22:54 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwatch/ChangeLog,v 1.16 2013/12/23 01:59:52 jer Exp $
31 +
32 +*netwatch-1.3.0.1-r2 (23 Dec 2013)
33 +
34 + 23 Dec 2013; Jeroen Roovers <jer@g.o> -netwatch-1.3.0.1.ebuild,
35 + -netwatch-1.3.0.1-r1.ebuild, +netwatch-1.3.0.1-r2.ebuild,
36 + +files/netwatch-1.3.0.1-append_ldflags.patch,
37 + +files/netwatch-1.3.0.1-do-not-call.patch,
38 + +files/netwatch-1.3.0.1-open.patch, +files/netwatch-1.3.0.1-tinfo.patch,
39 + -files/append_ldflags.patch, -files/netwatch.c.patch:
40 + Add support for sys-libs/ncurses[tinfo]. Add a patch to stop netwatch from
41 + calling home (bug #495056 by bugtrack@×××.de). Rename and clean up patches.
42
43 23 Dec 2013; Jeroen Roovers <jer@g.o> metadata.xml:
44 Remove empty tag.
45
46
47
48 1.1 net-analyzer/netwatch/netwatch-1.3.0.1-r2.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netwatch/netwatch-1.3.0.1-r2.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netwatch/netwatch-1.3.0.1-r2.ebuild?rev=1.1&content-type=text/plain
52
53 Index: netwatch-1.3.0.1-r2.ebuild
54 ===================================================================
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwatch/netwatch-1.3.0.1-r2.ebuild,v 1.1 2013/12/23 01:59:52 jer Exp $
58
59 EAPI=5
60
61 inherit autotools eutils versionator
62
63 MY_PV=$(replace_version_separator 3 '-')
64
65 DESCRIPTION="Ethernet/PPP IP Packet Monitor"
66 HOMEPAGE="http://www.slctech.org/~mackay/netwatch.html"
67 SRC_URI="http://www.slctech.org/~mackay/NETWATCH/${PN}-${MY_PV}.tgz"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="amd64 ~x86"
72 IUSE="doc"
73
74 RDEPEND="sys-libs/ncurses"
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig
77 sys-kernel/linux-headers"
78
79 S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
80
81 src_prepare() {
82 epatch \
83 "${FILESDIR}"/${P}-append_ldflags.patch \
84 "${FILESDIR}"/${P}-open.patch \
85 "${FILESDIR}"/${P}-fix-fortify.patch \
86 "${FILESDIR}"/${P}-do-not-call.patch \
87 "${FILESDIR}"/${P}-tinfo.patch
88
89 eautoreconf
90 }
91
92 src_install() {
93 dosbin netresolv netwatch || die "dosbin failed"
94
95 doman netwatch.1 || die "doman failed"
96 dodoc BUGS CHANGES README* TODO || die "dodoc failed"
97
98 if use doc; then
99 dohtml NetwatchKeyCommands.html || die "dohtml failed"
100 fi
101 }