diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-08-02 17:06:24 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-08-02 17:07:52 -0700 |
commit | 3c138d61b2d48824e7626dd92a98269e065babed (patch) | |
tree | 4d42497d45ef05627366c87f17ef81b7fd7a0a30 /mate-extra | |
parent | package.mask: last-rite dev-vcs/rapidsvn (diff) | |
download | gentoo-3c138d61b2d48824e7626dd92a98269e065babed.tar.gz gentoo-3c138d61b2d48824e7626dd92a98269e065babed.tar.bz2 gentoo-3c138d61b2d48824e7626dd92a98269e065babed.zip |
mate-extra/mate-power-manager: Disable libgnome-keyring support
Bug: https://bugs.gentoo.org/713048
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'mate-extra')
-rw-r--r-- | mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild new file mode 100644 index 000000000000..55bf4d7a986e --- /dev/null +++ b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit mate + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +DESCRIPTION="A session daemon for MATE that makes it easy to manage your laptop or desktop" + +LICENSE="FDL-1.1+ GPL-2+ LGPL-2+" +SLOT="0" +IUSE="+applet elogind policykit systemd test" + +REQUIRED_USE="?? ( elogind systemd )" + +# Interactive testsuite. +RESTRICT="test" + +COMMON_DEPEND=" + >=dev-libs/dbus-glib-0.70 + >=dev-libs/glib-2.50:2 + >=media-libs/libcanberra-0.10:0[gtk3] + >=sys-apps/dbus-1 + >=x11-apps/xrandr-1.3 + >=x11-libs/cairo-1 + >=x11-libs/gdk-pixbuf-2.11:2 + >=x11-libs/gtk+-3.22:3 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXrandr + >=x11-libs/libnotify-0.7:0 + x11-libs/pango + applet? ( >=mate-base/mate-panel-1.17.0 ) + >=sys-power/upower-0.99.8:=" + +RDEPEND="${COMMON_DEPEND} + virtual/libintl + policykit? ( >=mate-extra/mate-polkit-1.6 ) + systemd? ( sys-apps/systemd ) + !systemd? ( + elogind? ( sys-auth/elogind ) + )" + +DEPEND="${COMMON_DEPEND} + app-text/docbook-xml-dtd:4.3 + app-text/rarian + >=app-text/scrollkeeper-dtd-1:1.0 + app-text/yelp-tools + dev-libs/libxml2 + dev-util/glib-utils + >=sys-devel/gettext-0.19.8:* + virtual/pkgconfig + x11-base/xorg-proto" + +src_configure() { + mate_src_configure \ + --without-keyring \ + --enable-compile-warnings=minimum \ + $(use_enable applet applets) \ + $(use_enable test tests) +} + +src_test() { + unset DBUS_SESSION_BUS_ADDRESS + + dbus-launch Xemake check || die "Test phase failed" +} |