From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 387391381F3 for ; Tue, 7 May 2013 17:07:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5A99E096E; Tue, 7 May 2013 17:07:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3ED33E096E for ; Tue, 7 May 2013 17:07:21 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF20333DFA5 for ; Tue, 7 May 2013 17:07:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8DFCDE4DF4 for ; Tue, 7 May 2013 17:07:19 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1367946444.6bcc11dc4dc1db57dc2bd560aeb68ed110cd839d.mva@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-puzzle/closure/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-puzzle/closure/closure-1.1.ebuild games-puzzle/closure/metadata.xml X-VCS-Directories: games-puzzle/closure/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: 6bcc11dc4dc1db57dc2bd560aeb68ed110cd839d X-VCS-Branch: master Date: Tue, 7 May 2013 17:07:19 +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: 5cd48609-be57-4cd0-913c-407a76640211 X-Archives-Hash: a7693af7a8a31cb0755d9343f4b87006 commit: 6bcc11dc4dc1db57dc2bd560aeb68ed110cd839d Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Tue May 7 17:07:24 2013 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Tue May 7 17:07:24 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6bcc11dc [games-puzzle/closure] Added Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> --- games-puzzle/closure/closure-1.1.ebuild | 99 +++++++++++++++++++++++++++++++ games-puzzle/closure/metadata.xml | 12 ++++ 2 files changed, 111 insertions(+), 0 deletions(-) diff --git a/games-puzzle/closure/closure-1.1.ebuild b/games-puzzle/closure/closure-1.1.ebuild new file mode 100644 index 0000000..f7e6fa4 --- /dev/null +++ b/games-puzzle/closure/closure-1.1.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" + +inherit games unpacker-nixstaller + +TIMESTAMP="2012-12-28" +MY_PN="${PN/c/C}" + +DESCRIPTION="Play as a strange spider-like demon who explores the stories of three human characters." +HOMEPAGE="http://closuregame.com/" +SRC_URI="${MY_PN}-Linux-${PV}-${TIMESTAMP}.sh" + +RESTRICT="fetch strip" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=" + dev-libs/json-c + media-gfx/nvidia-cg-toolkit + media-libs/aalib + media-libs/alsa-lib + media-libs/flac + media-libs/freealut + media-libs/libogg + media-libs/libsdl + media-libs/libsndfile + media-libs/libvorbis + virtual/opengl + media-libs/openal + media-sound/pulseaudio + net-libs/libasyncns + sys-apps/attr + sys-apps/dbus + sys-apps/tcp-wrappers + sys-apps/util-linux + sys-devel/gcc + sys-libs/gdbm + sys-libs/glibc + sys-libs/gpm + sys-libs/libcap + sys-libs/ncurses + x11-libs/libdrm + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau + x11-libs/libxcb + x11-libs/libXdamage + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXtst + x11-libs/libXxf86vm +" + +S="${WORKDIR}" + +#QA_TEXTRELS="" + +pkg_nofetch() { + ewarn + ewarn "Place ${A} to ${DISTDIR}" + ewarn +} + +src_unpack() { + local arch=x86; + use amd64 && arch=x86_64; + + nixstaller_unpack \ + instarchive_all \ + instarchive_linux_${arch} +} + + +src_install() { + local arch=x86; + use amd64 && arch=x86_64; + + local dir="${GAMES_PREFIX_OPT}/${PN}" + insinto "${dir}" + doins -r resources + + exeinto "${dir}" + doexe "${MY_PN}.bin.${arch}" + + doicon "${MY_PN}.png" + make_desktop_entry "${PN}" "${MY_PN}" "${MY_PN}" + games_make_wrapper "${PN}" "./${MY_PN}.bin.${arch}" "${dir}" + + prepgamesdirs +} diff --git a/games-puzzle/closure/metadata.xml b/games-puzzle/closure/metadata.xml new file mode 100644 index 0000000..02d5659 --- /dev/null +++ b/games-puzzle/closure/metadata.xml @@ -0,0 +1,12 @@ + + + + +azamat.hackimov@gmail.com +Azamat H. Hackimov + + +Shatter is a retro-inspired brick-breaking game that merges familiar action with unique twists and a modern-crafted production. + + +