diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-07-26 01:27:53 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-07-26 01:27:53 +0000 |
commit | 73d61e83dd090e742259aff413ad48014aa642a0 (patch) | |
tree | 1aa4b66b2c0e6237c0b2875cdef588c80ba1b153 /games-mud/gnome-mud | |
parent | Version bump (diff) | |
download | gentoo-2-73d61e83dd090e742259aff413ad48014aa642a0.tar.gz gentoo-2-73d61e83dd090e742259aff413ad48014aa642a0.tar.bz2 gentoo-2-73d61e83dd090e742259aff413ad48014aa642a0.zip |
version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-mud/gnome-mud')
-rw-r--r-- | games-mud/gnome-mud/ChangeLog | 8 | ||||
-rw-r--r-- | games-mud/gnome-mud/gnome-mud-0.11.ebuild | 62 |
2 files changed, 69 insertions, 1 deletions
diff --git a/games-mud/gnome-mud/ChangeLog b/games-mud/gnome-mud/ChangeLog index 53f98174544c..729bc375c85e 100644 --- a/games-mud/gnome-mud/ChangeLog +++ b/games-mud/gnome-mud/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-mud/gnome-mud # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/gnome-mud/ChangeLog,v 1.21 2008/03/22 10:27:38 remi Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-mud/gnome-mud/ChangeLog,v 1.22 2008/07/26 01:27:53 mr_bones_ Exp $ + +*gnome-mud-0.11 (26 Jul 2008) + + 26 Jul 2008; Michael Sterrett <mr_bones_@gentoo.org> + +gnome-mud-0.11.ebuild: + version bump 22 Mar 2008; Rémi Cardona <remi@gentoo.org> gnome-mud-0.10.7.ebuild: update ebuild to new gnome2 eclass (see bug #155993) diff --git a/games-mud/gnome-mud/gnome-mud-0.11.ebuild b/games-mud/gnome-mud/gnome-mud-0.11.ebuild new file mode 100644 index 000000000000..48f75a3874b1 --- /dev/null +++ b/games-mud/gnome-mud/gnome-mud-0.11.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/gnome-mud/gnome-mud-0.11.ebuild,v 1.1 2008/07/26 01:27:53 mr_bones_ Exp $ + +inherit gnome2 games + +DESCRIPTION="GNOME MUD client" +HOMEPAGE="http://amcl.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="=x11-libs/gtk+-2* + =gnome-base/libgnome-2* + =gnome-base/libgnomeui-2* + >=gnome-base/libglade-2.0.1 + >=x11-libs/vte-0.10.26 + gstreamer? ( media-libs/gstreamer ) + dev-perl/XML-Parser + net-libs/gnet + virtual/libintl" +DEPEND="${RDEPEND} + dev-util/pkgconfig + >=dev-util/intltool-0.23 + >=sys-devel/gettext-0.11.5 + app-text/scrollkeeper" + +src_compile() { + gnome2_src_compile \ + $(use_enable gstreamer) +} + +src_install() { + DOCS="AUTHORS BUGS ChangeLog NEWS PLUGIN.API README ROADMAP" \ + gnome2_src_install + + # plugin directory + keepdir /usr/share/gnome-mud || die "keepdir failed" + + # put the binary in the Gentoo place and clean it up + dogamesbin "${D}/usr/games/gnome-mud" || die "dogamesbin failed" + rm -f "${D}/usr/games/gnome-mud" + 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 +} |