Skip to content

Commit

Permalink
games-fps/quake2-demodata: 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 7, 2021
1 parent 726be8a commit fb43d59
Showing 1 changed file with 13 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,52 +1,50 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit unpacker eutils versionator games
EAPI=7

MY_PV=$(delete_all_version_separators)
inherit unpacker

#MY_PV=$(delete_all_version_separators)
MY_PV=$(ver_rs 1- '')
MY_PN="quake2"
FILE="q2-${MY_PV}-demo-x86.exe"

DESCRIPTION="Demo data for Quake 2"
HOMEPAGE="https://en.wikipedia.org/wiki/Quake_II"
SRC_URI="mirror://idsoftware/${MY_PN}/${FILE}"
S="${WORKDIR}"

# See license.txt - it's a bit different to Q2EULA in Portage
LICENSE="quake2-demodata"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86"
IUSE="symlink"

RDEPEND=""
DEPEND="app-arch/unzip
!games-fps/quake2-data" # games-fps/quake2-data already includes the demo data
RDEPEND="!games-fps/quake2-data" # games-fps/quake2-data already includes the demo data
BDEPEND="app-arch/unzip"

S=${WORKDIR}
dir=${GAMES_DATADIR}/${MY_PN}
dir=usr/share/${MY_PN}

src_unpack() {
unpack_zip ${A}
}

src_install() {
insinto "${dir}"/demo
insinto ${dir}/demo
doins -r Install/Data/baseq2/{pak0.pak,players}

dodoc Install/Data/DOCS/*.txt

if use symlink ; then
# Make the demo the default, so that people can just run it,
# without having to mess with command-line options.
cd "${D}/${dir}" && ln -sfn demo baseq2
cd "${ED}"/${dir} || die
ln -sfn demo baseq2 || die
fi

prepgamesdirs
}

pkg_postinst() {
games_pkg_postinst

elog "This is just the demo data. To play, install a client"
elog "such as games-fps/qudos"
echo
Expand Down

0 comments on commit fb43d59

Please sign in to comment.