diff options
| author | Jakob L. Kreuze <jakob@memeware.net> | 2018-10-14 13:25:17 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <jakob@memeware.net> | 2018-10-14 13:25:17 -0400 |
| commit | 3b52fa3411564cd0b0fd5b192caedbd8f1306d4c (patch) | |
| tree | 98e673a0ad9430509f4958068e37f8ba5e2e98c1 /games-fps | |
Initial commit.
Diffstat (limited to 'games-fps')
| -rw-r--r-- | games-fps/crispy-doom/Manifest | 1 | ||||
| -rw-r--r-- | games-fps/crispy-doom/crispy-doom-9999.ebuild | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/games-fps/crispy-doom/Manifest b/games-fps/crispy-doom/Manifest new file mode 100644 index 0000000..ec65e12 --- /dev/null +++ b/games-fps/crispy-doom/Manifest @@ -0,0 +1 @@ +EBUILD crispy-doom-9999.ebuild 1348 BLAKE2B d7248239300d78b7c1a2acb468d4d619af0597dcbb29df05e203eafa608fb8d881811b9df3fe0db5b076140fca77bf373b2b85c34f82d3490aa963420b6fd505 SHA512 05b466502373d642adba4dd88c9ea83663941cb845da0e3ff11b96a43e93e4dd7ad49942cfdd46e73822278cb3b2057d7d8740bd6433def9ba021a515e739cf4 diff --git a/games-fps/crispy-doom/crispy-doom-9999.ebuild b/games-fps/crispy-doom/crispy-doom-9999.ebuild new file mode 100644 index 0000000..5a87fb7 --- /dev/null +++ b/games-fps/crispy-doom/crispy-doom-9999.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="https://github.com/fabiangreffrath/crispy-doom" + +inherit eutils autotools git-r3 + +DESCRIPTION="Limit-raising medium-resolution Doom source port based on Chocolate Doom" +HOMEPAGE="http://fabiangreffrath.github.io/crispy-doom" + +LICENSE="GPL-2" +SLOT="0" + +RDEPEND="media-libs/libsamplerate + media-libs/libsdl2 + media-libs/sdl2-mixer + media-libs/sdl2-net" +DEPEND="${RDEPEND}" + +src_prepare() { + eautoreconf + default +} + +src_install() { + dobin src/crispy-doom + dobin src/crispy-setup + dobin src/crispy-server + dobin src/crispy-doom-setup + + doman man/crispy-doom.6 + doman man/crispy-doom-setup.6 + + doman man/default.cfg.5 + doman man/crispy-doom.cfg.5 + + # local opt game game_full + # for opt in "doom Doom" \ + # "heretic Heretic" \ + # "strife Strife" \ + # "hexen Hexen" + + # if use server ; then + # dogamesbin src/chocolate-server + # doman man/chocolate-server.6 + # fi + + # domenu src/${PN}-screensaver.desktop + dodoc AUTHORS ChangeLog HACKING.md NEWS.md NOT-BUGS.md README* TODO.md +} + +pkg_postinst() { + einfo + einfo "To configure game options run: chocolate-setup" + einfo +} |