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-action/transcend | |
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-action/transcend')
-rw-r--r-- | games-action/transcend/Manifest | 1 | ||||
-rw-r--r-- | games-action/transcend/metadata.xml | 8 | ||||
-rw-r--r-- | games-action/transcend/transcend-0.3.ebuild | 64 |
3 files changed, 73 insertions, 0 deletions
diff --git a/games-action/transcend/Manifest b/games-action/transcend/Manifest new file mode 100644 index 000000000000..de463a1d9975 --- /dev/null +++ b/games-action/transcend/Manifest @@ -0,0 +1 @@ +DIST Transcend_0.3_UnixSource.tar.gz 1847261 SHA256 46dae7cbd1b95c6865a664022ca804c462f1731c974882a527e43810e99fcd40 SHA512 5a2d21256c202ee045f8e2c926705f79885f6efbb5f44d3129e5b05cb1e28f909a32a5d873a9673d5fa48cbe4e79766c44947f147089e988e2fa3f83cde1b91d WHIRLPOOL 92c4ac48d5d6b8104fd4a975ed4f13a375296ce1227515e634f36f0fbf3bd7d446620c11f8662a9c24c123156fddcb40c007af988535da5bc27ca2ecbbcdc525 diff --git a/games-action/transcend/metadata.xml b/games-action/transcend/metadata.xml new file mode 100644 index 000000000000..d73d354bd0db --- /dev/null +++ b/games-action/transcend/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>games</herd> + <upstream> + <remote-id type="sourceforge">transcend</remote-id> + </upstream> +</pkgmetadata> diff --git a/games-action/transcend/transcend-0.3.ebuild b/games-action/transcend/transcend-0.3.ebuild new file mode 100644 index 000000000000..826b88f04974 --- /dev/null +++ b/games-action/transcend/transcend-0.3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit games + +DESCRIPTION="retro-style, abstract, 2D shooter" +HOMEPAGE="http://transcend.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/Transcend_${PV}_UnixSource.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="" + +DEPEND="x11-libs/libXmu + x11-libs/libXi + virtual/opengl + virtual/glu + media-libs/freeglut" +RDEPEND=${DEPEND} + +S=${WORKDIR}/Transcend_${PV}_UnixSource/Transcend + +src_prepare() { + chmod a+x portaudio/configure + mkdir portaudio/{lib,bin} + rm -f game/Makefile + sed \ + -e '/^GXX=/d' \ + -e 's/GXX/CXX/' \ + -e '/^COMPILE_FLAGS =/ s/OPTIMIZE_FLAG/CXXFLAGS/' \ + -e '/^EXE_LINK =/ s/LINK_FLAGS/LDFLAGS/' \ + Makefile.GnuLinuxX86 \ + Makefile.common \ + Makefile.minorGems \ + game/Makefile.all \ + Makefile.minorGems_targets \ + > game/Makefile || die + sed -i \ + -e "s:\"levels\":\"${GAMES_DATADIR}/${PN}/levels\":" \ + game/LevelDirectoryManager.cpp \ + game/game.cpp || die +} + +src_configure() { + cd portaudio + egamesconf +} + +src_compile() { + emake -C portaudio lib/libportaudio.a + emake -C game + cp game/Transcend ${PN} || die +} + +src_install() { + dogamesbin ${PN} + insinto "${GAMES_DATADIR}/${PN}" + doins -r levels/ + dodoc doc/{how_to_play.txt,changeLog.txt} + prepgamesdirs +} |