Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hwloc: hwloc-1.2.ebuild ChangeLog hwloc-1.1.1.ebuild hwloc-1.0.3.ebuild
Date: Tue, 02 Aug 2011 05:21:29
Message-Id: 20110802052120.20F9C2004C@flycatcher.gentoo.org
1 xarthisius 11/08/02 05:21:20
2
3 Modified: ChangeLog
4 Added: hwloc-1.2.ebuild
5 Removed: hwloc-1.1.1.ebuild hwloc-1.0.3.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.10 sys-apps/hwloc/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwloc/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 10 Jul 2011 16:23:49 -0000 1.9
25 +++ ChangeLog 2 Aug 2011 05:21:19 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-apps/hwloc
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/ChangeLog,v 1.9 2011/07/10 16:23:49 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/ChangeLog,v 1.10 2011/08/02 05:21:19 xarthisius Exp $
31 +
32 +*hwloc-1.2 (02 Aug 2011)
33 +
34 + 02 Aug 2011; Kacper Kowalik <xarthisius@g.o> -hwloc-1.0.3.ebuild,
35 + -hwloc-1.1.1.ebuild, +hwloc-1.2.ebuild:
36 + Version bump, drop old
37
38 10 Jul 2011; Alexis Ballier <aballier@g.o> hwloc-1.1.1-r1.ebuild:
39 keyword ~x86-fbsd, bug #372885
40
41
42
43 1.1 sys-apps/hwloc/hwloc-1.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/hwloc-1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwloc/hwloc-1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hwloc-1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.2.ebuild,v 1.1 2011/08/02 05:21:19 xarthisius Exp $
53
54 EAPI="4"
55
56 inherit multilib versionator
57
58 MY_PV=v$(get_version_component_range 1-2)
59
60 DESCRIPTION="displays the hardware topology in convenient formats"
61 HOMEPAGE="http://www.open-mpi.org/projects/hwloc/"
62 SRC_URI="http://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2"
63
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux"
65 IUSE="cairo svg static-libs xml X"
66 SLOT="0"
67 LICENSE="BSD"
68
69 RDEPEND="sys-libs/ncurses
70 cairo? ( x11-libs/cairo[X?,svg?] )
71 xml? ( dev-libs/libxml2 )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig"
74
75 src_configure() {
76 econf \
77 --docdir="${EPREFIX}/usr/share/doc/${P}" \
78 $(use_enable cairo) \
79 $(use_enable static-libs static) \
80 $(use_enable xml) \
81 $(use_with X x) \
82 --disable-silent-rules
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install
87 dodoc AUTHORS NEWS README VERSION
88 use static-libs || rm /usr/$(get_libdir)/lib${PN}.la
89 }