diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-05-22 17:28:09 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-05-22 17:28:09 +0000 |
commit | bf06b85c2bb75da12de91e2e573b7f9e475d7ebd (patch) | |
tree | cda836cebe8ff5ede1fbcb30aad7477cda1ec574 /sci-physics/bullet | |
parent | Version bump, remove old wrt bug #417121. (diff) | |
download | gentoo-2-bf06b85c2bb75da12de91e2e573b7f9e475d7ebd.tar.gz gentoo-2-bf06b85c2bb75da12de91e2e573b7f9e475d7ebd.tar.bz2 gentoo-2-bf06b85c2bb75da12de91e2e573b7f9e475d7ebd.zip |
Version bump
(Portage version: 2.1.10.60/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics/bullet')
-rw-r--r-- | sci-physics/bullet/ChangeLog | 8 | ||||
-rw-r--r-- | sci-physics/bullet/bullet-2.80.ebuild (renamed from sci-physics/bullet/bullet-2.78.ebuild) | 30 |
2 files changed, 21 insertions, 17 deletions
diff --git a/sci-physics/bullet/ChangeLog b/sci-physics/bullet/ChangeLog index b8114b26f7ea..d9c1cca7220f 100644 --- a/sci-physics/bullet/ChangeLog +++ b/sci-physics/bullet/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-physics/bullet # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.26 2012/02/27 02:02:56 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.27 2012/05/22 17:28:09 bicatali Exp $ + +*bullet-2.80 (22 May 2012) + + 22 May 2012; Sébastien Fabbro <bicatali@gentoo.org> -bullet-2.78.ebuild, + +bullet-2.80.ebuild: + Version bump 27 Feb 2012; Sébastien Fabbro <bicatali@gentoo.org> bullet-2.79-r1.ebuild: Add dependence on media-libs/freeglut, thanks Julian Bayardo bug #403433 diff --git a/sci-physics/bullet/bullet-2.78.ebuild b/sci-physics/bullet/bullet-2.80.ebuild index cd71358e69cd..9f22f9f12dc3 100644 --- a/sci-physics/bullet/bullet-2.78.ebuild +++ b/sci-physics/bullet/bullet-2.80.ebuild @@ -1,28 +1,30 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.78.ebuild,v 1.2 2011/11/28 22:25:42 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.80.ebuild,v 1.1 2012/05/22 17:28:09 bicatali Exp $ -EAPI=2 +EAPI=4 inherit eutils cmake-utils +# version release, check http://code.google.com/p/bullet/downloads/list +MYP=${P}-rev2531 + DESCRIPTION="Continuous Collision Detection and Physics Library" HOMEPAGE="http://www.bulletphysics.com/" -SRC_URI="http://bullet.googlecode.com/files/${P}-r2387.tgz" +SRC_URI="http://bullet.googlecode.com/files/${MYP}.tgz" LICENSE="ZLIB" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux" IUSE="doc double-precision examples extras" -RDEPEND=" - media-libs/freeglut - virtual/opengl" +RDEPEND="virtual/opengl + media-libs/freeglut" DEPEND="${RDEPEND}" -PATCHES=( - "${FILESDIR}/${P}"-soversion.patch - ) +PATCHES=( "${FILESDIR}"/${PN}-2.78-soversion.patch ) + +S="${WORKDIR}/${MYP}" src_configure() { mycmakeargs=( @@ -40,13 +42,9 @@ src_configure() { src_install() { cmake-utils_src_install - dodoc README ChangeLog AUTHORS - if use doc; then - insinto /usr/share/doc/${PF} - doins *.pdf || die - fi + use doc && dodoc *.pdf if use examples; then insinto /usr/share/doc/${PF}/examples - doins -r Extras Demos || die + doins -r Extras Demos fi } |