Gentoo Archives: gentoo-commits

From: Sobhan Mohammadpour <sobhan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-base/gnome-desktop/
Date: Fri, 09 Feb 2018 15:56:00
Message-Id: 1518191162.dd652554928f7e52b14e9e59bfa3c7fb15978e71.sobhan@gentoo
1 commit: dd652554928f7e52b14e9e59bfa3c7fb15978e71
2 Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 9 15:46:02 2018 +0000
4 Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 9 15:46:02 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=dd652554
7
8 gnome-base/gnome-desktop: bump
9
10 Package-Manager: Portage-2.3.23, Repoman-2.3.6
11 Manifest-Sign-Key: 0x7DF238CF0AA182E1
12
13 .../gnome-desktop/gnome-desktop-3.26.2.ebuild | 59 ++++++++++++++++++++++
14 1 file changed, 59 insertions(+)
15
16 diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.26.2.ebuild b/gnome-base/gnome-desktop/gnome-desktop-3.26.2.ebuild
17 new file mode 100644
18 index 00000000..31b0c59a
19 --- /dev/null
20 +++ b/gnome-base/gnome-desktop/gnome-desktop-3.26.2.ebuild
21 @@ -0,0 +1,59 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +inherit gnome2 virtualx
27 +
28 +DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
29 +HOMEPAGE="https://git.gnome.org/browse/gnome-desktop"
30 +
31 +LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
32 +SLOT="3/12" # subslot = libgnome-desktop-3 soname version
33 +IUSE="debug +introspection udev"
34 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
35 +
36 +# cairo[X] needed for gnome-bg
37 +COMMON_DEPEND="
38 + app-text/iso-codes
39 + >=dev-libs/glib-2.53.0:2[dbus]
40 + >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?]
41 + >=x11-libs/gtk+-3.3.6:3[X,introspection?]
42 + x11-libs/cairo:=[X]
43 + x11-libs/libX11
44 + x11-misc/xkeyboard-config
45 + >=gnome-base/gsettings-desktop-schemas-3.5.91
46 + introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
47 + udev? (
48 + sys-apps/hwids
49 + virtual/libudev:= )
50 +"
51 +RDEPEND="${COMMON_DEPEND}
52 + !<gnome-base/gnome-desktop-2.32.1-r1:2[doc]
53 +"
54 +DEPEND="${COMMON_DEPEND}
55 + app-text/docbook-xml-dtd:4.1.2
56 + dev-util/gdbus-codegen
57 + >=dev-util/gtk-doc-am-1.14
58 + >=dev-util/intltool-0.40.6
59 + dev-util/itstool
60 + sys-devel/gettext
61 + x11-proto/xproto
62 + virtual/pkgconfig
63 +"
64 +
65 +# Includes X11/Xatom.h in libgnome-desktop/gnome-bg.c which comes from xproto
66 +
67 +src_configure() {
68 + gnome2_src_configure \
69 + --disable-static \
70 + --with-gnome-distributor=Gentoo \
71 + --enable-desktop-docs \
72 + $(usex debug --enable-debug=yes ' ') \
73 + $(use_enable debug debug-tools) \
74 + $(use_enable introspection) \
75 + $(use_enable udev)
76 +}
77 +
78 +src_test() {
79 + virtx emake check
80 +}