From a03a5a9391806acd26a73a202738055f92f3ae61 Mon Sep 17 00:00:00 2001 From: Michael Sterrett Date: Thu, 10 Sep 2009 23:12:48 +0000 Subject: version bump (Portage version: 2.1.6.13/cvs/Linux i686) --- dev-games/ogre/ChangeLog | 7 +++- dev-games/ogre/ogre-1.6.3.ebuild | 81 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 dev-games/ogre/ogre-1.6.3.ebuild (limited to 'dev-games/ogre') diff --git a/dev-games/ogre/ChangeLog b/dev-games/ogre/ChangeLog index 84d361b2ec76..3efb9c91d7ed 100644 --- a/dev-games/ogre/ChangeLog +++ b/dev-games/ogre/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-games/ogre # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.56 2009/04/12 01:50:46 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.57 2009/09/10 23:12:48 mr_bones_ Exp $ + +*ogre-1.6.3 (10 Sep 2009) + + 10 Sep 2009; Michael Sterrett +ogre-1.6.3.ebuild: + version bump *ogre-1.6.2 (12 Apr 2009) diff --git a/dev-games/ogre/ogre-1.6.3.ebuild b/dev-games/ogre/ogre-1.6.3.ebuild new file mode 100644 index 000000000000..2789c09998f0 --- /dev/null +++ b/dev-games/ogre/ogre-1.6.3.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.6.3.ebuild,v 1.1 2009/09/10 23:12:48 mr_bones_ Exp $ + +EAPI=2 +inherit multilib eutils autotools flag-o-matic + +DESCRIPTION="Object-oriented Graphics Rendering Engine" +HOMEPAGE="http://www.ogre3d.org/" +SRC_URI="mirror://sourceforge/ogre/ogre-v${PV//./-}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc cg devil double-precision examples freeimage gtk threads" +RESTRICT="test" #139905 + +RDEPEND="dev-libs/zziplib + media-libs/freetype:2 + virtual/opengl + virtual/glu + x11-libs/libXt + x11-libs/libXaw + x11-libs/libXrandr + x11-libs/libX11 + cg? ( media-gfx/nvidia-cg-toolkit ) + devil? ( media-libs/devil ) + freeimage? ( media-libs/freeimage ) + gtk? ( x11-libs/gtk+:2 ) + threads? ( || ( >=dev-libs/boost-1.34.1 dev-libs/boost[threads] ) )" +DEPEND="${RDEPEND} + x11-proto/xf86vidmodeproto + dev-util/pkgconfig" + +S=${WORKDIR}/${PN} + +src_prepare() { + ecvs_clean + if use examples ; then + cp -r Samples install-examples || die + find install-examples \ + '(' -name .keepme -o -name '*.cbp' -o -name '*.vcproj*' ')' \ + -print0 | xargs -0 rm -rf + find install-examples -type d -print0 | xargs -0 rmdir 2> /dev/null + sed -i \ + -e "s:/usr/local/lib/OGRE:/usr/$(get_libdir)/OGRE:" \ + $(grep -rl /usr/local/lib/OGRE install-examples) \ + || die "sed failed" + fi + sed -i -e '/CPPUNIT/d' configure.in || die "sed failed" + eautoreconf +} + +src_configure() { + strip-flags + econf \ + --disable-dependency-tracking \ + --disable-openexr \ + --disable-ogre-demos \ + --enable-static \ + --with-platform=GLX \ + --with-gui=$(usev gtk || echo Xt) \ + $(use_enable cg) \ + $(use_enable devil) \ + $(use_enable double-precision double) \ + $(use_enable freeimage) \ + $(use_enable threads threading) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + if use doc ; then + insinto /usr/share/doc/${PF}/html + doins -r Docs/* || die "doins Docs failed" + fi + if use examples ; then + insinto /usr/share/doc/${PF}/Samples + doins -r install-examples/* || die "doins Samples failed" + fi + dodoc AUTHORS BUGS LINUX.DEV README +} -- cgit v1.2.3-65-gdbad