blob: 2f58813456705722b4971894b802d1d8ab9d8198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_EAUTORECONF="yes"
inherit gnome2-utils git-r3 meson xdg
DESCRIPTION="GNOME MUD client"
HOMEPAGE="https://wiki.gnome.org/Apps/GnomeMud"
SRC_URI=""
EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gnome-mud.git"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""
IUSE="debug gstreamer"
RDEPEND="
>=dev-libs/glib-2.48:2
>=x11-libs/gtk+-3.22:3
>=x11-libs/vte-0.37:2.91
dev-libs/libpcre
sys-libs/zlib
gstreamer? ( media-libs/gstreamer:1.0 )"
DEPEND="${RDEPEND}
dev-util/glib-utils
>=sys-devel/gettext-0.19.8
virtual/pkgconfig"
src_configure() {
local emesonargs=(
-Dmccp=enabled
-Dgstreamer=$(usex gstreamer enabled disabled)
$(meson_use debug debug-logger)
)
meson_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_icon_cache_update
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_icon_cache_update
gnome2_schemas_update
}
|