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 9CE871382C5 for ; Sun, 15 Apr 2018 09:23:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF4F1E080E; Sun, 15 Apr 2018 09:23:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B538DE080E for ; Sun, 15 Apr 2018 09:23:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5B879335C8F for ; Sun, 15 Apr 2018 09:23:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DF7B257 for ; Sun, 15 Apr 2018 09:23:12 +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: <1523784186.aa41b79e70a9ace9009185cb5efc3bf9b59c7d06.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/balloonchase/files/, games-arcade/balloonchase/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild games-arcade/balloonchase/files/0.9.6-gentoo.patch X-VCS-Directories: games-arcade/balloonchase/files/ games-arcade/balloonchase/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: aa41b79e70a9ace9009185cb5efc3bf9b59c7d06 X-VCS-Branch: master Date: Sun, 15 Apr 2018 09:23:12 +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: 681c8c35-0254-472e-b40c-ecff2fb4fedd X-Archives-Hash: bf073bd09311923b7ba71cdd6edf9b09 commit: aa41b79e70a9ace9009185cb5efc3bf9b59c7d06 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 15 09:19:26 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 15 09:23:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa41b79e games-arcade/balloonchase: Stop using games.eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../balloonchase/balloonchase-0.9.6-r1.ebuild | 34 ++++++++++++++++++++++ games-arcade/balloonchase/files/0.9.6-gentoo.patch | 8 ++--- 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild b/games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild new file mode 100644 index 00000000000..36976cc63a4 --- /dev/null +++ b/games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop toolchain-funcs + +DESCRIPTION="Fly a hot air balloon and try to blow the other player out of the screen" +HOMEPAGE="http://makegho.mbnet.fi/c/bchase/" +SRC_URI="http://makegho.mbnet.fi/c/bchase/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libsdl[video]" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eapply "${FILESDIR}"/${PV}-gentoo.patch + sed -i "s:g++:$(tc-getCXX):" Makefile || die + sed -i \ + -e "s:GENTOODIR:/usr/share/${PN}:" src/main.c || die +} + +src_install() { + dobin ${PN} + insinto /usr/share/${PN} + doins -r images + newicon images/kp2b.bmp ${PN}.bmp + make_desktop_entry ${PN} "Balloon Chase" /usr/share/pixmaps/${PN}.bmp + einstalldocs +} diff --git a/games-arcade/balloonchase/files/0.9.6-gentoo.patch b/games-arcade/balloonchase/files/0.9.6-gentoo.patch index 55e978850bb..ff232693422 100644 --- a/games-arcade/balloonchase/files/0.9.6-gentoo.patch +++ b/games-arcade/balloonchase/files/0.9.6-gentoo.patch @@ -1,5 +1,5 @@ ---- Makefile -+++ Makefile +--- a/Makefile ++++ b/Makefile @@ -1,4 +1,3 @@ -LDFLAGS= -lSDL -lpthread -s CFLAGS= -Wall # -DDEBUG @@ -16,8 +16,8 @@ pkg: @echo $(PKG_BCVERSION) >VERSION rm balloonchase src/*.o ---- src/main.c -+++ src/main.c +--- a/src/main.c ++++ b/src/main.c @@ -333,47 +333,47 @@ int InitImages()