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-util/xgamer | |
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-util/xgamer')
-rw-r--r-- | games-util/xgamer/Manifest | 1 | ||||
-rw-r--r-- | games-util/xgamer/files/xgamer-0.6.2-desktopfile.patch | 10 | ||||
-rw-r--r-- | games-util/xgamer/metadata.xml | 8 | ||||
-rw-r--r-- | games-util/xgamer/xgamer-0.6.2.ebuild | 38 |
4 files changed, 57 insertions, 0 deletions
diff --git a/games-util/xgamer/Manifest b/games-util/xgamer/Manifest new file mode 100644 index 000000000000..0ee0841116e9 --- /dev/null +++ b/games-util/xgamer/Manifest @@ -0,0 +1 @@ +DIST xgamer-0.6.2.tar.gz 43222 SHA256 2fdf43166e2dc7806788fe0d3e3ab95581c0e6d1074dae1794960dbf8c494f08 SHA512 caffebe5d4f07f532366e3a5f6ff717251f254d012bb5c33c431538720a2fa301ab8b9cf277771659655cac6fbe2734534146c224ef881486f7dfc51ac992315 WHIRLPOOL 8d0d2a7d392d7f63a3a2a6465fecdedcf18abd1abfbbb14db040ba30177cd612aca152d281c6c23160bbd7434b15e00b0ebc40c0f13d8f9621775a0d3003dfd5 diff --git a/games-util/xgamer/files/xgamer-0.6.2-desktopfile.patch b/games-util/xgamer/files/xgamer-0.6.2-desktopfile.patch new file mode 100644 index 000000000000..3639de18e5e1 --- /dev/null +++ b/games-util/xgamer/files/xgamer-0.6.2-desktopfile.patch @@ -0,0 +1,10 @@ +--- xgamer/share/applications/xgamer.desktop ++++ xgamer/share/applications/xgamer.desktop +@@ -5,6 +5,6 @@ + Icon=xgamer + StartupNotify=true + Terminal=false +-Categories=GTK;Game ++Categories=GTK;Game; + Name=XGamer + Comment=X Game Launcher diff --git a/games-util/xgamer/metadata.xml b/games-util/xgamer/metadata.xml new file mode 100644 index 000000000000..35bd0d7c0969 --- /dev/null +++ b/games-util/xgamer/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="google-code">xgamer</remote-id> + </upstream> +</pkgmetadata> diff --git a/games-util/xgamer/xgamer-0.6.2.ebuild b/games-util/xgamer/xgamer-0.6.2.ebuild new file mode 100644 index 000000000000..08b155cb47e7 --- /dev/null +++ b/games-util/xgamer/xgamer-0.6.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit perl-module + +DESCRIPTION="A launcher for starting games in a second X session" +HOMEPAGE="http://code.google.com/p/xgamer/" +SRC_URI="http://xgamer.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="" + +RDEPEND=">=dev-lang/perl-5.10 + >=x11-libs/gtk+-2.18:2 + >=dev-perl/gtk2-perl-1.120 + virtual/perl-File-Path + virtual/perl-File-Spec + virtual/perl-File-Temp + dev-perl/File-BaseDir + dev-perl/XML-Twig + dev-perl/glib-perl + x11-misc/numlockx + media-gfx/feh" +DEPEND="${RDEPEND} + dev-perl/Module-Build" + +S=${WORKDIR}/${PN} + +PATCHES=( "${FILESDIR}"/${P}-desktopfile.patch ) + +pkg_postinst() { + elog "optional dependencies:" + elog " x11-wm/openbox (integrates well)" +} |