# Copyright 2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7..11} ) inherit python-any-r1 cmake if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/gemrb/gemrb" fi DESCRIPTION="Reimplementation of the Infinity engine" HOMEPAGE="https://gemrb.org/" if [[ "${PV}" == "9999" ]]; then SRC_URI="" else SRC_URI="mirror://sourceforge/gemrb/${P}-sources.tar.gz" fi LICENSE="GPL-2" SLOT="0" KEYWORDS="" IUSE="opengl" RDEPEND="media-libs/freetype media-libs/libpng:0 >=media-libs/libsdl-1.2[video] media-libs/libvorbis media-libs/openal[sdl] media-libs/sdl-mixer sys-libs/zlib ${PYTHON_DEPS}" DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { local mycmakeargs=( -DDISABLE_WERROR=enabled -DOPENGL_BACKEND=$(usex opengl OpenGL) ) cmake_src_configure }