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 069B91382C5 for ; Tue, 24 Apr 2018 19:26:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19A63E0918; Tue, 24 Apr 2018 19:26:45 +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 EF672E0918 for ; Tue, 24 Apr 2018 19:26:44 +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 22674335C60 for ; Tue, 24 Apr 2018 19:26:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FF7B298 for ; Tue, 24 Apr 2018 19:26:42 +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: <1524597966.c526a7fabac93bef392a9eb8f5b5ebad678e3484.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/solarwolf/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/solarwolf/solarwolf-1.5-r1.ebuild X-VCS-Directories: games-arcade/solarwolf/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c526a7fabac93bef392a9eb8f5b5ebad678e3484 X-VCS-Branch: master Date: Tue, 24 Apr 2018 19:26:42 +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: e12566e1-46f7-41f7-bd7c-e6f9fbf55381 X-Archives-Hash: 6bf7d8161f171ab511df8d5981d7cd48 commit: c526a7fabac93bef392a9eb8f5b5ebad678e3484 Author: Pacho Ramos gentoo org> AuthorDate: Tue Apr 24 18:05:58 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Apr 24 19:26:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c526a7fa games-arcade/solarwolf: Stop using games.eclass, fix doman call (#619948) Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-arcade/solarwolf/solarwolf-1.5-r1.ebuild | 36 ++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild new file mode 100644 index 00000000000..dc3d846b8b7 --- /dev/null +++ b/games-arcade/solarwolf/solarwolf-1.5-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils + +DESCRIPTION="Action/arcade recreation of SolarFox" +HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/" +SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~x86" +IUSE="" + +RDEPEND=" + >=dev-python/pygame-1.5.6 + media-libs/sdl-mixer[mod,vorbis] +" +DEPEND="" + +src_prepare() { + default + find . -name .xvpics -print0 | xargs -0 rm -fr + gunzip dist/${PN}.6.gz || die #619948 +} + +src_install() { + insinto /usr/share/${PN} + doins -r code data *py + make_wrapper ${PN} "python2 ./solarwolf.py" /usr/share/${PN} + doicon dist/${PN}.png + make_desktop_entry ${PN} SolarWolf + einstalldocs + doman dist/${PN}.6 +}