Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/arpon: arpon-2.7-r1.ebuild ChangeLog
Date: Thu, 22 Mar 2012 21:03:58
Message-Id: 20120322210344.698462004C@flycatcher.gentoo.org
1 hwoarang 12/03/22 21:03:44
2
3 Modified: ChangeLog
4 Added: arpon-2.7-r1.ebuild
5 Log:
6 revbump to add init script. Thanks to Tobias Wallura <Tobias.Wallura@×××××.com>. Bug #387193
7
8 (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 net-analyzer/arpon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/arpon/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/arpon/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/arpon/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arpon/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 4 Oct 2011 17:19:13 -0000 1.9
24 +++ ChangeLog 22 Mar 2012 21:03:44 -0000 1.10
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-analyzer/arpon
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpon/ChangeLog,v 1.9 2011/10/04 17:19:13 nativemad Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpon/ChangeLog,v 1.10 2012/03/22 21:03:44 hwoarang Exp $
31 +
32 +*arpon-2.7-r1 (22 Mar 2012)
33 +
34 + 22 Mar 2012; Markos Chandras <hwoarang@g.o> +arpon-2.7-r1.ebuild,
35 + +files/arpon.confd, +files/arpon.initd:
36 + revbump to add init script. Thanks to Tobias Wallura
37 + <Tobias.Wallura@×××××.com>. Bug #387193
38
39 04 Oct 2011; Andreas Schuerch <nativemad@g.o> arpon-2.7.ebuild:
40 x86 stable, bug 384913
41
42
43
44 1.1 net-analyzer/arpon/arpon-2.7-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/arpon/arpon-2.7-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/arpon/arpon-2.7-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: arpon-2.7-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpon/arpon-2.7-r1.ebuild,v 1.1 2012/03/22 21:03:44 hwoarang Exp $
54
55 EAPI="2"
56 inherit cmake-utils
57
58 DESCRIPTION="ArpON (Arp handler inspectiON) is a portable Arp handler."
59
60 MY_PN="ArpON"
61 MY_P="${MY_PN}-${PV}"
62 HOMEPAGE="http://arpon.sourceforge.net/"
63 SRC_URI="mirror://sourceforge/arpon/${MY_P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND="dev-libs/libdnet
71 net-libs/libnet:1.1
72 net-libs/libpcap"
73
74 RDEPEND=${DEPEND}
75
76 S="${WORKDIR}"/${MY_P}
77
78 src_prepare() {
79 sed -i -e "/set(CMAKE_C_FLAGS/d" CMakeLists.txt || die
80 }
81
82 src_install() {
83 cmake-utils_src_install
84 newinitd "${FILESDIR}"/${PN}.initd ${PM}
85 newconfd "${FILESDIR}"/${PN}.confd ${PN}
86 }
87
88 pkg_postinst() {
89 elog
90 elog "${PN} now installs an init script. Please edit"
91 elog "the /etc/conf.d/arpon file to match your needs"
92 elog
93 }