diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-03-25 23:58:46 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-03-26 00:30:59 +0100 |
commit | 0eb69f753af2e54e51d9189d65eacc65b245c8a8 (patch) | |
tree | bbe008ef64d2563812ae96d61e0a044a67ae1888 /dev-games | |
parent | mail-filter/opendkim: drop old version (diff) | |
download | gentoo-0eb69f753af2e54e51d9189d65eacc65b245c8a8.tar.gz gentoo-0eb69f753af2e54e51d9189d65eacc65b245c8a8.tar.bz2 gentoo-0eb69f753af2e54e51d9189d65eacc65b245c8a8.zip |
dev-games/cegui: drop old version
Drop old version depending on non slotted lua.
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/cegui/cegui-0.8.7-r1.ebuild | 123 |
1 files changed, 0 insertions, 123 deletions
diff --git a/dev-games/cegui/cegui-0.8.7-r1.ebuild b/dev-games/cegui/cegui-0.8.7-r1.ebuild deleted file mode 100644 index 6e34ca1b15de..000000000000 --- a/dev-games/cegui/cegui-0.8.7-r1.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# TODO: multiple ABI? -PYTHON_COMPAT=( python3_8 ) -inherit flag-o-matic cmake python-single-r1 - -DESCRIPTION="Crazy Eddie's GUI System" -HOMEPAGE="http://www.cegui.org.uk/" -SRC_URI="mirror://sourceforge/crayzedsgui/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="bidi debug devil doc freeimage expat irrlicht lua ogre opengl pcre python static-libs tinyxml truetype xerces-c +xml zip" -REQUIRED_USE="|| ( expat tinyxml xerces-c xml ) - python? ( ${PYTHON_REQUIRED_USE} )" # bug 362223 - -# gles broken -# gles? ( media-libs/mesa[gles1] ) -# directfb broken -# directfb? ( dev-libs/DirectFB ) -RDEPEND=" - dev-libs/boost:= - virtual/libiconv - bidi? ( dev-libs/fribidi ) - devil? ( media-libs/devil ) - expat? ( dev-libs/expat ) - freeimage? ( media-libs/freeimage ) - irrlicht? ( dev-games/irrlicht ) - lua? ( - dev-lang/lua:0 - dev-lua/toluapp - ) - ogre? ( >=dev-games/ogre-1.7:= ) - opengl? ( - virtual/opengl - virtual/glu - media-libs/glew:= - ) - pcre? ( dev-libs/libpcre ) - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-libs/boost:=[python,${PYTHON_MULTI_USEDEP}] - ') - ) - tinyxml? ( dev-libs/tinyxml ) - truetype? ( media-libs/freetype:2 ) - xerces-c? ( dev-libs/xerces-c ) - xml? ( dev-libs/libxml2:2 ) - zip? ( sys-libs/zlib[minizip] )" - -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - opengl? ( media-libs/glm )" - -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" - -PATCHES=( - "${FILESDIR}"/${P}-icu-59.patch - "${FILESDIR}"/${P}-python3.patch - "${FILESDIR}"/${P}-musl.patch -) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_configure() { - # http://www.cegui.org.uk/mantis/view.php?id=991 - append-ldflags $(no-as-needed) - - local mycmakeargs=( - -DCEGUI_BUILD_IMAGECODEC_CORONA=OFF - -DCEGUI_BUILD_IMAGECODEC_DEVIL=$(usex devil) - -DCEGUI_BUILD_IMAGECODEC_FREEIMAGE=$(usex freeimage) - -DCEGUI_BUILD_IMAGECODEC_PVR=OFF - -DCEGUI_BUILD_IMAGECODEC_SILLY=OFF - -DCEGUI_BUILD_IMAGECODEC_STB=ON - -DCEGUI_BUILD_IMAGECODEC_TGA=ON - -DCEGUI_BUILD_LUA_GENERATOR=$(usex lua) - -DCEGUI_BUILD_LUA_MODULE=$(usex lua) - -DCEGUI_BUILD_PYTHON_MODULES=$(usex python) - -DCEGUI_BUILD_RENDERER_DIRECTFB=OFF - -DCEGUI_BUILD_RENDERER_IRRLICHT=$(usex irrlicht) - -DCEGUI_BUILD_RENDERER_NULL=ON - -DCEGUI_BUILD_RENDERER_OGRE=$(usex ogre) - -DCEGUI_BUILD_RENDERER_OPENGL=$(usex opengl) - -DCEGUI_BUILD_RENDERER_OPENGL3=$(usex opengl) - -DCEGUI_BUILD_RENDERER_OPENGLES=OFF - -DCEGUI_BUILD_STATIC_CONFIGURATION=$(usex static-libs) - -DCEGUI_BUILD_TESTS=OFF - -DCEGUI_BUILD_XMLPARSER_EXPAT=$(usex expat) - -DCEGUI_BUILD_XMLPARSER_LIBXML2=$(usex xml) - -DCEGUI_BUILD_XMLPARSER_RAPIDXML=OFF - -DCEGUI_BUILD_XMLPARSER_TINYXML=$(usex tinyxml) - -DCEGUI_BUILD_XMLPARSER_XERCES=$(usex xerces-c) - -DCEGUI_HAS_FREETYPE=$(usex truetype) - -DCEGUI_HAS_MINIZIP_RESOURCE_PROVIDER=$(usex zip) - -DCEGUI_HAS_PCRE_REGEX=$(usex pcre) - -DCEGUI_SAMPLES_ENABLED=OFF - -DCEGUI_USE_FRIBIDI=$(usex bidi) - -DCEGUI_USE_MINIBIDI=OFF - ) - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all $(usex doc html "") -} - -src_install() { - cmake_src_install - docinto html - use doc && dodoc -r "${BUILD_DIR}"/doc/doxygen/html/* -} |