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/solarwolf | |
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/solarwolf')
-rw-r--r-- | games-arcade/solarwolf/Manifest | 1 | ||||
-rw-r--r-- | games-arcade/solarwolf/metadata.xml | 5 | ||||
-rw-r--r-- | games-arcade/solarwolf/solarwolf-1.5.ebuild | 33 |
3 files changed, 39 insertions, 0 deletions
diff --git a/games-arcade/solarwolf/Manifest b/games-arcade/solarwolf/Manifest new file mode 100644 index 000000000000..fbbc94d703d3 --- /dev/null +++ b/games-arcade/solarwolf/Manifest @@ -0,0 +1 @@ +DIST solarwolf-1.5.tar.gz 2045888 SHA256 bd261c17e9aad6ab18925d74bbdeaf8e57d24e707c96f7073386561d8ebd219f SHA512 44d84976f7797e3b859f1e5e50f9f964e5c6d6d4437ad25cf04720035e8697cc0c86490fdbbf8d923320a5c15c6e3afd1fbcfb9f17e7e31ce6f7264004e991f2 WHIRLPOOL acd9ce878c121a2f138023b9903c3a7d480c471bb6830dca547d3685f26b173d668c51805298549d9e99b6e7dbfc9eda429f256d077e0aa6f690f875892f31af diff --git a/games-arcade/solarwolf/metadata.xml b/games-arcade/solarwolf/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-arcade/solarwolf/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> diff --git a/games-arcade/solarwolf/solarwolf-1.5.ebuild b/games-arcade/solarwolf/solarwolf-1.5.ebuild new file mode 100644 index 000000000000..9b44ade89743 --- /dev/null +++ b/games-arcade/solarwolf/solarwolf-1.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils games + +DESCRIPTION="action/arcade recreation of SolarFox" +HOMEPAGE="http://www.pygame.org/shredwheat/solarwolf/" +SRC_URI="http://www.pygame.org/shredwheat/solarwolf/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha amd64 hppa ppc ~sparc x86" +IUSE="" + +RDEPEND=">=dev-python/pygame-1.5.6 + media-libs/sdl-mixer[mod,vorbis]" + +src_prepare() { + find . -name .xvpics -print0 | xargs -0 rm -fr +} + +src_install() { + insinto "$(games_get_libdir)"/${PN} + doins -r code data *py + games_make_wrapper ${PN} "python2 ./solarwolf.py" "$(games_get_libdir)"/${PN} + doicon dist/${PN}.png + make_desktop_entry ${PN} SolarWolf + dodoc readme.txt + doman dist/${PN}.6.gz + prepgamesdirs +} |