public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/ogre/
Date: Thu, 18 Feb 2021 20:12:29 +0000 (UTC)	[thread overview]
Message-ID: <1613679137.07f020ef0089e9ad08fedaaf83921db9d85a18de.asturm@gentoo> (raw)

commit:     07f020ef0089e9ad08fedaaf83921db9d85a18de
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 18 20:07:52 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 20:12:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07f020ef

dev-games/ogre: Drop 1.9.0-r1

Bug: https://bugs.gentoo.org/770586
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-games/ogre/ogre-1.9.0-r1.ebuild | 133 ------------------------------------
 1 file changed, 133 deletions(-)

diff --git a/dev-games/ogre/ogre-1.9.0-r1.ebuild b/dev-games/ogre/ogre-1.9.0-r1.ebuild
deleted file mode 100644
index dd3d2ee065a..00000000000
--- a/dev-games/ogre/ogre-1.9.0-r1.ebuild
+++ /dev/null
@@ -1,133 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CMAKE_REMOVE_MODULES="yes"
-CMAKE_REMOVE_MODULES_LIST="FindFreetype FindDoxygen FindZLIB"
-
-inherit eutils cmake-utils vcs-snapshot
-
-DESCRIPTION="Object-oriented Graphics Rendering Engine"
-HOMEPAGE="https://www.ogre3d.org/"
-SRC_URI="https://bitbucket.org/sinbad/ogre/get/v${PV//./-}.tar.bz2 -> ${P}.tar.bz2"
-
-LICENSE="MIT public-domain"
-SLOT="0/1.9.0"
-KEYWORDS="amd64 ~arm x86"
-
-# gles1 currently broken wrt bug #418201
-# gles1 does not even build wrt bug #506058
-IUSE="+boost cg doc double-precision examples +freeimage gl3plus gles2 gles3 ois +opengl poco profile tbb threads tools +zip"
-
-REQUIRED_USE="threads? ( ^^ ( boost poco tbb ) )
-	examples? ( ois )
-	poco? ( threads )
-	tbb? ( threads )
-	gl3plus? ( !gles2 !gles3 )
-	gles3? ( gles2 )
-	gl3plus? ( opengl )"
-
-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 )
-	gles2? ( >=media-libs/mesa-9.0.0[gles2] )
-	gles3? ( >=media-libs/mesa-10.0.0[gles2] )
-	gl3plus? ( >=media-libs/mesa-9.2.5 )
-	ois? ( dev-games/ois )
-	threads? (
-		poco? ( dev-libs/poco )
-		tbb? ( dev-cpp/tbb )
-	)
-	tools? ( dev-libs/tinyxml[stl] )
-	zip? ( sys-libs/zlib dev-libs/zziplib )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	x11-base/xorg-proto
-	doc? ( app-doc/doxygen )"
-
-PATCHES=(
-	"${FILESDIR}/${P}-remove_resource_path_to_bindir.patch"
-	"${FILESDIR}/${P}-remove_media_path_to_bindir.patch"
-	"${FILESDIR}/${P}-gcc52.patch"
-	"${FILESDIR}/${P}-samples.patch"
-)
-
-src_prepare() {
-	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 Release.*::' \
-		CMake/Utils/OgreConfigTargets.cmake || die
-
-	# make sure we're not using the included tinyxml
-	rm -f Tools/XMLConverter/{include,src}/tiny*.*
-
-	# Fix some path issues
-	cmake-utils_src_prepare
-}
-
-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 freeimage OGRE_CONFIG_ENABLE_FREEIMAGE)
-		$(cmake-utils_use opengl OGRE_BUILD_RENDERSYSTEM_GL)
-		$(cmake-utils_use gl3plus OGRE_BUILD_RENDERSYSTEM_GL3PLUS)
-		-DOGRE_BUILD_RENDERSYSTEM_GLES=FALSE
-		$(cmake-utils_use gles2 OGRE_BUILD_RENDERSYSTEM_GLES2)
-		$(cmake-utils_use gles3 OGRE_CONFIG_ENABLE_GLES3_SUPPORT)
-		$(cmake-utils_use profile OGRE_PROFILING)
-		$(cmake-utils_use examples OGRE_BUILD_SAMPLES)
-		$(cmake-utils_use examples OGRE_INSTALL_SAMPLES)
-		$(cmake-utils_use examples OGRE_INSTALL_SAMPLES_SOURCE)
-		-DOGRE_BUILD_TESTS=FALSE
-		-DOGRE_CONFIG_THREADS=$(usex threads 2 0)
-		$(cmake-utils_use tools OGRE_BUILD_TOOLS)
-		$(cmake-utils_use zip OGRE_CONFIG_ENABLE_ZIP)
-	)
-
-	if use threads ; then
-		local f
-		for f in boost poco tbb ; do
-			use ${f} || continue
-			mycmakeargs+=( -DOGRE_CONFIG_THREAD_PROVIDER=${f} )
-			break
-		done
-	fi
-
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	CONFIGDIR=/etc/OGRE
-	SHAREDIR=/usr/share/OGRE
-
-	# plugins and resources are the main configuration
-	insinto "${CONFIGDIR}"
-	doins "${CMAKE_BUILD_DIR}"/bin/plugins.cfg
-	doins "${CMAKE_BUILD_DIR}"/bin/resources.cfg
-	dosym "${CONFIGDIR}"/plugins.cfg "${SHAREDIR}"/plugins.cfg
-	dosym "${CONFIGDIR}"/resources.cfg "${SHAREDIR}"/resources.cfg
-
-	# These are only for the sample browser
-	insinto "${SHAREDIR}"
-	doins "${CMAKE_BUILD_DIR}"/bin/quakemap.cfg
-	doins "${CMAKE_BUILD_DIR}"/bin/samples.cfg
-}


             reply	other threads:[~2021-02-18 20:12 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-18 20:12 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-08-12  4:42 [gentoo-commits] repo/gentoo:master commit in: dev-games/ogre/ Sam James
2025-05-29 16:49 Sam James
2024-05-23 16:10 Matt Turner
2023-01-29 13:34 Joonas Niilola
2022-11-16  3:56 John Helmert III
2022-06-03 12:34 Joonas Niilola
2022-02-12 12:11 Jakov Smolić
2022-01-16  2:12 Sam James
2021-10-29 22:23 Sam James
2021-02-14 19:52 Sam James
2020-08-25 22:00 James Le Cuirot
2020-08-24 17:45 Jonas Stein
2020-01-07 22:58 James Le Cuirot
2018-06-17 18:44 Andreas Sturmlechner
2018-06-17 18:44 Andreas Sturmlechner
2018-04-15 11:34 David Seifert
2017-08-19 18:07 Michał Górny
2017-08-11 16:25 Michał Górny
2016-12-29 17:37 Lars Wendler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1613679137.07f020ef0089e9ad08fedaaf83921db9d85a18de.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox