diff options
Diffstat (limited to 'mate-base/mate-menus/mate-menus-1.22.0.ebuild')
-rw-r--r-- | mate-base/mate-menus/mate-menus-1.22.0.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/mate-base/mate-menus/mate-menus-1.22.0.ebuild b/mate-base/mate-menus/mate-menus-1.22.0.ebuild new file mode 100644 index 0000000..cce14f6 --- /dev/null +++ b/mate-base/mate-menus/mate-menus-1.22.0.ebuild @@ -0,0 +1,53 @@ +# 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+ LGPL-2.1+" +SLOT="0" + +IUSE="debug +introspection" + +COMMON_DEPEND=">=dev-libs/glib-2.50:2 + virtual/libintl + introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )" + +RDEPEND="${COMMON_DEPEND}" + +DEPEND="${COMMON_DEPEND} + >=dev-util/intltool-0.40 + sys-devel/gettext:* + 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" +} + +pkg_postinst() { + mate_pkg_postinst + einfo "Due to upstream bug" + einfo "https://github.com/mate-desktop/mate-menus/issues/2," + einfo "it is highly recommended to run the following command" + einfo "once you have logged in to your desktop for the first time:" + einfo "cd ~/.config/menus && ln -s {,mate-}applications-merged" +} |