diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2014-02-23 02:36:07 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2014-02-23 02:36:07 +0000 |
commit | 9cadac91cda9da948d6c7610a3a4a906f2f25543 (patch) | |
tree | 0782113ad2d7ef4bc05f55b257210c6972718645 /sci-physics | |
parent | Version bump (diff) | |
download | gentoo-2-9cadac91cda9da948d6c7610a3a4a906f2f25543.tar.gz gentoo-2-9cadac91cda9da948d6c7610a3a4a906f2f25543.tar.bz2 gentoo-2-9cadac91cda9da948d6c7610a3a4a906f2f25543.zip |
Version bump
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/bullet/ChangeLog | 9 | ||||
-rw-r--r-- | sci-physics/bullet/bullet-2.82.ebuild | 64 |
2 files changed, 71 insertions, 2 deletions
diff --git a/sci-physics/bullet/ChangeLog b/sci-physics/bullet/ChangeLog index 42de37add0cc..7246518fb132 100644 --- a/sci-physics/bullet/ChangeLog +++ b/sci-physics/bullet/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-physics/bullet -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.34 2013/03/04 22:32:13 bicatali Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.35 2014/02/23 02:36:07 bicatali Exp $ + +*bullet-2.82 (23 Feb 2014) + + 23 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> +bullet-2.82.ebuild: + Version bump *bullet-2.81 (04 Mar 2013) diff --git a/sci-physics/bullet/bullet-2.82.ebuild b/sci-physics/bullet/bullet-2.82.ebuild new file mode 100644 index 000000000000..3bda98993e36 --- /dev/null +++ b/sci-physics/bullet/bullet-2.82.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.82.ebuild,v 1.1 2014/02/23 02:36:07 bicatali Exp $ + +EAPI=5 + +inherit eutils cmake-utils + +# version release, check http://code.google.com/p/bullet/downloads/list +MYP=${P}-r2704 + +DESCRIPTION="Continuous Collision Detection and Physics Library" +HOMEPAGE="http://www.bulletphysics.com/" +SRC_URI="http://bullet.googlecode.com/files/${MYP}.tgz" + +LICENSE="ZLIB" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc double-precision examples extras" + +RDEPEND=" + virtual/opengl + media-libs/freeglut" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen[dot] )" + +PATCHES=( "${FILESDIR}"/${PN}-2.78-soversion.patch ) + +S="${WORKDIR}/${MYP}" + +src_prepare() { + # allow to generate docs + sed -i -e 's/GENERATE_HTMLHELP.*//g' Doxyfile || die +} + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=ON + -DBUILD_CPU_DEMOS=OFF + -DBUILD_DEMOS=OFF + -DUSE_GRAPHICAL_BENCHMARK=OFF + -DINSTALL_LIBS=ON + -DINSTALL_EXTRA_LIBS=ON + $(cmake-utils_use_build extras EXTRAS) + $(cmake-utils_use_use double-precision DOUBLE_PRECISION) + ) + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + if use doc; then + doxygen || die + fi +} + +src_install() { + cmake-utils_src_install + use doc && dodoc *.pdf && dohtml -r html/* + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r Extras Demos + fi +} |