Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-physics/bullet: metadata.xml ChangeLog bullet-2.77.ebuild
Date: Sat, 06 Nov 2010 04:13:50
Message-Id: 20101106041345.7151720051@flycatcher.gentoo.org
1 bicatali 10/11/06 04:13:45
2
3 Modified: metadata.xml ChangeLog
4 Added: bullet-2.77.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 sci-physics/bullet/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/metadata.xml?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/metadata.xml?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/metadata.xml?r1=1.1&r2=1.2
16
17 Index: metadata.xml
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-physics/bullet/metadata.xml,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- metadata.xml 11 Mar 2008 19:10:20 -0000 1.1
24 +++ metadata.xml 6 Nov 2010 04:13:45 -0000 1.2
25 @@ -7,4 +7,7 @@
26 3D Collision Detection and Rigid Body Dynamics Library
27 for games and animation.
28 </longdescription>
29 +<use>
30 + <flag name='extras'>Build additional libraries</flag>
31 +</use>
32 </pkgmetadata>
33
34
35
36 1.18 sci-physics/bullet/ChangeLog
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/ChangeLog?rev=1.18&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/ChangeLog?rev=1.18&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/ChangeLog?r1=1.17&r2=1.18
41
42 Index: ChangeLog
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v
45 retrieving revision 1.17
46 retrieving revision 1.18
47 diff -u -r1.17 -r1.18
48 --- ChangeLog 16 Sep 2010 17:31:03 -0000 1.17
49 +++ ChangeLog 6 Nov 2010 04:13:45 -0000 1.18
50 @@ -1,6 +1,13 @@
51 # ChangeLog for sci-physics/bullet
52 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
53 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.17 2010/09/16 17:31:03 scarabeus Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.18 2010/11/06 04:13:45 bicatali Exp $
55 +
56 +*bullet-2.77 (06 Nov 2010)
57 +
58 + 06 Nov 2010; Sébastien Fabbro <bicatali@g.o> +bullet-2.77.ebuild,
59 + +files/bullet-2.77-libdir.patch, +files/bullet-2.77-soversion.patch,
60 + metadata.xml:
61 + Version bump
62
63 16 Sep 2010; Tomáš Chvátal <scarabeus@g.o>
64 bullet-2.76-r1.ebuild:
65
66
67
68 1.1 sci-physics/bullet/bullet-2.77.ebuild
69
70 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/bullet-2.77.ebuild?rev=1.1&view=markup
71 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/bullet-2.77.ebuild?rev=1.1&content-type=text/plain
72
73 Index: bullet-2.77.ebuild
74 ===================================================================
75 # Copyright 1999-2010 Gentoo Foundation
76 # Distributed under the terms of the GNU General Public License v2
77 # $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.77.ebuild,v 1.1 2010/11/06 04:13:45 bicatali Exp $
78
79 EAPI=2
80 inherit eutils cmake-utils
81
82 DESCRIPTION="Continuous Collision Detection and Physics Library"
83 HOMEPAGE="http://www.bulletphysics.com/"
84 SRC_URI="http://bullet.googlecode.com/files/${P}.tgz"
85
86 LICENSE="ZLIB"
87 SLOT="0"
88 KEYWORDS="~amd64 ~x86"
89 IUSE="doc examples extras"
90
91 RDEPEND="virtual/opengl
92 media-libs/freeglut"
93 DEPEND="${RDEPEND}"
94 PATCHES=( "${FILESDIR}/${P}"-{libdir,soversion}.patch )
95
96 src_configure() {
97 mycmakeargs=(
98 -DBUILD_SHARED_LIBS=ON
99 -DBUILD_DEMOS=OFF
100 -DINSTALL_LIBS=ON
101 -DINSTALL_EXTRA_LIBS=ON
102 $(cmake-utils_use_build extras EXTRAS)
103 )
104 cmake-utils_src_configure
105 }
106
107 src_install() {
108 cmake-utils_src_install
109 dodoc README ChangeLog AUTHORS
110 if use doc; then
111 insinto /usr/share/doc/${PF}
112 doins *.pdf || die
113 fi
114 if use examples; then
115 insinto /usr/share/doc/${PF}/examples
116 doins -r Extras Demos || die
117 fi
118 }