Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libbulletml: libbulletml-0.0.6.ebuild ChangeLog
Date: Wed, 30 Apr 2008 23:16:46
Message-Id: E1JrLXX-0004AW-L2@stork.gentoo.org
1 nyhm 08/04/30 23:16:43
2
3 Modified: libbulletml-0.0.6.ebuild ChangeLog
4 Log:
5 Fix building with gcc-4.3
6 (Portage version: 2.1.5_rc6)
7
8 Revision Changes Path
9 1.6 dev-libs/libbulletml/libbulletml-0.0.6.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/libbulletml-0.0.6.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/libbulletml-0.0.6.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/libbulletml-0.0.6.ebuild?r1=1.5&r2=1.6
14
15 Index: libbulletml-0.0.6.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libbulletml/libbulletml-0.0.6.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- libbulletml-0.0.6.ebuild 11 Aug 2005 12:01:55 -0000 1.5
22 +++ libbulletml-0.0.6.ebuild 30 Apr 2008 23:16:43 -0000 1.6
23 @@ -1,6 +1,8 @@
24 -# Copyright 1999-2005 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbulletml/libbulletml-0.0.6.ebuild,v 1.5 2005/08/11 12:01:55 r3pek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbulletml/libbulletml-0.0.6.ebuild,v 1.6 2008/04/30 23:16:43 nyhm Exp $
29 +
30 +inherit eutils
31
32 DESCRIPTION="A Library of Bullet Markup Language"
33 HOMEPAGE="http://user.ecc.u-tokyo.ac.jp/~s31552/wp/libbulletml/index_en.html"
34 @@ -13,21 +15,27 @@
35
36 S="${WORKDIR}/${PN#lib}/src"
37
38 +src_unpack() {
39 + unpack ${A}
40 + cd "${S}"
41 + epatch "${FILESDIR}"/${P}-gcc43.patch
42 +}
43 +
44 src_compile() {
45 emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "emake failed"
46 }
47
48 src_install() {
49 - dolib.a libbulletml.a
50 + dolib.a libbulletml.a || die "dolib.a failed"
51
52 insinto /usr/include/bulletml
53 - doins *.h
54 + doins *.h || die "doins .h failed"
55
56 insinto /usr/include/bulletml/tinyxml
57 - doins tinyxml/tinyxml.h
58 + doins tinyxml/tinyxml.h || die "doins tinyxml.h failed"
59
60 insinto /usr/include/bulletml/ygg
61 - doins ygg/ygg.h
62 + doins ygg/ygg.h || die "doins ygg.h failed"
63
64 dodoc ../README*
65 }
66
67
68
69 1.7 dev-libs/libbulletml/ChangeLog
70
71 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/ChangeLog?rev=1.7&view=markup
72 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/ChangeLog?rev=1.7&content-type=text/plain
73 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/ChangeLog?r1=1.6&r2=1.7
74
75 Index: ChangeLog
76 ===================================================================
77 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libbulletml/ChangeLog,v
78 retrieving revision 1.6
79 retrieving revision 1.7
80 diff -u -r1.6 -r1.7
81 --- ChangeLog 9 Feb 2007 07:29:49 -0000 1.6
82 +++ ChangeLog 30 Apr 2008 23:16:43 -0000 1.7
83 @@ -1,6 +1,10 @@
84 # ChangeLog for dev-libs/libbulletml
85 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
86 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbulletml/ChangeLog,v 1.6 2007/02/09 07:29:49 flameeyes Exp $
87 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
88 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbulletml/ChangeLog,v 1.7 2008/04/30 23:16:43 nyhm Exp $
89 +
90 + 30 Apr 2008; Tristan Heaven <nyhm@g.o>
91 + +files/libbulletml-0.0.6-gcc43.patch, libbulletml-0.0.6.ebuild:
92 + Fix building with gcc-4.3
93
94 09 Feb 2007; Diego Pettenò <flameeyes@g.o> ChangeLog:
95 Regenerate digest in Manifest2 format.
96
97
98
99 --
100 gentoo-commits@l.g.o mailing list