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 C6A111382C5 for ; Fri, 4 Jun 2021 00:16:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09F8FE0863; Fri, 4 Jun 2021 00:16:43 +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 A1B50E0869 for ; Fri, 4 Jun 2021 00:16:42 +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 2A668340BBD for ; Fri, 4 Jun 2021 00:16:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4530C79F for ; Fri, 4 Jun 2021 00:16:39 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1622765709.4901013b1c91d3ce3815751eb9f7a664f16f2751.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/excido/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/excido/excido-0.1.5c-r3.ebuild games-arcade/excido/excido-0.1.5c-r4.ebuild X-VCS-Directories: games-arcade/excido/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 4901013b1c91d3ce3815751eb9f7a664f16f2751 X-VCS-Branch: master Date: Fri, 4 Jun 2021 00:16:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8b6b7719-afac-44ef-98e4-9768e7b83d23 X-Archives-Hash: 0a49d4ef1abd5ea0c27ac9feb3879a24 commit: 4901013b1c91d3ce3815751eb9f7a664f16f2751 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Jun 3 23:32:20 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Jun 4 00:15:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4901013b games-arcade/excido: fix direct c++, add desktop file Plus small style perference changes. Signed-off-by: Ionen Wolkens gentoo.org> ...do-0.1.5c-r3.ebuild => excido-0.1.5c-r4.ebuild} | 23 +++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/games-arcade/excido/excido-0.1.5c-r3.ebuild b/games-arcade/excido/excido-0.1.5c-r4.ebuild similarity index 70% rename from games-arcade/excido/excido-0.1.5c-r3.ebuild rename to games-arcade/excido/excido-0.1.5c-r4.ebuild index 92458fcc17d..6dd28616563 100644 --- a/games-arcade/excido/excido-0.1.5c-r3.ebuild +++ b/games-arcade/excido/excido-0.1.5c-r4.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit desktop toolchain-funcs + DESCRIPTION="Fast paced action game" HOMEPAGE="https://icculus.org/excido/" SRC_URI="https://icculus.org/excido/${P}-src.tar.bz2" @@ -11,13 +13,14 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="dev-games/physfs +DEPEND=" + dev-games/physfs + media-libs/freealut media-libs/libsdl[opengl] - media-libs/sdl-mixer - media-libs/sdl-ttf - media-libs/sdl-image[png] media-libs/openal - media-libs/freealut" + media-libs/sdl-image[png] + media-libs/sdl-mixer + media-libs/sdl-ttf" RDEPEND="${DEPEND}" PATCHES=( @@ -26,13 +29,19 @@ PATCHES=( ) src_compile() { + tc-export CXX + emake DATADIR=/usr/share/${PN}/ } src_install() { dobin ${PN} + insinto /usr/share/${PN} - doins data/* + doins -r data/. + dodoc BUGS CHANGELOG HACKING README TODO \ - keyguide.txt data/CREDITS data/*.txt + data/{CREDITS,readme-jf-nebula_sky.txt} keyguide.txt + + make_desktop_entry ${PN} Excido applications-games "Game;ArcadeGame" }