jauhien     15/07/07 20:45:49

  Modified:             metadata.xml ChangeLog
  Added:                bullet-2.83.4.ebuild
  Log:
  version bump: close bug 548860
  
  (Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 
B2EFA1D4)

Revision  Changes    Path
1.8                  sci-physics/bullet/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/metadata.xml?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/metadata.xml?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/metadata.xml?r1=1.7&r2=1.8

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/bullet/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml        4 Mar 2013 22:32:13 -0000       1.7
+++ metadata.xml        7 Jul 2015 20:45:48 -0000       1.8
@@ -8,8 +8,9 @@
   for games and animation.
 </longdescription>
 <use>
-  <flag name="extras">Build additional libraries</flag>
+  <flag name="bullet3">Build Bullet 3</flag>
   <flag name="double-precision">Build libraries in double precision</flag>
+  <flag name="extras">Build additional libraries</flag>
 </use>
 <upstream>
   <remote-id type="google-code">bullet</remote-id>



1.36                 sci-physics/bullet/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/ChangeLog?rev=1.36&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/ChangeLog?rev=1.36&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   23 Feb 2014 02:36:07 -0000      1.35
+++ ChangeLog   7 Jul 2015 20:45:48 -0000       1.36
@@ -1,6 +1,12 @@
 # ChangeLog for sci-physics/bullet
-# 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 $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.36 
2015/07/07 20:45:48 jauhien Exp $
+
+*bullet-2.83.4 (07 Jul 2015)
+
+  07 Jul 2015; Jauhien Piatlicki <jauh...@gentoo.org> +bullet-2.83.4.ebuild,
+  metadata.xml:
+  version bump: close bug 548860
 
 *bullet-2.82 (23 Feb 2014)
 



1.1                  sci-physics/bullet/bullet-2.83.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/bullet-2.83.4.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/bullet/bullet-2.83.4.ebuild?rev=1.1&content-type=text/plain

Index: bullet-2.83.4.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.83.4.ebuild,v 
1.1 2015/07/07 20:45:48 jauhien Exp $

EAPI=5

inherit eutils cmake-utils

DESCRIPTION="Continuous Collision Detection and Physics Library"
HOMEPAGE="http://www.bulletphysics.com/";
SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> 
${P}.tar.gz"

LICENSE="ZLIB"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="+bullet3 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}/${PN}3-${PV}"

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_OPENGL3_DEMOS=OFF
                -DBUILD_BULLET2_DEMOS=OFF
                -DUSE_GRAPHICAL_BENCHMARK=OFF
                -DINSTALL_LIBS=ON
                -DINSTALL_EXTRA_LIBS=ON
                $(cmake-utils_use_build bullet3 BULLET3)
                $(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 docs/*.pdf && dohtml -r html/*
        if use examples; then
                insinto /usr/share/doc/${PF}/examples
                doins -r Extras examples
        fi
}




Reply via email to