Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/sinfo: sinfo-0.0.43.ebuild ChangeLog
Date: Sun, 27 Nov 2011 16:09:41
Message-Id: 20111127155142.315A120063@flycatcher.gentoo.org
1 radhermit 11/11/27 15:51:42
2
3 Modified: sinfo-0.0.43.ebuild ChangeLog
4 Log:
5 Fix usage of autotool-utils (bug #392157).
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 net-analyzer/sinfo/sinfo-0.0.43.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.43.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.43.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.43.ebuild?r1=1.1&r2=1.2
15
16 Index: sinfo-0.0.43.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.43.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- sinfo-0.0.43.ebuild 26 Nov 2011 11:18:39 -0000 1.1
23 +++ sinfo-0.0.43.ebuild 27 Nov 2011 15:51:42 -0000 1.2
24 @@ -1,10 +1,10 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.43.ebuild,v 1.1 2011/11/26 11:18:39 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/sinfo-0.0.43.ebuild,v 1.2 2011/11/27 15:51:42 radhermit Exp $
29
30 EAPI=4
31
32 -inherit eutils autotools-utils
33 +inherit autotools-utils
34
35 DESCRIPTION="A monitoring tool for networked computers"
36 HOMEPAGE="http://www.ant.uni-bremen.de/whomes/rinas/sinfo/"
37 @@ -20,23 +20,29 @@
38 DEPEND="${RDEPEND}
39 dev-cpp/asio"
40
41 -AUTOTOOLS_IN_SOURCE_BUILD=1
42 +#AUTOTOOLS_IN_SOURCE_BUILD=1
43 +DOCS=( AUTHORS ChangeLog README )
44 +
45 +PATCHES=(
46 + "${FILESDIR}"/${P}-librpc-linking.patch
47 + "${FILESDIR}"/${P}-ncurses-m4.patch
48 +)
49
50 src_prepare() {
51 - epatch "${FILESDIR}"/${P}-librpc-linking.patch
52 - epatch "${FILESDIR}"/${P}-ncurses-m4.patch
53 + autotools-utils_src_prepare
54 eautoreconf
55 }
56
57 src_configure() {
58 - econf \
59 - --with-ncurses \
60 + local myeconfargs=(
61 + --with-ncurses
62 $(use_enable static-libs static)
63 + )
64 + autotools-utils_src_configure
65 }
66
67 src_install() {
68 - default
69 - remove_libtool_files
70 + autotools-utils_src_install
71
72 newconfd "${FILESDIR}"/${PN}.confd ${PN}
73 newinitd "${FILESDIR}"/${PN}.initd ${PN}
74
75
76
77 1.2 net-analyzer/sinfo/ChangeLog
78
79 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sinfo/ChangeLog?rev=1.2&view=markup
80 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sinfo/ChangeLog?rev=1.2&content-type=text/plain
81 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sinfo/ChangeLog?r1=1.1&r2=1.2
82
83 Index: ChangeLog
84 ===================================================================
85 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/ChangeLog,v
86 retrieving revision 1.1
87 retrieving revision 1.2
88 diff -u -r1.1 -r1.2
89 --- ChangeLog 26 Nov 2011 11:18:39 -0000 1.1
90 +++ ChangeLog 27 Nov 2011 15:51:42 -0000 1.2
91 @@ -1,6 +1,9 @@
92 # ChangeLog for net-analyzer/sinfo
93 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
94 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/ChangeLog,v 1.1 2011/11/26 11:18:39 radhermit Exp $
95 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sinfo/ChangeLog,v 1.2 2011/11/27 15:51:42 radhermit Exp $
96 +
97 + 27 Nov 2011; Tim Harder <radhermit@g.o> sinfo-0.0.43.ebuild:
98 + Fix usage of autotool-utils (bug #392157).
99
100 *sinfo-0.0.43 (26 Nov 2011)