Gentoo Archives: gentoo-commits

From: NP Hardass <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-mate:1.14-bump commit in: mate-extra/mate-polkit/
Date: Sun, 04 Sep 2016 17:23:45
Message-Id: 1473009787.74823b98052ae56673cb183f706c69456378db9c.np-hardass@gentoo
1 commit: 74823b98052ae56673cb183f706c69456378db9c
2 Author: NP-Hardass <NP-Hardass <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 4 17:23:07 2016 +0000
4 Commit: NP Hardass <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 4 17:23:07 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=74823b98
7
8 mate-extra/mate-polkit: Version bump to 1.14.0
9
10 Package-Manager: portage-2.3.0
11
12 mate-extra/mate-polkit/Manifest | 1 +
13 mate-extra/mate-polkit/mate-polkit-1.14.0.ebuild | 54 ++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/mate-extra/mate-polkit/Manifest b/mate-extra/mate-polkit/Manifest
17 index ad0f32a..46a10c7 100644
18 --- a/mate-extra/mate-polkit/Manifest
19 +++ b/mate-extra/mate-polkit/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mate-polkit-1.10.3.tar.xz 324732 SHA256 fb829c28da0ba99eddfe3c9440852a301462e95377d064bce9a68a5d2314b20d SHA512 39d5af5d8f1f1db1f45bbbba3b1a21754fb59f1f2682e46008cd3cfedacf22dcb0bca5175d59897206c5a2a17c6a6b4daa132ce8a96462504651884afba25ce6 WHIRLPOOL 08e614fbfd5fab0717b4a981d246127a68ae43d0827e0bc0bec83ed742a7ca35e824e3aaa4daa1756587433ceb5d5d323732310edac9dde381ff56881552ca70
22 DIST mate-polkit-1.12.0.tar.xz 324708 SHA256 c38f0a0c3d4e10fc95d27fa4e8d47eb6948e8c9279a82f316f563666571bf8b9 SHA512 b6e771062e29d2f4f2823638e39f5e5b349b98fcf8fd8d652d847d568eee919d37956089d7bef1463d96f801f852d10d9423bb8c20f8a54dfe8188d19ab6fb0c WHIRLPOOL bc35601f824af52ac1162aeb3342789e8fbb4f6a09b5352fffd5db87d9c02f6ddba326002a13533531c772234994c845dfbe1473563bec1c442606688b6909f4
23 +DIST mate-polkit-1.14.0.tar.xz 339872 SHA256 929d5710d6284f924dc65824b75e9da23b5809c50033da18b6b4b79e0f599ddd SHA512 f3507380152798af192e3338b5f056b1105fd297e935f098803c21450b04b6d149bc22106f34129a6394655be2e6505c91ad1433e817c68274a1243cc862bcdf WHIRLPOOL 034f05c91c5f79f1c77b073ff8f310e0264541e9783d98dabdc0dda5b0bc36da83ad4468563d9ecb6bdd389065b1b5d828deba02c15a94867124c6687ff54098
24
25 diff --git a/mate-extra/mate-polkit/mate-polkit-1.14.0.ebuild b/mate-extra/mate-polkit/mate-polkit-1.14.0.ebuild
26 new file mode 100644
27 index 0000000..a107de0
28 --- /dev/null
29 +++ b/mate-extra/mate-polkit/mate-polkit-1.14.0.ebuild
30 @@ -0,0 +1,54 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +inherit mate
38 +
39 +if [[ ${PV} != 9999 ]]; then
40 + KEYWORDS="~amd64 ~arm ~x86"
41 +fi
42 +
43 +DESCRIPTION="A MATE specific DBUS service that is used to bring up authentication dialogs"
44 +LICENSE="LGPL-2"
45 +SLOT="0"
46 +
47 +IUSE="accountsservice appindicator debug examples gtk3 +introspection"
48 +
49 +COMMON_DEPEND=">=dev-libs/glib-2.36:2
50 + >=sys-auth/polkit-0.102:0[introspection?]
51 + x11-libs/gdk-pixbuf:2[introspection?]
52 + virtual/libintl:0
53 + !gtk3? (
54 + >=x11-libs/gtk+-2.24:2[introspection?]
55 + appindicator? ( dev-libs/libappindicator:2 )
56 + )
57 + gtk3? (
58 + >=x11-libs/gtk+-3.0:3[introspection?]
59 + appindicator? ( dev-libs/libappindicator:3 )
60 + )
61 + introspection? ( >=dev-libs/gobject-introspection-0.6.2:= )"
62 +
63 +RDEPEND="${COMMON_DEPEND}
64 + accountsservice? ( sys-apps/accountsservice:0[introspection?] )"
65 +
66 +DEPEND="${COMMON_DEPEND}
67 + dev-util/gtk-doc
68 + dev-util/gtk-doc-am
69 + >=dev-util/intltool-0.35:*
70 + sys-devel/gettext:*
71 + >=sys-devel/libtool-2.2.6
72 + virtual/pkgconfig:*
73 + !<gnome-extra/polkit-gnome-0.102:0"
74 +
75 +src_configure() {
76 + mate_src_configure \
77 + --disable-static \
78 + --with-gtk=$(usex gtk3 3.0 2.0) \
79 + $(use_enable accountsservice) \
80 + $(use_enable appindicator) \
81 + $(use_enable debug) \
82 + $(use_enable examples) \
83 + $(use_enable introspection)
84 +}