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 10E29139085 for ; Mon, 30 Jan 2017 23:09:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F75421C028; Mon, 30 Jan 2017 23:09:39 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BE8621C028 for ; Mon, 30 Jan 2017 23:09:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 414FF33FE7D for ; Mon, 30 Jan 2017 23:09:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93A983B6D for ; Mon, 30 Jan 2017 23:09:36 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1485817753.cfa71094f1e64c24742bd7ab7c4cfba88939ac78.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/spacetripper-demo/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/spacetripper-demo/spacetripper-demo-1-r1.ebuild X-VCS-Directories: games-action/spacetripper-demo/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: cfa71094f1e64c24742bd7ab7c4cfba88939ac78 X-VCS-Branch: master Date: Mon, 30 Jan 2017 23:09:36 +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: dafda819-d6bd-439e-b742-f9acc1be0e7c X-Archives-Hash: f5731e3c81d1e96776fe36a5e2ccc373 commit: cfa71094f1e64c24742bd7ab7c4cfba88939ac78 Author: Austin English gentoo org> AuthorDate: Mon Jan 30 21:55:11 2017 +0000 Commit: Austin English gentoo org> CommitDate: Mon Jan 30 23:09:13 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa71094 games-action/spacetripper-demo: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: Portage-2.3.2, Repoman-2.3.1 .../spacetripper-demo-1-r1.ebuild | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/games-action/spacetripper-demo/spacetripper-demo-1-r1.ebuild b/games-action/spacetripper-demo/spacetripper-demo-1-r1.ebuild new file mode 100644 index 00000000..e428234 --- /dev/null +++ b/games-action/spacetripper-demo/spacetripper-demo-1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils unpacker + +MY_P="spacetripperdemo" +DESCRIPTION="Hardcore arcade shoot-em-up" +HOMEPAGE="http://www.pompomgames.com/" +SRC_URI="http://www.btinternet.com/~bongpig/${MY_P}.sh" + +LICENSE="POMPOM" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" +RESTRICT="strip" + +RDEPEND=" + >=virtual/opengl-7.0-r1[abi_x86_32(-)] + >=media-libs/libsdl-1.2.15-r4[abi_x86_32(-),X,video,joystick,opengl,sound]" + +S=${WORKDIR} + +dir=/opt/${PN} +Ddir=${D}/${dir} + +QA_PREBUILT="${dir}/*" + +src_unpack() { + unpack_makeself +} + +src_install() { + exeinto "${dir}" + doexe bin/x86/* + # Remove libSDL since we use the system version and our version doesn't + # have TEXTRELs in it. + rm -f "${Ddir}"/libSDL-1.2.so.0.0.5 || die + sed -i -e "s:XYZZY:${dir}:" "${Ddir}/${MY_P}" || die + + insinto "${dir}" + doins -r preview run styles README license.txt icon.xpm + newicon icon.xpm spacetripper-demo.png + + make_wrapper spacetripper-demo ./spacetripperdemo "${dir}" "${dir}" + make_desktop_entry spacetripper-demo spacetripper-demo spacetripper-demo +}