diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 20:17:55 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 21:26:12 +0200 |
commit | c4fe990919efd392a6e34b8534e0780e4b823505 (patch) | |
tree | f254369892055f4a9733fbc2fa66585bcf458323 /games-arcade/spout | |
parent | games-arcade/spacerider: Drop old (diff) | |
download | gentoo-c4fe990919efd392a6e34b8534e0780e4b823505.tar.gz gentoo-c4fe990919efd392a6e34b8534e0780e4b823505.tar.bz2 gentoo-c4fe990919efd392a6e34b8534e0780e4b823505.zip |
games-arcade/spout: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade/spout')
-rw-r--r-- | games-arcade/spout/spout-1.3-r1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/games-arcade/spout/spout-1.3-r1.ebuild b/games-arcade/spout/spout-1.3-r1.ebuild new file mode 100644 index 000000000000..b9ba1a3b7a60 --- /dev/null +++ b/games-arcade/spout/spout-1.3-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop readme.gentoo-r1 + +MY_P="spout-unix-${PV}" +DESCRIPTION="Abstract Japanese caveflier / shooter" +HOMEPAGE="http://freshmeat.net/projects/spout/" +SRC_URI="http://rohanpm.net/files/old/${MY_P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND=">=media-libs/libsdl-1.2.6" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS=" +To play in fullscreen mode, do 'spout f'. +To play in a greater resolution, do 'spout x', where +x is an integer; the larger x is, the higher the resolution. + +To play: +* Accelerate - spacebar, enter, z, x +* Pause - escape +* Exit - shift+escape +* Rotate - left or right +" + +src_install() { + dobin spout + doicon spout.png + make_desktop_entry spout "Spout" + einstalldocs + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} |