diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /games-arcade/nottetris2 | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'games-arcade/nottetris2')
-rw-r--r-- | games-arcade/nottetris2/Manifest | 1 | ||||
-rw-r--r-- | games-arcade/nottetris2/metadata.xml | 14 | ||||
-rw-r--r-- | games-arcade/nottetris2/nottetris2-1.ebuild | 36 |
3 files changed, 51 insertions, 0 deletions
diff --git a/games-arcade/nottetris2/Manifest b/games-arcade/nottetris2/Manifest new file mode 100644 index 000000000000..54e3a153709d --- /dev/null +++ b/games-arcade/nottetris2/Manifest @@ -0,0 +1 @@ +DIST nottetris2-1.zip 2774048 SHA256 e2b8737e1e761174bbb0cdea403a2b7558732b682f5a1e32ea3ee956192ea88c SHA512 63478640fadf91134dec86f88d6422a317b4523ececff836e40984500f2771d564012cbd587a46b300e084c3c64531f3758c648edf3d683b136c9da69924a187 WHIRLPOOL e665708a202dc83923de462f2624dfa273a7a7016e4acf253ef080aac956ded50c1973d258511434943b8f328b06bd36b69db110d4c7aed2d0aa40bf4069e714 diff --git a/games-arcade/nottetris2/metadata.xml b/games-arcade/nottetris2/metadata.xml new file mode 100644 index 000000000000..b16ee4050bb5 --- /dev/null +++ b/games-arcade/nottetris2/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>games</herd> + <longdescription lang='en'> + Not Tetris 2 is the spiritual successor of the classic Tetris + mixed with physics. The result is a fun spinoff in which blocks + are no longer bound to the usual grid. Blocks can be rotated and + placed at any angle, resulting in a complete mess if not careful. + And with the newest cutting edge technology, Not tetris 2 allows + line clears when the lines are sufficiently filled. The old mode + is still available for play and is now called Stack. + </longdescription> +</pkgmetadata> diff --git a/games-arcade/nottetris2/nottetris2-1.ebuild b/games-arcade/nottetris2/nottetris2-1.ebuild new file mode 100644 index 000000000000..1419afd49bdb --- /dev/null +++ b/games-arcade/nottetris2/nottetris2-1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils games + +DESCRIPTION="The spiritual successor of the classic Tetris mixed with physics" +HOMEPAGE="http://stabyourself.net/nottetris2/" +SRC_URI="http://stabyourself.net/dl.php?file=nottetris2/nottetris2-linux.zip -> ${P}.zip" + +LICENSE="CC-BY-NC-SA-3.0" +SLOT="0" +KEYWORDS="amd64 x86" + +LVSLOT="0.7" +RDEPEND=">=games-engines/love-0.7.2:${LVSLOT} + media-libs/devil[png]" +DEPEND="app-arch/unzip" + +S=${WORKDIR} + +src_install() { + local dir=${GAMES_DATADIR}/love/${PN} + + exeinto "${dir}" + newexe "Not Tetris 2.love" ${PN}.love + + newdoc "Not Readme.txt" README + + games_make_wrapper ${PN} "love-${LVSLOT} ${PN}.love" "${dir}" + make_desktop_entry ${PN} + + prepgamesdirs +} |