Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-mud/gnome-mud/
Date: Wed, 26 Jul 2017 09:41:33
Message-Id: 1501062073.c17c82f15182da50b5da05652c66b14bdc1953a8.leio@gentoo
1 commit: c17c82f15182da50b5da05652c66b14bdc1953a8
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 26 09:35:27 2017 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 26 09:41:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17c82f1
7
8 games-mud/gnome-mud: add live version
9
10 Doesn't need gnet anymore, but aliases/triggers are unconfigurable still
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.2
13
14 games-mud/gnome-mud/gnome-mud-9999.ebuild | 46 +++++++++++++++++++++++++++++++
15 1 file changed, 46 insertions(+)
16
17 diff --git a/games-mud/gnome-mud/gnome-mud-9999.ebuild b/games-mud/gnome-mud/gnome-mud-9999.ebuild
18 new file mode 100644
19 index 00000000000..658791122a5
20 --- /dev/null
21 +++ b/games-mud/gnome-mud/gnome-mud-9999.ebuild
22 @@ -0,0 +1,46 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +GNOME2_EAUTORECONF="yes"
28 +
29 +inherit gnome2 git-r3
30 +
31 +DESCRIPTION="GNOME MUD client"
32 +HOMEPAGE="https://wiki.gnome.org/Apps/GnomeMud"
33 +SRC_URI=""
34 +EGIT_REPO_URI="git://git.gnome.org/gnome-mud"
35 +
36 +LICENSE="GPL-2+"
37 +SLOT="0"
38 +KEYWORDS=""
39 +IUSE="debug gstreamer"
40 +
41 +RDEPEND="virtual/libintl
42 + >=dev-libs/glib-2.36:2
43 + >=gnome-base/libglade-2.0.1:2.0
44 + >=x11-libs/gtk+-2.20.0:2
45 + >=x11-libs/vte-0.11:0
46 + dev-libs/libpcre
47 + gnome-base/gconf:2
48 + gstreamer? ( media-libs/gstreamer:1.0 )"
49 +DEPEND="${RDEPEND}
50 + virtual/pkgconfig
51 + app-text/rarian
52 + >=dev-util/intltool-0.23
53 + >=sys-devel/gettext-0.11.5"
54 +
55 +src_configure() {
56 + gnome2_src_configure \
57 + $(use_enable gstreamer) \
58 + $(use_enable debug debug-logger)
59 +}
60 +
61 +src_install() {
62 + DOCS="AUTHORS BUGS ChangeLog NEWS README ROADMAP" \
63 + gnome2_src_install
64 +}
65 +
66 +pkg_preinst() {
67 + gnome2_pkg_preinst
68 +}