Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/mutter: mutter-3.8.0.ebuild ChangeLog
Date: Thu, 28 Mar 2013 22:31:45
Message-Id: 20130328223140.E9ADE2171D@flycatcher.gentoo.org
1 pacho 13/03/28 22:31:40
2
3 Modified: ChangeLog
4 Added: mutter-3.8.0.ebuild
5 Log:
6 Version bump for Gnome 3.8
7
8 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.22 x11-wm/mutter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/mutter/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/mutter/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/mutter/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 20 Feb 2013 23:19:14 -0000 1.21
24 +++ ChangeLog 28 Mar 2013 22:31:40 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-wm/mutter
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v 1.21 2013/02/20 23:19:14 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v 1.22 2013/03/28 22:31:40 pacho Exp $
30 +
31 +*mutter-3.8.0 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Pacho Ramos <pacho@g.o> +mutter-3.8.0.ebuild:
34 + Version bump for Gnome 3.8
35
36 *mutter-3.6.3 (20 Feb 2013)
37
38
39
40
41 1.1 x11-wm/mutter/mutter-3.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/mutter/mutter-3.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/mutter/mutter-3.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mutter-3.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/mutter-3.8.0.ebuild,v 1.1 2013/03/28 22:31:40 pacho Exp $
51
52 EAPI="5"
53 inherit eutils gnome2
54
55 DESCRIPTION="GNOME 3 compositing window manager based on Clutter"
56 HOMEPAGE="http://git.gnome.org/browse/mutter/"
57
58 LICENSE="GPL-2+"
59 SLOT="0"
60 IUSE="+introspection test"
61 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
62
63 COMMON_DEPEND=">=x11-libs/pango-1.2[X,introspection?]
64 >=x11-libs/cairo-1.10[X]
65 x11-libs/gdk-pixbuf:2[introspection?]
66 >=x11-libs/gtk+-3.3.7:3[X,introspection?]
67 >=dev-libs/glib-2.25.11:2
68 >=media-libs/clutter-1.13.5:1.0[introspection?]
69 >=media-libs/cogl-1.13.3:1.0=[introspection?]
70 >=media-libs/libcanberra-0.26[gtk3]
71 >=x11-libs/startup-notification-0.7
72 >=x11-libs/libXcomposite-0.2
73 >=gnome-base/gsettings-desktop-schemas-3.7.3[introspection?]
74
75 x11-libs/libICE
76 x11-libs/libSM
77 x11-libs/libX11
78 x11-libs/libXcursor
79 x11-libs/libXdamage
80 x11-libs/libXext
81 x11-libs/libXfixes
82 x11-libs/libXinerama
83 x11-libs/libXrandr
84 x11-libs/libXrender
85 >=x11-libs/libXi-1.6.2
86
87 gnome-extra/zenity
88
89 introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
90 "
91 DEPEND="${COMMON_DEPEND}
92 >=dev-util/intltool-0.35
93 sys-devel/gettext
94 virtual/pkgconfig
95 x11-proto/xextproto
96 x11-proto/xineramaproto
97 x11-proto/xproto
98 test? ( app-text/docbook-xml-dtd:4.5 )
99 "
100 RDEPEND="${COMMON_DEPEND}
101 !x11-misc/expocity"
102
103 src_prepare() {
104 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README *.txt doc/*.txt"
105 G2CONF="${G2CONF}
106 --disable-static
107 --enable-shape
108 --enable-sm
109 --enable-startup-notification
110 --enable-xsync
111 --enable-verbose-mode
112 --enable-compile-warnings=maximum
113 --with-libcanberra
114 $(use_enable introspection)"
115
116 # Compat with Ubuntu metacity themes (e.g. x11-themes/light-themes)
117 epatch "${FILESDIR}/${PN}-3.2.1-ignore-shadow-and-padding.patch"
118
119 gnome2_src_prepare
120 }