# Copyright 2021-2023 Bryan Gardiner # Distributed under the terms of the GNU General Public License v2 # This ebuild bundles the specific version of Pomme that is recommended # for this release of Bugdom. Nanosaur is incompatible with this # version and requires a different version, and it's not worth the # trouble to slot Pomme. EAPI=8 inherit cmake xdg MY_PN=Bugdom GIT_REV=0591da5b0c20021fe0c4c9aa85077af31809e889 POMME_GIT_REV=d57c28e205462e51063e787f9ebddaadff592f1e DESCRIPTION="Save the Bugdom from the evil Fire Ants" HOMEPAGE="https://github.com/jorio/Bugdom/" SRC_URI=" https://github.com/jorio/Bugdom/archive/${GIT_REV}.tar.gz -> ${P}.tar.gz https://github.com/jorio/Pomme/archive/${POMME_GIT_REV}.tar.gz -> Pomme-${POMME_GIT_REV}.tar.gz " # Licenses other than CC-BY-NC-SA-4.0 are for Pomme. LICENSE="CC-BY-NC-SA-4.0 Boost-1.0 BSD CC0-1.0 LGPL-2.1+ MIT" SLOT="0" KEYWORDS="~amd64" RDEPEND=" dev-util/patchelf media-libs/libsdl2 virtual/opengl " DEPEND=" ${RDEPEND} dev-util/patchelf " PATCHES=( "${FILESDIR}/${PN}-1.3.3-build.patch" ) DOCS=( README.md ) S="${WORKDIR}/${MY_PN}-${GIT_REV}" src_unpack() { unpack "${P}.tar.gz" cd "${S}/extern/Pomme" || die "Couldn't change to extern/Pomme." unpack "Pomme-${POMME_GIT_REV}.tar.gz" mv "Pomme-${POMME_GIT_REV}"/* ./ || die rm -r "Pomme-${POMME_GIT_REV}" || die } src_compile() { cmake_src_compile patchelf --set-rpath '$ORIGIN' "${BUILD_DIR}/${MY_PN}" || die "Failed to call patchelf." } src_install() { exeinto "/usr/$(get_libdir)/${MY_PN}" doexe "${BUILD_DIR}/${MY_PN}" doexe "${BUILD_DIR}/extern/Pomme/libPomme.so" dosym "../$(get_libdir)/${MY_PN}/${MY_PN}" "${EPREFIX}/usr/bin/${MY_PN}" insinto "/usr/share/${MY_PN}" doins -r "${BUILD_DIR}/Data"/* einstalldocs insinto "/usr/share/pixmaps" doins "${S}/packaging/io.jor.bugdom.png" insinto "/usr/share/applications" doins "${S}/packaging/io.jor.bugdom.desktop" }