diff options
author | Alexey Sokolov <alexey+gentoo@asokolov.org> | 2021-08-31 10:11:52 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-08-31 10:11:52 +0200 |
commit | 9f145ea15cb30f7ce44772895cc03da3aa0c089b (patch) | |
tree | b96a8aff1a59a61e97ebf04c58f92994fbea849e /games-arcade/fishsupper/fishsupper-0.1.6-r3.ebuild | |
parent | dev-python/alembic: Bump to 1.7.1 (diff) | |
download | gentoo-9f145ea15cb30f7ce44772895cc03da3aa0c089b.tar.gz gentoo-9f145ea15cb30f7ce44772895cc03da3aa0c089b.tar.bz2 gentoo-9f145ea15cb30f7ce44772895cc03da3aa0c089b.zip |
games-arcade/fishsupper: fix build, bump EAPI
Closes: https://github.com/gentoo/gentoo/pull/22160
Closes: https://bugs.gentoo.org/739090
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'games-arcade/fishsupper/fishsupper-0.1.6-r3.ebuild')
-rw-r--r-- | games-arcade/fishsupper/fishsupper-0.1.6-r3.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/games-arcade/fishsupper/fishsupper-0.1.6-r3.ebuild b/games-arcade/fishsupper/fishsupper-0.1.6-r3.ebuild new file mode 100644 index 000000000000..09a8ec5b5f2a --- /dev/null +++ b/games-arcade/fishsupper/fishsupper-0.1.6-r3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools desktop + +DESCRIPTION="A simple arcade/puzzle game, loosely based on the retro classic Frogger" +HOMEPAGE="https://sourceforge.net/projects/fishsupper/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="CC-BY-SA-2.5 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + media-libs/libsdl[joystick,sound,video,opengl,X] + media-libs/sdl-image[png] + media-libs/sdl-mixer[wav] + virtual/opengl +" +DEPEND="${RDEPEND} + dev-libs/boost +" + +PATCHES=( + "${FILESDIR}"/${P}-ovflfix.patch + "${FILESDIR}"/${P}-asneeded.patch + "${FILESDIR}"/${P}-gcc6.patch + "${FILESDIR}"/${P}-int16.patch +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + + newicon data/images/fs_sprite_042.png ${PN}.png + make_desktop_entry ${PN} "Fish Supper" +} |