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 327DC1382C5 for ; Sun, 22 Apr 2018 09:22:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DED7E08EF; Sun, 22 Apr 2018 09:22:31 +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 3F090E08EF for ; Sun, 22 Apr 2018 09:22:31 +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 5A8D3335C75 for ; Sun, 22 Apr 2018 09:22:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 396D227C for ; Sun, 22 Apr 2018 09:22:27 +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: <1524388437.a698fd284b0e253d68032d48ddb83b70b4adb91a.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/late/files/, games-arcade/late/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/late/files/late-0.1.0-gcc43.patch games-arcade/late/late-0.1.0-r1.ebuild X-VCS-Directories: games-arcade/late/files/ games-arcade/late/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: a698fd284b0e253d68032d48ddb83b70b4adb91a X-VCS-Branch: master Date: Sun, 22 Apr 2018 09:22:27 +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: 1d767d99-153e-43cf-9b8c-8c1489ae0196 X-Archives-Hash: 2894a53b569bd853826da072af3aa762 commit: a698fd284b0e253d68032d48ddb83b70b4adb91a Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 22 09:13:57 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 22 09:13:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a698fd28 games-arcade/late: Stop using games.eclass Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-arcade/late/files/late-0.1.0-gcc43.patch | 4 +-- games-arcade/late/late-0.1.0-r1.ebuild | 35 ++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/games-arcade/late/files/late-0.1.0-gcc43.patch b/games-arcade/late/files/late-0.1.0-gcc43.patch index bce26464cf0..8cfead22a27 100644 --- a/games-arcade/late/files/late-0.1.0-gcc43.patch +++ b/games-arcade/late/files/late-0.1.0-gcc43.patch @@ -1,5 +1,5 @@ ---- src/init.cpp -+++ src/init.cpp +--- a/src/init.cpp ++++ b/src/init.cpp @@ -26,6 +26,8 @@ #include "scorescreen.h" #include diff --git a/games-arcade/late/late-0.1.0-r1.ebuild b/games-arcade/late/late-0.1.0-r1.ebuild new file mode 100644 index 00000000000..dd837c5f622 --- /dev/null +++ b/games-arcade/late/late-0.1.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop + +DESCRIPTION="A game, similar to Barrack by Ambrosia Software" +HOMEPAGE="http://late.sourceforge.net/" +SRC_URI="mirror://sourceforge/late/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libsdl[video] + media-libs/sdl-image[jpeg]" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eapply \ + "${FILESDIR}"/${P}-gcc43.patch \ + "${FILESDIR}"/${P}-gcc46.patch + sed -i \ + -e "/chown/d" \ + Makefile.in \ + || die "sed failed" +} + +src_install () { + default + newicon graphics/latebg2.jpg ${PN}.jpg + make_desktop_entry late Late /usr/share/pixmaps/${PN}.jpg +}