blob: cb15a3487133313ca3b42d75c0d3eedd321647ef (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_LA_PUNT="yes"
inherit mate
if [[ ${PV} != 9999 ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
DESCRIPTION="MATE menu system, implementing the F.D.O cross-desktop spec"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
IUSE="debug +introspection"
COMMON_DEPEND=">=dev-libs/glib-2.50:2
introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )"
RDEPEND="${COMMON_DEPEND}"
DEPEND="${COMMON_DEPEND}
>=sys-devel/gettext-0.19.8:*
virtual/pkgconfig:*"
src_configure() {
# Do NOT compile with --disable-debug/--enable-debug=no as it disables API
# usage checks.
mate_src_configure \
--enable-debug=$(usex debug yes minimum) \
$(use_enable introspection)
}
src_install() {
mate_src_install
exeinto /etc/X11/xinit/xinitrc.d/
doexe "${FILESDIR}/10-xdg-menu-mate"
}
|