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-puzzle/arrows | |
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-puzzle/arrows')
-rw-r--r-- | games-puzzle/arrows/Manifest | 1 | ||||
-rw-r--r-- | games-puzzle/arrows/arrows-0.6.ebuild | 48 | ||||
-rw-r--r-- | games-puzzle/arrows/metadata.xml | 5 |
3 files changed, 54 insertions, 0 deletions
diff --git a/games-puzzle/arrows/Manifest b/games-puzzle/arrows/Manifest new file mode 100644 index 000000000000..85e6ab2cdbc5 --- /dev/null +++ b/games-puzzle/arrows/Manifest @@ -0,0 +1 @@ +DIST arrows-0.6.tar.gz 53374 SHA256 a8d18e1798d23c26e4d0330db745356d01cc4a3231b669643e08e426eb842d3f SHA512 f6c55d616283ad25d9d830440deaa11de81bccfc2d8eabe627104626ea111d986e522f73d61e5aed58476cc34a3e2b3fe2a20ab1538b7ecef04ecb941f34d83e WHIRLPOOL 0b4ed8bff7d64c4001e6a1f122ddb3ffeed47c4595fb7bd8604c0648b23fd687653862009b2f8439ec667aeeb7232f9f1de2211a7da3edc1de6ed34b059bf03f diff --git a/games-puzzle/arrows/arrows-0.6.ebuild b/games-puzzle/arrows/arrows-0.6.ebuild new file mode 100644 index 000000000000..f89271c52fa4 --- /dev/null +++ b/games-puzzle/arrows/arrows-0.6.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit games + +DESCRIPTION="simple maze-like game where you navigate around and destroy arrows" +HOMEPAGE="http://noreason.ca/?file=software" +SRC_URI="http://noreason.ca/data/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2.4:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + # Modify path to data + sed -i \ + -e "s:arrfl:${GAMES_DATADIR}/${PN}/arrfl:" \ + -e 's:nm\[9:nm[35:' \ + -e 's:nm\[6:nm[30:' \ + -e 's:nm\[7:nm[31:' \ + game.c \ + || die 'sed failed' + sed -i \ + -e '/^CC /d' \ + -e '/CCLIBS/s:$: $(LDFLAGS):' \ + Makefile \ + || die 'sed failed' +} + +src_compile() { + make clean || die "make clean failed" + emake CCOPTS="${CFLAGS}" +} + +src_install() { + dogamesbin arrows + insinto "${GAMES_DATADIR}/${PN}" + doins arrfl* + dodoc README + prepgamesdirs +} diff --git a/games-puzzle/arrows/metadata.xml b/games-puzzle/arrows/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-puzzle/arrows/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> |