diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2019-06-09 11:55:09 +0900 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2019-06-18 22:20:38 +0100 |
commit | 6dd37f121e4cecb95555fbcddcae382d089a4ca7 (patch) | |
tree | ea49d003cf59ae40c579b92476f22c72d6f1e069 /games-fps | |
parent | games-fps/freedoom: Update metadata (diff) | |
download | gentoo-6dd37f121e4cecb95555fbcddcae382d089a4ca7.tar.gz gentoo-6dd37f121e4cecb95555fbcddcae382d089a4ca7.tar.bz2 gentoo-6dd37f121e4cecb95555fbcddcae382d089a4ca7.zip |
games-fps/freedoom: Add doom engine runtime dependency
Freedoom is distributed by upstream with the intention to be run by a
doom engine; this is also the expectation of end users. This patch adds
a doom engine as a runtime dependency for Freedoom.
Three possible doom engines are listed in RDEPEND: games-engines/odamex,
games-fps/doomsday, games-fps/gzdoom. The games-fps/gzdoom package is
set to preferred as it is the recommendation of the Freedoom upstream
team.
Closes: https://bugs.gentoo.org/687672
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/freedoom/freedoom-0.11.3-r1.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/games-fps/freedoom/freedoom-0.11.3-r1.ebuild b/games-fps/freedoom/freedoom-0.11.3-r1.ebuild new file mode 100644 index 000000000000..2f5fd2f5c58a --- /dev/null +++ b/games-fps/freedoom/freedoom-0.11.3-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A complete free-content single-player focused game based on the Doom engine" +HOMEPAGE="https://freedoom.github.io" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + ~games-fps/freedoom-data-${PV} + || ( + games-fps/gzdoom + games-engines/odamex + games-fps/doomsday + ) +" + +pkg_postinst() { + elog "If you are looking for a multiplayer-focused deathmatch game, please install games-fps/freedm." +} |