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 D8ABA138351 for ; Sat, 29 Feb 2020 13:05:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAC1FE088C; Sat, 29 Feb 2020 13:04:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C7EC5E088C for ; Sat, 29 Feb 2020 13:04:59 +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 A741034F1EA for ; Sat, 29 Feb 2020 13:04:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B306A158 for ; Sat, 29 Feb 2020 13:04:56 +0000 (UTC) From: "Azamat H. Hackimov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azamat H. Hackimov" Message-ID: <1582973078.844c04d8878bfc91dd3694328343eaa8ddbbaddc.winterheart@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-puzzle/cubosphere/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-puzzle/cubosphere/cubosphere-0.3.ebuild games-puzzle/cubosphere/cubosphere-0.3a.ebuild games-puzzle/cubosphere/metadata.xml X-VCS-Directories: games-puzzle/cubosphere/ X-VCS-Committer: winterheart X-VCS-Committer-Name: Azamat H. Hackimov X-VCS-Revision: 844c04d8878bfc91dd3694328343eaa8ddbbaddc X-VCS-Branch: master Date: Sat, 29 Feb 2020 13:04:56 +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: f5e8aba5-19ac-40b2-b36f-b8b81f7536bc X-Archives-Hash: d686b46d577cf720da0e4429d186090a commit: 844c04d8878bfc91dd3694328343eaa8ddbbaddc Author: Azamat H. Hackimov gmail com> AuthorDate: Sat Feb 29 10:44:38 2020 +0000 Commit: Azamat H. Hackimov gentoo ru> CommitDate: Sat Feb 29 10:44:38 2020 +0000 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=844c04d8 games-puzzle/cubosphere: update package Migrage from deprecated eclass. Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Azamat H. Hackimov gmail.com> ...{cubosphere-0.3.ebuild => cubosphere-0.3a.ebuild} | 20 ++++++++++---------- games-puzzle/cubosphere/metadata.xml | 6 ++++++ 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/games-puzzle/cubosphere/cubosphere-0.3.ebuild b/games-puzzle/cubosphere/cubosphere-0.3a.ebuild similarity index 56% rename from games-puzzle/cubosphere/cubosphere-0.3.ebuild rename to games-puzzle/cubosphere/cubosphere-0.3a.ebuild index 1384b66..da7ac6f 100644 --- a/games-puzzle/cubosphere/cubosphere-0.3.ebuild +++ b/games-puzzle/cubosphere/cubosphere-0.3a.ebuild @@ -1,37 +1,37 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# $Header: games-puzzle/cubosphere/cubosphere.ebuild frostwork Exp $ -EAPI="3" +EAPI=7 -inherit eutils games flag-o-matic +#inherit eutils DESCRIPTION="game similar to the PSX game Kula World / Roll Away" HOMEPAGE="http://cubosphere.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_beta${PV}_linux_src.tar.gz" +SRC_URI="https://download.sourceforge.net/${PN}/${PN}_beta${PV}_linux_src.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="dev-lang/lua +DEPEND="dev-lang/lua:0 virtual/jpeg media-libs/libsdl media-libs/sdl-mixer media-libs/sdl-ttf - media-libs/glew + media-libs/glew:0 virtual/opengl virtual/glu" +RDEPEND="${DEPEND}" S="${WORKDIR}"/"${PN}"_beta"${PV}"/src src_prepare() { - cd "${S}" + default # respect ${GAMES_DATADIR} sed -i -e "s:llua5.1:llua:g" -i Makefile sed -i -e "s:PREFIX=/usr/local":PREFIX=/usr":g" -i Makefile - sed -i -e "s:BINDIR=\$(PREFIX)/bin:BINDIR=\$(PREFIX)/games/bin:g" -i Makefile - sed -i -e "s:DATADIR=\$(PREFIX)/share/cubosphere:DATADIR="${GAMES_DATADIR}"/"${PN}":g" -i Makefile +# sed -i -e "s:BINDIR=\$(PREFIX)/bin:BINDIR=\$(PREFIX)/games/bin:g" -i Makefile +# sed -i -e "s:DATADIR=\$(PREFIX)/share/cubosphere:DATADIR="${GAMES_DATADIR}"/"${PN}":g" -i Makefile sed -i -e "s:install\: all:install\::g" -i Makefile } diff --git a/games-puzzle/cubosphere/metadata.xml b/games-puzzle/cubosphere/metadata.xml new file mode 100644 index 0000000..f3b74e3 --- /dev/null +++ b/games-puzzle/cubosphere/metadata.xml @@ -0,0 +1,6 @@ + + + + + +