mate-base/mate-menus: add 1.26.1

Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32269
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Oz Tiram
2023-08-12 08:52:54 +02:00
committed by Sam James
parent 1cabeb40d1
commit 13c2f409aa
2 changed files with 47 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST mate-menus-1.26.0.tar.xz 410900 BLAKE2B 71ebc400ffd2217362485d80a8ddd3717ccb950ece7a7e7f9df971ecd5cffd3d456a678dc3bd3a958e90c4f99e234f8557600110efb813274bbc508a4745d9c2 SHA512 01d0b4f111c445df363baa8e24c87e63e12e6c84c1ccdac4b05bc12a3e3edba6be14651c6b2b34e05271fa35c57f237d79bdbee6dde1699273047519022a636c
DIST mate-menus-1.26.1.tar.xz 421032 BLAKE2B c767a1a60fba60ad7c86e64a5a17e71bfa0bb8bb5170c22594c1ef896dead8fed6e901e66b88495c5a89f7a6e35a6e45102a1bed4a1e511db0950bfa7c553031 SHA512 df57f653bc7a456719c24fa077b70a175d9bbaec7d55fb807e35ed66a9e0f2aaf7251bea0e7778ec98bf2b07b9f7bc25f4931a9c83ec0ae3621a1b8f257b1329

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
GNOME2_LA_PUNT="yes"
inherit mate
if [[ ${PV} != 9999 ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~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 nls"
COMMON_DEPEND=">=dev-libs/glib-2.50:2
introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
"
RDEPEND="${COMMON_DEPEND}"
BDEPEND="
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
DEPEND="${COMMON_DEPEND}"
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) \
$(use_enable introspection) \
$(use_enable nls)
}
src_install() {
mate_src_install
exeinto /etc/X11/xinit/xinitrc.d/
newexe "${FILESDIR}/10-xdg-menu-mate-r1" "10-xdg-menu-mate"
}