Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-desktop: ChangeLog gnome-desktop-3.6.3.ebuild
Date: Sun, 31 Mar 2013 16:02:48
Message-Id: 20130331160245.511022171E@flycatcher.gentoo.org
1 eva 13/03/31 16:02:45
2
3 Modified: ChangeLog
4 Added: gnome-desktop-3.6.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.310 gnome-base/gnome-desktop/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-desktop/ChangeLog?rev=1.310&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-desktop/ChangeLog?rev=1.310&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-desktop/ChangeLog?r1=1.309&r2=1.310
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/ChangeLog,v
20 retrieving revision 1.309
21 retrieving revision 1.310
22 diff -u -r1.309 -r1.310
23 --- ChangeLog 28 Mar 2013 17:06:14 -0000 1.309
24 +++ ChangeLog 31 Mar 2013 16:02:45 -0000 1.310
25 @@ -1,6 +1,12 @@
26 # ChangeLog for gnome-base/gnome-desktop
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/ChangeLog,v 1.309 2013/03/28 17:06:14 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/ChangeLog,v 1.310 2013/03/31 16:02:45 eva Exp $
30 +
31 +*gnome-desktop-3.6.3 (31 Mar 2013)
32 +
33 + 31 Mar 2013; Gilles Dartiguelongue <eva@g.o>
34 + +gnome-desktop-3.6.3.ebuild:
35 + Version bump.
36
37 *gnome-desktop-3.8.0.1 (28 Mar 2013)
38
39
40
41
42 1.1 gnome-base/gnome-desktop/gnome-desktop-3.6.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.6.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.6.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnome-desktop-3.6.3.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.6.3.ebuild,v 1.1 2013/03/31 16:02:45 eva Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="yes"
55
56 inherit gnome2
57
58 DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
59 HOMEPAGE="http://www.gnome.org/"
60
61 LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
62 SLOT="3/4" # subslot = libgnome-desktop-3 soname version
63 IUSE="+introspection"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
65
66 # cairo[X] needed for gnome-bg
67 COMMON_DEPEND="
68 >=dev-libs/glib-2.33.3:2
69 >=x11-libs/gdk-pixbuf-2.21.3:2[introspection?]
70 >=x11-libs/gtk+-3.3.6:3[introspection?]
71 >=x11-libs/libXext-1.1
72 >=x11-libs/libXrandr-1.3
73 x11-libs/cairo:=[X]
74 x11-libs/libxkbfile
75 x11-libs/libX11
76 x11-misc/xkeyboard-config
77 >=gnome-base/gsettings-desktop-schemas-3.5.91
78 introspection? ( >=dev-libs/gobject-introspection-0.9.7 )
79 "
80 RDEPEND="${COMMON_DEPEND}
81 !<gnome-base/gnome-desktop-2.32.1-r1:2[doc]
82 "
83 DEPEND="${COMMON_DEPEND}
84 app-text/docbook-xml-dtd:4.1.2
85 >=dev-util/gtk-doc-am-1.4
86 >=dev-util/intltool-0.40.6
87 sys-devel/gettext
88 x11-proto/xproto
89 >=x11-proto/randrproto-1.2
90 virtual/pkgconfig
91 "
92
93 # Includes X11/Xatom.h in libgnome-desktop/gnome-bg.c which comes from xproto
94 # Includes X11/extensions/Xrandr.h that includes randr.h from randrproto (and
95 # eventually libXrandr shouldn't RDEPEND on randrproto)
96
97 src_configure() {
98 DOCS="AUTHORS ChangeLog HACKING NEWS README"
99 # Note: do *not* use "--with-pnp-ids-path" argument. Otherwise, the pnp.ids
100 # file (needed by other packages such as >=gnome-settings-daemon-3.1.2)
101 # will not get installed in ${pnpdatadir} (/usr/share/libgnome-desktop-3.0).
102 gnome2_src_configure \
103 --disable-static \
104 --with-gnome-distributor=Gentoo \
105 --enable-desktop-docs \
106 $(use_enable introspection) \
107 ITSTOOL=$(type -P true)
108 }