From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E7C41382C5 for ; Sat, 14 Apr 2018 21:39:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFC0BE07BA; Sat, 14 Apr 2018 21:39:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94B8CE07BA for ; Sat, 14 Apr 2018 21:39:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C85FC335C77 for ; Sat, 14 Apr 2018 21:39:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58C3F288 for ; Sat, 14 Apr 2018 21:39:01 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1523741929.cc984d5d917a8a74e87c5d05302606b32a53be2d.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/amoebax/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-puzzle/amoebax/amoebax-0.2.1-r1.ebuild X-VCS-Directories: games-puzzle/amoebax/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: cc984d5d917a8a74e87c5d05302606b32a53be2d X-VCS-Branch: master Date: Sat, 14 Apr 2018 21:39:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cafa7dda-4c66-4804-87b5-ce9729ca656b X-Archives-Hash: 16eee9af663c16a4185f0aef394c5837 commit: cc984d5d917a8a74e87c5d05302606b32a53be2d Author: Pacho Ramos gentoo org> AuthorDate: Sat Apr 14 21:23:22 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Apr 14 21:38:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc984d5d games-puzzle/amoebax: Stop using games.eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 games-puzzle/amoebax/amoebax-0.2.1-r1.ebuild | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) 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 00000000000..316d438bcdd --- /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 +}