Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/numactl: ChangeLog numactl-2.0.2.ebuild
Date: Mon, 29 Sep 2008 23:40:16
Message-Id: E1KkSLd-0004Nh-0n@stork.gentoo.org
1 vapier 08/09/29 23:40:13
2
3 Modified: ChangeLog
4 Added: numactl-2.0.2.ebuild
5 Log:
6 Version bump and fix man-page collision #238805 by Joost Ruis.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
8
9 Revision Changes Path
10 1.8 sys-process/numactl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/numactl/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/numactl/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/numactl/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-process/numactl/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 14 Jan 2008 02:21:08 -0000 1.7
23 +++ ChangeLog 29 Sep 2008 23:40:12 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-process/numactl
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-process/numactl/ChangeLog,v 1.7 2008/01/14 02:21:08 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-process/numactl/ChangeLog,v 1.8 2008/09/29 23:40:12 vapier Exp $
29 +
30 +*numactl-2.0.2 (29 Sep 2008)
31 +
32 + 29 Sep 2008; Mike Frysinger <vapier@g.o> +numactl-2.0.2.ebuild:
33 + Version bump and fix man-page collision #238805 by Joost Ruis.
34
35 14 Jan 2008; Robin H. Johnson <robbat2@g.o> -numactl-0.9.8.ebuild,
36 -numactl-0.9.9.ebuild, -numactl-0.9.10.ebuild, numactl-0.9.11.ebuild:
37
38
39
40 1.1 sys-process/numactl/numactl-2.0.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/numactl/numactl-2.0.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/numactl/numactl-2.0.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: numactl-2.0.2.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-process/numactl/numactl-2.0.2.ebuild,v 1.1 2008/09/29 23:40:12 vapier Exp $
50
51 inherit base eutils toolchain-funcs
52
53 DESCRIPTION="Utilities and libraries for NUMA systems."
54 HOMEPAGE="http://oss.sgi.com/projects/libnuma/"
55 SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE="perl"
61
62 RDEPEND="perl? ( dev-lang/perl )"
63
64 src_compile() {
65 emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" BENCH_CFLAGS="" || die
66 }
67
68 src_install() {
69 emake install prefix="${D}/usr" || die
70 # delete man pages provided by the man-pages package #238805
71 rm -rf "${D}"/usr/share/man/man[25]
72 doman *.8 || die # makefile doesnt get them all
73 dodoc README TODO CHANGES DESIGN
74 if ! use perl ; then
75 rm "${D}"/usr/bin/numastat "${D}"/usr/share/man/man8/numastat.8 || die
76 fi
77 }
78
79 src_test() {
80 einfo "The only generically safe test is regress2."
81 einfo "The other test cases require 2 NUMA nodes."
82 cd test
83 ./regress2 || die "regress2 failed!"
84 }