Skip to content

Commit

Permalink
games-roguelike/FTL: port to EAPI 7, games.eclass--
Browse files Browse the repository at this point in the history
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
thesamesam committed Apr 6, 2021
1 parent 820bf30 commit a7baf14
Showing 1 changed file with 18 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
# Copyright 1999-2018 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=5
EAPI=7

inherit eutils games
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="
Expand All @@ -23,12 +25,13 @@ RDEPEND="
media-libs/freetype:2
media-libs/libsdl[X,sound,joystick,opengl,video]
sys-libs/zlib
)"

QA_PREBUILT="${GAMES_PREFIX_OPT#/}/${PN}/bin/${PN}
${GAMES_PREFIX_OPT#/}/${PN}/lib/*"
)
"

S=${WORKDIR}/${PN}
QA_PREBUILT="
opt/${PN}/bin/${PN}
opt/${PN}/lib/*
"

pkg_nofetch() {
einfo "Please buy & download ${SRC_URI} from:"
Expand All @@ -45,21 +48,21 @@ src_prepare() {
}

src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
local dir=opt/${PN}

insinto "${dir}"
insinto ${dir}
doins -r data/resources

exeinto "${dir}"/bin
exeinto ${dir}/bin
doexe data/${ARCH}/bin/${PN}
exeinto "${dir}"/lib
exeinto ${dir}/lib
doexe data/${ARCH}/lib/*.so*

games_make_wrapper ${PN} "${dir}/bin/${PN}" "${dir}" "${dir}/lib"
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
dohtml ${PN}_README.html

prepgamesdirs
docinto html
dodoc ${PN}_README.html
}

0 comments on commit a7baf14

Please sign in to comment.