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-mud/gnome-mud | |
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-mud/gnome-mud')
-rw-r--r-- | games-mud/gnome-mud/Manifest | 1 | ||||
-rw-r--r-- | games-mud/gnome-mud/gnome-mud-0.11.2.ebuild | 60 | ||||
-rw-r--r-- | games-mud/gnome-mud/metadata.xml | 5 |
3 files changed, 66 insertions, 0 deletions
diff --git a/games-mud/gnome-mud/Manifest b/games-mud/gnome-mud/Manifest new file mode 100644 index 000000000000..36c27533e215 --- /dev/null +++ b/games-mud/gnome-mud/Manifest @@ -0,0 +1 @@ +DIST gnome-mud-0.11.2.tar.bz2 444294 SHA256 d449e1433ab7d8b40bd4133ae6ef25b723f2d2894709094d196a10b930f52b06 SHA512 b8dd4ffa0cd5ab7077b21c908fb92b6b5c3e1fc65c06c890d8ebb4ab4fd6d1f8ac4a67d9a815634fc45f3357dd495ba329057df5662c00d2074278a16470c422 WHIRLPOOL 69c85b79000967b1ded1ac02683c9f0e895e045c5b3928de5720e222233692f59e83b6a14811c978b0893eae15b7d7fec4deccf5c2dda96f078cbda21f30bb06 diff --git a/games-mud/gnome-mud/gnome-mud-0.11.2.ebuild b/games-mud/gnome-mud/gnome-mud-0.11.2.ebuild new file mode 100644 index 000000000000..4e1a615930f5 --- /dev/null +++ b/games-mud/gnome-mud/gnome-mud-0.11.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +GCONF_DEBUG="yes" +GNOME_TARBALL_SUFFIX="bz2" + +inherit gnome2 games + +DESCRIPTION="GNOME MUD client" +HOMEPAGE="https://wiki.gnome.org/Apps/GnomeMud" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" +IUSE="gstreamer" + +RDEPEND="x11-libs/gtk+:2 + >=gnome-base/libglade-2.0.1:2.0 + gnome-base/gconf:2 + >=x11-libs/vte-0.11:0 + gstreamer? ( media-libs/gstreamer:0.10 ) + dev-perl/XML-Parser + dev-libs/libpcre + net-libs/gnet:2 + virtual/libintl" +DEPEND="${RDEPEND} + virtual/pkgconfig + >=dev-util/intltool-0.23 + >=sys-devel/gettext-0.11.5 + app-text/rarian" + +src_configure() { + gnome2_src_configure \ + --bindir="${GAMES_BINDIR}" \ + $(use_enable gstreamer) +} + +src_install() { + DOCS="AUTHORS BUGS ChangeLog NEWS PLUGIN.API README ROADMAP" \ + gnome2_src_install + prepgamesdirs +} + +pkg_preinst() { + gnome2_pkg_preinst + games_pkg_preinst +} + +pkg_postinst() { + gnome2_pkg_postinst + games_pkg_postinst + echo + elog "For proper plugin operation, please create ~/.gnome-mud/plugins/" + elog "if that directory doesn't already exist." + elog "The command to do that is:" + elog " mkdir -p ~/.gnome-mud/plugins/" + echo +} diff --git a/games-mud/gnome-mud/metadata.xml b/games-mud/gnome-mud/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-mud/gnome-mud/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> |