Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hwloc: ChangeLog hwloc-1.1.1-r1.ebuild
Date: Sat, 02 Jul 2011 16:26:49
Message-Id: 20110702162637.436C52004B@flycatcher.gentoo.org
1 alexxy 11/07/02 16:26:37
2
3 Modified: ChangeLog
4 Added: hwloc-1.1.1-r1.ebuild
5 Log:
6 [sys-apps/hwloc] Enable prefix support for ~amd64-linux =D
7
8 (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 sys-apps/hwloc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwloc/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 26 Jan 2011 19:43:12 -0000 1.7
24 +++ ChangeLog 2 Jul 2011 16:26:37 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/hwloc
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/ChangeLog,v 1.7 2011/01/26 19:43:12 jsbronder Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/ChangeLog,v 1.8 2011/07/02 16:26:37 alexxy Exp $
30 +
31 +*hwloc-1.1.1-r1 (02 Jul 2011)
32 +
33 + 02 Jul 2011; Alexey Shvetsov <alexxy@g.o> +hwloc-1.1.1-r1.ebuild:
34 + Enable prefix support for ~amd64-linux =D
35
36 *hwloc-1.1.1 (26 Jan 2011)
37
38
39
40
41 1.1 sys-apps/hwloc/hwloc-1.1.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/hwloc-1.1.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/hwloc-1.1.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hwloc-1.1.1-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.1.1-r1.ebuild,v 1.1 2011/07/02 16:26:37 alexxy Exp $
51
52 EAPI="4"
53
54 DESCRIPTION="displays the hardware topology in convenient formats"
55 HOMEPAGE="http://www.open-mpi.org/projects/hwloc/"
56 SRC_URI="http://www.open-mpi.org/software/hwloc/v1.1/downloads/${P}.tar.bz2"
57
58 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
59 IUSE="cairo svg static-libs xml X"
60 SLOT="0"
61 LICENSE="BSD"
62
63 RDEPEND="sys-libs/ncurses
64 cairo? ( x11-libs/cairo[X?,svg?] )
65 xml? ( dev-libs/libxml2 )"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig"
68
69 src_configure() {
70 econf \
71 --docdir="${EPREFIX}/usr/share/doc/${P}" \
72 $(use_enable cairo) \
73 $(use_enable static-libs static) \
74 $(use_enable xml) \
75 $(use_with X x) \
76 --disable-silent-rules
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die
81 dodoc AUTHORS NEWS README VERSION || die
82 }
83
84 src_test() {
85 # autotools-utils broke tests, the first of which being
86 # PASS: 256ppc-8n8s4t-nosys.output
87 emake check || die
88 }