diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-06-13 07:03:30 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-06-13 07:03:30 +0000 |
commit | c6c2e51e05f703596ca6d5b882b2aaf6917448b2 (patch) | |
tree | a6d86308fad7bbaab5fa99f0884f9f0666b900e5 /dev-games/ogre | |
parent | Stable for x86, wrt bug #416891 (diff) | |
download | gentoo-2-c6c2e51e05f703596ca6d5b882b2aaf6917448b2.tar.gz gentoo-2-c6c2e51e05f703596ca6d5b882b2aaf6917448b2.tar.bz2 gentoo-2-c6c2e51e05f703596ca6d5b882b2aaf6917448b2.zip |
old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-games/ogre')
-rw-r--r-- | dev-games/ogre/ChangeLog | 5 | ||||
-rw-r--r-- | dev-games/ogre/ogre-1.7.4.ebuild | 84 |
2 files changed, 4 insertions, 85 deletions
diff --git a/dev-games/ogre/ChangeLog b/dev-games/ogre/ChangeLog index 1625761bad73..93a61b921064 100644 --- a/dev-games/ogre/ChangeLog +++ b/dev-games/ogre/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-games/ogre # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.79 2012/06/12 22:42:19 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ChangeLog,v 1.80 2012/06/13 07:03:30 mr_bones_ Exp $ + + 13 Jun 2012; Michael Sterrett <mr_bones_@gentoo.org> -ogre-1.7.4.ebuild: + old 12 Jun 2012; Julian Ospald <hasufell@gentoo.org> ogre-1.8.0.ebuild: fix patch diff --git a/dev-games/ogre/ogre-1.7.4.ebuild b/dev-games/ogre/ogre-1.7.4.ebuild deleted file mode 100644 index 8bee729bba78..000000000000 --- a/dev-games/ogre/ogre-1.7.4.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.7.4.ebuild,v 1.3 2012/05/26 15:31:19 ago Exp $ - -EAPI="4" - -inherit eutils cmake-utils - -MY_PV=${PV//./-} -DESCRIPTION="Object-oriented Graphics Rendering Engine" -HOMEPAGE="http://www.ogre3d.org/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_src_v${MY_PV}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="+boost cg doc double-precision examples +freeimage ois +opengl poco profile tbb test threads tools +zip" -REQUIRED_USE="threads? ( || ( boost poco tbb ) )" -RESTRICT="test" #139905 - -RDEPEND="media-libs/freetype:2 - virtual/opengl - virtual/glu - x11-libs/libX11 - x11-libs/libXaw - x11-libs/libXrandr - x11-libs/libXt - boost? ( dev-libs/boost ) - cg? ( media-gfx/nvidia-cg-toolkit ) - freeimage? ( media-libs/freeimage ) - ois? ( dev-games/ois ) - threads? ( - poco? ( dev-libs/poco ) - tbb? ( dev-cpp/tbb ) - ) - zip? ( sys-libs/zlib dev-libs/zziplib )" -DEPEND="${RDEPEND} - x11-proto/xf86vidmodeproto - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-util/cppunit )" - -S=${WORKDIR}/${PN}_src_v${MY_PV} - -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc46.patch - epatch "${FILESDIR}"/${P}-threading.patch - sed -i \ - -e "s:share/OGRE/docs:share/doc/${PF}:" \ - Docs/CMakeLists.txt || die - # Stupid build system hardcodes release names - sed -i \ - -e '/CONFIGURATIONS/s:CONFIGURATIONS.*::' \ - CMake/Utils/OgreConfigTargets.cmake || die -} - -src_configure() { - local mycmakeargs=( - -DOGRE_FULL_RPATH=NO - $(cmake-utils_use boost OGRE_USE_BOOST) - $(cmake-utils_use cg OGRE_BUILD_PLUGIN_CG) - $(cmake-utils_use doc OGRE_INSTALL_DOCS) - $(cmake-utils_use double-precision OGRE_CONFIG_DOUBLE) - $(cmake-utils_use examples OGRE_INSTALL_SAMPLES) - $(cmake-utils_use freeimage OGRE_CONFIG_ENABLE_FREEIMAGE) - $(cmake-utils_use opengl OGRE_BUILD_RENDERSYSTEM_GL) - $(cmake-utils_use profile OGRE_PROFILING) - $(cmake-utils_use test OGRE_BUILD_TESTS) - $(cmake-utils_use threads OGRE_CONFIG_THREADS) - $(cmake-utils_use tools OGRE_BUILD_TOOLS) - $(cmake-utils_use zip OGRE_CONFIG_ENABLE_ZIP) - ) - - if use threads ; then - local f - for f in poco tbb boost ; do - use ${f} || continue - mycmakeargs+=( -DOGRE_CONFIG_THREAD_PROVIDER=${f} ) - break - done - fi - - cmake-utils_src_configure -} |