diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-11-23 02:07:42 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-11-23 02:07:42 +0000 |
commit | 7b898b4c267c2de10237ac83fbd8c8d848e012d2 (patch) | |
tree | 036e0f14109b680708ffd2e5bfa1dd31d9cbf1e9 /sci-physics/bullet | |
parent | Fixed the plugins directory, thanks Chris Mayo, bug #294113 (diff) | |
download | gentoo-2-7b898b4c267c2de10237ac83fbd8c8d848e012d2.tar.gz gentoo-2-7b898b4c267c2de10237ac83fbd8c8d848e012d2.tar.bz2 gentoo-2-7b898b4c267c2de10237ac83fbd8c8d848e012d2.zip |
Fixed a pkg-config file, bug #294127
(Portage version: 2.2_rc50/cvs/Linux x86_64)
Diffstat (limited to 'sci-physics/bullet')
-rw-r--r-- | sci-physics/bullet/ChangeLog | 6 | ||||
-rw-r--r-- | sci-physics/bullet/bullet-2.73-r1.ebuild | 45 | ||||
-rw-r--r-- | sci-physics/bullet/bullet-2.74.ebuild | 46 | ||||
-rw-r--r-- | sci-physics/bullet/bullet-2.75.ebuild | 4 |
4 files changed, 7 insertions, 94 deletions
diff --git a/sci-physics/bullet/ChangeLog b/sci-physics/bullet/ChangeLog index 18afa8897a3a..461eb8e7ee7f 100644 --- a/sci-physics/bullet/ChangeLog +++ b/sci-physics/bullet/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-physics/bullet # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.8 2009/09/14 01:53:05 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/ChangeLog,v 1.9 2009/11/23 02:07:42 bicatali Exp $ + + 23 Nov 2009; Sébastien Fabbro <bicatali@gentoo.org> + -bullet-2.73-r1.ebuild, -bullet-2.74.ebuild, bullet-2.75.ebuild: + Fixed a pkg-config file, bug #294127 *bullet-2.75 (14 Sep 2009) diff --git a/sci-physics/bullet/bullet-2.73-r1.ebuild b/sci-physics/bullet/bullet-2.73-r1.ebuild deleted file mode 100644 index 0b5370d3464d..000000000000 --- a/sci-physics/bullet/bullet-2.73-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.73-r1.ebuild,v 1.2 2009/01/16 14:54:03 bicatali Exp $ - -inherit eutils autotools - -MYP="${P}-sp1" - -DESCRIPTION="Continuous Collision Detection and Physics Library" -HOMEPAGE="http://www.continuousphysics.com/Bullet/" -SRC_URI="http://bullet.googlecode.com/files/${MYP}.tgz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -RDEPEND="" -DEPEND="${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - # clean up - rm -rf Extras/LibXML - rm -f Extras/CDTestFramework/AntTweakBar/lib/libAntTweakBar.so - - epatch "${FILESDIR}"/${P}-autotools.patch - eautoreconf - edos2unix install-sh || die -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README ChangeLog AUTHORS || die - - if use doc; then - insinto /usr/share/doc/${PF} - doins *.pdf || die - fi - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r Extras Demos || die - fi -} diff --git a/sci-physics/bullet/bullet-2.74.ebuild b/sci-physics/bullet/bullet-2.74.ebuild deleted file mode 100644 index b6daa3757015..000000000000 --- a/sci-physics/bullet/bullet-2.74.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.74.ebuild,v 1.2 2009/06/24 04:59:04 bicatali Exp $ - -EAPI=2 -inherit eutils autotools - -DESCRIPTION="Continuous Collision Detection and Physics Library" -HOMEPAGE="http://www.continuousphysics.com/Bullet/" -SRC_URI="http://bullet.googlecode.com/files/${P}.tgz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples threads" - -RDEPEND="" -DEPEND="${RDEPEND}" - -src_prepare() { - rm -rf Extras/LibXML - rm -f Extras/CDTestFramework/AntTweakBar/lib/libAntTweakBar.so - epatch "${FILESDIR}"/${P}-noextra.patch - epatch "${FILESDIR}"/${P}-missing-header.patch - eautoreconf - edos2unix install-sh || die -} -src_configure() { - econf \ - --disable-demos \ - $(use_enable threads multithreaded) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README ChangeLog AUTHORS || die - if use doc; then - insinto /usr/share/doc/${PF} - doins *.pdf || die - fi - if use examples; then - emake distclean - insinto /usr/share/doc/${PF}/examples - doins -r Extras Demos || die - fi -} diff --git a/sci-physics/bullet/bullet-2.75.ebuild b/sci-physics/bullet/bullet-2.75.ebuild index c5c4a4019fad..4473fb1c674b 100644 --- a/sci-physics/bullet/bullet-2.75.ebuild +++ b/sci-physics/bullet/bullet-2.75.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.75.ebuild,v 1.1 2009/09/14 01:53:05 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/bullet/bullet-2.75.ebuild,v 1.2 2009/11/23 02:07:42 bicatali Exp $ EAPI=2 inherit eutils cmake-utils @@ -30,7 +30,7 @@ src_configure() { -DBUILD_DEMOS=OFF -DBUILD_EXTRAS=OFF" cmake-utils_src_configure - sed -e 's|@prefix@|${ROOT}usr|' \ + sed -e "s|@prefix@|${ROOT}usr|" \ -e 's|@exec_prefix@|${prefix}|' \ -e "s|@libdir@|\${exec_prefix}/$(get_libdir)|" \ -e "s|@PACKAGE_VERSION@|${PV}|" \ |