diff options
Diffstat (limited to 'games-fps')
| -rw-r--r-- | games-fps/crispy-doom/Manifest | 2 | ||||
| -rw-r--r-- | games-fps/crispy-doom/crispy-doom-9999.ebuild | 30 |
2 files changed, 12 insertions, 20 deletions
diff --git a/games-fps/crispy-doom/Manifest b/games-fps/crispy-doom/Manifest index ec65e12..f8e1d24 100644 --- a/games-fps/crispy-doom/Manifest +++ b/games-fps/crispy-doom/Manifest @@ -1 +1 @@ -EBUILD crispy-doom-9999.ebuild 1348 BLAKE2B d7248239300d78b7c1a2acb468d4d619af0597dcbb29df05e203eafa608fb8d881811b9df3fe0db5b076140fca77bf373b2b85c34f82d3490aa963420b6fd505 SHA512 05b466502373d642adba4dd88c9ea83663941cb845da0e3ff11b96a43e93e4dd7ad49942cfdd46e73822278cb3b2057d7d8740bd6433def9ba021a515e739cf4 +EBUILD crispy-doom-9999.ebuild 1284 BLAKE2B a9f4981581a24f70f9168a7f43959a920efca3e92dc898eb1649475cfbc4f7469c761eb0c0528757fb9395133226dd82e624e7e25bfe77adf44879b563880d7c SHA512 5a0a255b2d76c6a69f5da6a83a73a144e475a891f2c032824980de7e9df74dc8860eb0db0a4c892601fc9cda9d626d7fb099a00a7589930c588dcc7e754b49c9 diff --git a/games-fps/crispy-doom/crispy-doom-9999.ebuild b/games-fps/crispy-doom/crispy-doom-9999.ebuild index 5a87fb7..022b8a2 100644 --- a/games-fps/crispy-doom/crispy-doom-9999.ebuild +++ b/games-fps/crispy-doom/crispy-doom-9999.ebuild @@ -3,20 +3,19 @@ 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" +DESCRIPTION="Limit-raising medium-resolution Doom source port based on Chocolate Doom." HOMEPAGE="http://fabiangreffrath.github.io/crispy-doom" +EGIT_REPO_URI="https://github.com/fabiangreffrath/crispy-doom" LICENSE="GPL-2" SLOT="0" RDEPEND="media-libs/libsamplerate - media-libs/libsdl2 - media-libs/sdl2-mixer - media-libs/sdl2-net" + media-libs/libsdl2 + media-libs/sdl2-mixer + media-libs/sdl2-net" DEPEND="${RDEPEND}" src_prepare() { @@ -25,6 +24,8 @@ src_prepare() { } src_install() { + # Currently, support for games such as heretc is disabled. See + # <https://github.com/fabiangreffrath/crispy-doom/issues/132>. dobin src/crispy-doom dobin src/crispy-setup dobin src/crispy-server @@ -36,23 +37,14 @@ src_install() { 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 "To play the original Doom levels, place doom.wad and/or doom2.wad" + einfo "into ${GAMES_DATADIR}/doom-data, then run: ${PN}" + einfo + einfo "To configure game options run: crispy-setup" einfo } |