diff options
author | Sam James <sam@gentoo.org> | 2021-04-06 02:29:08 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-06 19:17:58 +0100 |
commit | a7baf149ced14da8029854356a0218055dc98ded (patch) | |
tree | 4997ac7ffb82cd7e1a039d5cbee4bd651d52e92f /games-roguelike/FTL/FTL-1.5.13-r1.ebuild | |
parent | games-fps/ezquake-bin: port to EAPI 7, games.eclass-- (diff) | |
download | gentoo-a7baf149ced14da8029854356a0218055dc98ded.tar.gz gentoo-a7baf149ced14da8029854356a0218055dc98ded.tar.bz2 gentoo-a7baf149ced14da8029854356a0218055dc98ded.zip |
games-roguelike/FTL: port to EAPI 7, games.eclass--
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-roguelike/FTL/FTL-1.5.13-r1.ebuild')
-rw-r--r-- | games-roguelike/FTL/FTL-1.5.13-r1.ebuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/games-roguelike/FTL/FTL-1.5.13-r1.ebuild b/games-roguelike/FTL/FTL-1.5.13-r1.ebuild new file mode 100644 index 000000000000..d0eb80d7dba2 --- /dev/null +++ b/games-roguelike/FTL/FTL-1.5.13-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop wrapper + +DESCRIPTION="Faster Than Light: A spaceship simulation real-time roguelike-like game" +HOMEPAGE="http://www.ftlgame.com/" +SRC_URI="FTL.${PV}.tar.gz" +S="${WORKDIR}"/${PN} + +LICENSE="all-rights-reserved Boost-1.0 free-noncomm MIT bundled-libs? ( FTL LGPL-2.1 ZLIB libpng )" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="bundled-libs" + +RESTRICT="fetch bindist splitdebug" + +RDEPEND=" + sys-devel/gcc[cxx] + virtual/opengl + !bundled-libs? ( + media-libs/devil[png] + media-libs/freetype:2 + media-libs/libsdl[X,sound,joystick,opengl,video] + sys-libs/zlib + ) +" + +QA_PREBUILT=" + opt/${PN}/bin/${PN} + opt/${PN}/lib/* +" + +pkg_nofetch() { + einfo "Please buy & download ${SRC_URI} from:" + einfo " ${HOMEPAGE}" + einfo "and move it to your DISTDIR directory." + einfo +} + +src_prepare() { + if ! use bundled-libs ; then + # no system lib for libbass available + find data/${ARCH}/lib -type f \! -name "libbass*" -delete || die + fi +} + +src_install() { + local dir=opt/${PN} + + insinto ${dir} + doins -r data/resources + + exeinto ${dir}/bin + doexe data/${ARCH}/bin/${PN} + exeinto ${dir}/lib + doexe data/${ARCH}/lib/*.so* + + make_wrapper ${PN} "${dir}/bin/${PN}" "${dir}" "${dir}/lib" + make_desktop_entry ${PN} "Faster Than Light" "/usr/share/pixmaps/FTL.bmp" + + newicon data/resources/exe_icon.bmp FTL.bmp + + docinto html + dodoc ${PN}_README.html +} |