Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/boehm-gc: ChangeLog boehm-gc-7.2d.ebuild
Date: Mon, 01 Oct 2012 09:25:26
Message-Id: 20121001092514.EAB1121600@flycatcher.gentoo.org
1 radhermit 12/10/01 09:25:14
2
3 Modified: ChangeLog
4 Added: boehm-gc-7.2d.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.82 dev-libs/boehm-gc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boehm-gc/ChangeLog?rev=1.82&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boehm-gc/ChangeLog?rev=1.82&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boehm-gc/ChangeLog?r1=1.81&r2=1.82
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/boehm-gc/ChangeLog,v
20 retrieving revision 1.81
21 retrieving revision 1.82
22 diff -u -r1.81 -r1.82
23 --- ChangeLog 11 Jun 2012 16:01:14 -0000 1.81
24 +++ ChangeLog 1 Oct 2012 09:25:14 -0000 1.82
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/boehm-gc
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boehm-gc/ChangeLog,v 1.81 2012/06/11 16:01:14 darkside Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boehm-gc/ChangeLog,v 1.82 2012/10/01 09:25:14 radhermit Exp $
30 +
31 +*boehm-gc-7.2d (01 Oct 2012)
32 +
33 + 01 Oct 2012; Tim Harder <radhermit@g.o> +boehm-gc-7.2d.ebuild:
34 + Version bump.
35
36 11 Jun 2012; Jeremy Olexa <darkside@g.o> boehm-gc-7.2_alpha6.ebuild:
37 add prefix keywords, as tested in overlay
38
39
40
41 1.1 dev-libs/boehm-gc/boehm-gc-7.2d.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boehm-gc/boehm-gc-7.2d.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boehm-gc/boehm-gc-7.2d.ebuild?rev=1.1&content-type=text/plain
45
46 Index: boehm-gc-7.2d.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/boehm-gc/boehm-gc-7.2d.ebuild,v 1.1 2012/10/01 09:25:14 radhermit Exp $
51
52 EAPI=4
53
54 AUTOTOOLS_AUTORECONF=yes
55
56 inherit autotools-utils
57
58 MY_P="gc-${PV/_/}"
59
60 DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector"
61 HOMEPAGE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
62 SRC_URI="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/${MY_P}.tar.gz"
63
64 LICENSE="as-is"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
67 IUSE="cxx static-libs threads"
68
69 RDEPEND=">=dev-libs/libatomic_ops-7.2"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig"
72
73 S="${WORKDIR}/${MY_P/d}"
74
75 DOCS=( README.QUICK doc/README{,.environment,.linux,.macros} doc/barrett_diagram )
76
77 src_prepare() {
78 sed '/Cflags/s:$:/gc:g' -i bdw-gc.pc.in || die
79 sed \
80 -e '/gc_allocator.h/d' \
81 -i Makefile.am || die
82 rm -rf libatomic_ops || die
83 autotools-utils_src_prepare
84 }
85
86 src_configure() {
87 local myeconfargs=(
88 --with-libatomic-ops=yes
89 $(use_enable cxx cplusplus)
90 $(use threads || echo --disable-threads)
91 )
92 autotools-utils_src_configure
93 }
94
95 src_install() {
96 autotools-utils_src_install
97
98 rm -rf "${ED}"/usr/share/gc || die
99
100 # dist_noinst_HEADERS
101 insinto /usr/include/gc
102 doins include/{cord.h,ec.h,javaxfc.h}
103 insinto /usr/include/gc/private
104 doins include/private/*.h
105
106 dohtml doc/*.html
107 newman doc/gc.man GC_malloc.1
108 }