summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-14 23:23:22 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-14 23:38:49 +0200
commitcc984d5d917a8a74e87c5d05302606b32a53be2d (patch)
tree1444ea3c3993f23f75bf333cdda3a310db08500f /games-puzzle/amoebax
parentgames-puzzle/pingus: Drop old (diff)
downloadgentoo-cc984d5d917a8a74e87c5d05302606b32a53be2d.tar.gz
gentoo-cc984d5d917a8a74e87c5d05302606b32a53be2d.tar.bz2
gentoo-cc984d5d917a8a74e87c5d05302606b32a53be2d.zip
games-puzzle/amoebax: Stop using games.eclass
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/amoebax')
-rw-r--r--games-puzzle/amoebax/amoebax-0.2.1-r1.ebuild40
1 files changed, 40 insertions, 0 deletions
diff --git a/games-puzzle/amoebax/amoebax-0.2.1-r1.ebuild b/games-puzzle/amoebax/amoebax-0.2.1-r1.ebuild
new file mode 100644
index 000000000000..316d438bcddd
--- /dev/null
+++ b/games-puzzle/amoebax/amoebax-0.2.1-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="A cute and addictive action-puzzle game, similar to tetris"
+HOMEPAGE="http://www.emma-soft.com/games/amoebax/"
+SRC_URI="http://www.emma-soft.com/games/amoebax/download/${P}.tar.bz2"
+
+LICENSE="FreeArt GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="media-libs/libsdl[sound,joystick,video]
+ media-libs/sdl-image[png]
+ media-libs/sdl-mixer[vorbis]"
+RDEPEND=${DEPEND}
+
+src_prepare() {
+ default
+
+ eapply \
+ "${FILESDIR}"/${P}-aclocal.patch \
+ "${FILESDIR}"/${P}-compile.patch
+
+ sed -i \
+ -e "/^SUBDIRS/s:doc ::" \
+ Makefile.am || die
+ sed -i \
+ -e "/^iconsdir/s:=.*:=/usr/share/pixmaps:" \
+ -e "/^desktopdir/s:=.*:=/usr/share/applications:" \
+ data/Makefile.am || die
+ sed -i \
+ -e '/Encoding/d' \
+ -e '/Icon/s/.svg//' \
+ data/amoebax.desktop || die
+ AT_M4DIR=m4 eautoreconf
+}