diff options
author | Adam Feldman <NP-Hardass@gentoo.org> | 2020-03-03 17:15:24 -0500 |
---|---|---|
committer | Adam Feldman <NP-Hardass@gentoo.org> | 2020-04-06 13:47:32 -0400 |
commit | cddb7be9ea9f0def74f93960a24685544f1d91f1 (patch) | |
tree | b581f5d5b06cb9bdea7e37c2b23422d394882659 /mate-base | |
parent | mate-base/mate-session-manager: Bump to 1.22.3 (diff) | |
download | gentoo-cddb7be9ea9f0def74f93960a24685544f1d91f1.tar.gz gentoo-cddb7be9ea9f0def74f93960a24685544f1d91f1.tar.bz2 gentoo-cddb7be9ea9f0def74f93960a24685544f1d91f1.zip |
mate-base/mate-menus: Bump 1.22.1
Package-Manager: Portage-2.3.82, Repoman-2.3.18
Signed-off-by: Adam Feldman <NP-Hardass@gentoo.org>
Diffstat (limited to 'mate-base')
-rw-r--r-- | mate-base/mate-menus/Manifest | 1 | ||||
-rw-r--r-- | mate-base/mate-menus/mate-menus-1.22.1.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/mate-base/mate-menus/Manifest b/mate-base/mate-menus/Manifest index f25e4993d83d..09351357143d 100644 --- a/mate-base/mate-menus/Manifest +++ b/mate-base/mate-menus/Manifest @@ -1 +1,2 @@ DIST mate-menus-1.22.0.tar.xz 355948 BLAKE2B f65bd45c4c7c04f11f9228499991d7c2dfa60a3e74e4cbfcffc3a02f09e8e6cad6b4b4adb6d9227a4e893bad9dc032afc6cce8098ea62fd133ef836cbe9abdf2 SHA512 7ca02c1bb89c83b6b331fc2e8878862fa8f02f5cd52b297aa44b36dd5c2d1ee1ffeb1641d63a10bd4deb99f63ded9c3b890a05ab7f7faf32d7f895b0a2f68d70 +DIST mate-menus-1.22.1.tar.xz 351080 BLAKE2B 3ec947d6befefc838580547970ad7753c914077faa8cde2f37b9f3c48cd5d1223f382b67992826017e8ab16353c7fd2b4749a0fbd615668c0a4c6ad638c26014 SHA512 2766cafa35c11da6f6d5d6129a5e39c09e73ca97f72382df757091198260a342d278c53f88cddf75e174231443c1015198dfa1800b3601d5b770553ec7047a00 diff --git a/mate-base/mate-menus/mate-menus-1.22.1.ebuild b/mate-base/mate-menus/mate-menus-1.22.1.ebuild new file mode 100644 index 000000000000..f66ce50b1da1 --- /dev/null +++ b/mate-base/mate-menus/mate-menus-1.22.1.ebuild @@ -0,0 +1,44 @@ +# 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 + 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" +} |