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-emulation/hugo | |
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-emulation/hugo')
-rw-r--r-- | games-emulation/hugo/Manifest | 1 | ||||
-rw-r--r-- | games-emulation/hugo/files/hugo-2.12-gcc41.patch | 11 | ||||
-rw-r--r-- | games-emulation/hugo/hugo-2.12.ebuild | 36 | ||||
-rw-r--r-- | games-emulation/hugo/metadata.xml | 5 |
4 files changed, 53 insertions, 0 deletions
diff --git a/games-emulation/hugo/Manifest b/games-emulation/hugo/Manifest new file mode 100644 index 000000000000..067cbb958858 --- /dev/null +++ b/games-emulation/hugo/Manifest @@ -0,0 +1 @@ +DIST hugo-2.12.tar.gz 456991 SHA256 0bc1d0a6c7d8a0906c25611cbc9fb391afb59770c0cd71a7329b1338c1821b8e SHA512 38342e6e7a130caeac711de4f72138a5159c2a34e443ce5e16bcb7ac02fbefd085fa5c48583550d8089bfe3528785853df1863e7d1b32652a7f88300ad09d21d WHIRLPOOL c2e2881ecd267f95c60b5af2419fbd5172120795233fafa87b34f1219c67fcb676df9c74c83e29b905b45fbeb7f0bae95b4c85174229f9450f2cbba34815aac7 diff --git a/games-emulation/hugo/files/hugo-2.12-gcc41.patch b/games-emulation/hugo/files/hugo-2.12-gcc41.patch new file mode 100644 index 000000000000..14050cc79f16 --- /dev/null +++ b/games-emulation/hugo/files/hugo-2.12-gcc41.patch @@ -0,0 +1,11 @@ +--- pce.h.old 2006-05-02 20:06:13.000000000 +0200 ++++ pce.h 2006-05-02 20:06:33.000000000 +0200 +@@ -196,7 +196,7 @@ + extern UChar language; + // the current language + +-extern int BaseClock, UPeriod; ++extern int UPeriod; + + extern UChar US_encoded_card; + // Do we have to swap even and odd bytes in the rom diff --git a/games-emulation/hugo/hugo-2.12.ebuild b/games-emulation/hugo/hugo-2.12.ebuild new file mode 100644 index 000000000000..744133d73116 --- /dev/null +++ b/games-emulation/hugo/hugo-2.12.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils flag-o-matic games + +DESCRIPTION="PC-Engine (Turbografx16) emulator for linux" +HOMEPAGE="http://www.zeograd.com/" +SRC_URI="http://www.zeograd.com/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + media-libs/libsdl[video] + media-libs/libvorbis" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}/${P}"-gcc41.patch + append-cppflags $(pkg-config sdl --cflags) + +} + +src_install() { + dogamesbin hugo + insinto "${GAMES_DATADIR}/${PN}" + doins -r pixmaps + dodoc AUTHORS ChangeLog NEWS README TODO + dohtml doc/*html + prepgamesdirs +} diff --git a/games-emulation/hugo/metadata.xml b/games-emulation/hugo/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-emulation/hugo/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> |