Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/metacity: ChangeLog metacity-2.30.3.ebuild
Date: Fri, 01 Oct 2010 23:34:41
Message-Id: 20101001233432.66EDE20051@flycatcher.gentoo.org
1 eva 10/10/01 23:34:32
2
3 Modified: ChangeLog
4 Added: metacity-2.30.3.ebuild
5 Log:
6 Version bump. Fix unclosed sed expression in configure.
7
8 (Portage version: 2.2_rc88/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.259 x11-wm/metacity/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/metacity/ChangeLog?rev=1.259&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/metacity/ChangeLog?rev=1.259&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/metacity/ChangeLog?r1=1.258&r2=1.259
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v
20 retrieving revision 1.258
21 retrieving revision 1.259
22 diff -u -r1.258 -r1.259
23 --- ChangeLog 16 Sep 2010 21:00:39 -0000 1.258
24 +++ ChangeLog 1 Oct 2010 23:34:32 -0000 1.259
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-wm/metacity
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v 1.258 2010/09/16 21:00:39 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v 1.259 2010/10/01 23:34:32 eva Exp $
30 +
31 +*metacity-2.30.3 (01 Oct 2010)
32 +
33 + 01 Oct 2010; Gilles Dartiguelongue <eva@g.o>
34 + +metacity-2.30.3.ebuild:
35 + Version bump. Fix unclosed sed expression in configure.
36
37 *metacity-2.30.2 (16 Sep 2010)
38
39
40
41
42 1.1 x11-wm/metacity/metacity-2.30.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/metacity/metacity-2.30.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/metacity/metacity-2.30.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: metacity-2.30.3.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/metacity-2.30.3.ebuild,v 1.1 2010/10/01 23:34:32 eva Exp $
52
53 EAPI="3"
54 # debug only changes CFLAGS
55 GCONF_DEBUG="no"
56
57 inherit eutils gnome2
58
59 DESCRIPTION="GNOME default window manager"
60 HOMEPAGE="http://blogs.gnome.org/metacity/"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
65 IUSE="test xinerama"
66
67 # XXX: libgtop is automagic, hard-enabled instead
68 RDEPEND=">=x11-libs/gtk+-2.20:2
69 >=x11-libs/pango-1.2[X]
70 >=gnome-base/gconf-2
71 >=dev-libs/glib-2.6
72 >=x11-libs/startup-notification-0.7
73 >=x11-libs/libXcomposite-0.2
74 x11-libs/libXfixes
75 x11-libs/libXrender
76 x11-libs/libXdamage
77 x11-libs/libXcursor
78 x11-libs/libX11
79 xinerama? ( x11-libs/libXinerama )
80 x11-libs/libXext
81 x11-libs/libXrandr
82 x11-libs/libSM
83 x11-libs/libICE
84 media-libs/libcanberra[gtk]
85 gnome-base/libgtop
86 gnome-extra/zenity
87 !x11-misc/expocity"
88 DEPEND="${RDEPEND}
89 >=app-text/gnome-doc-utils-0.8
90 sys-devel/gettext
91 >=dev-util/pkgconfig-0.9
92 >=dev-util/intltool-0.35
93 test? ( app-text/docbook-xml-dtd:4.5 )
94 xinerama? ( x11-proto/xineramaproto )
95 x11-proto/xextproto
96 x11-proto/xproto"
97
98 DOCS="AUTHORS ChangeLog HACKING NEWS README *.txt doc/*.txt"
99
100 pkg_setup() {
101 G2CONF="${G2CONF}
102 --disable-static
103 --enable-compositor
104 --enable-gconf
105 --enable-render
106 --enable-shape
107 --enable-sm
108 --enable-startup-notification
109 --enable-xsync
110 --with-gtk=2.0
111 $(use_enable xinerama)"
112 }
113
114 src_prepare() {
115 gnome2_src_prepare
116
117 # Should set RestartStyleHint to RestartIfRunning when replaced,
118 # this fix a strange issue with gnome-session (100% of the CPU,
119 # and try to restart metacity infinitively when compiz is started)
120 # patch import from upstream bug #588119.
121 epatch "${FILESDIR}/${PN}-2.28.0-restartstylehint-when-replace.patch"
122
123 # Use sys/wait.h header instead of wait.h as described in posix specs,
124 # bug 292009
125 epatch "${FILESDIR}/${PN}-2.28.0-sys-wait-header.patch"
126
127 # WIFEXITED and friends are defined in sys/wait.h
128 # Fixes a build failure on BSD.
129 # https://bugs.gentoo.org/show_bug.cgi?id=309443
130 # https://bugzilla.gnome.org/show_bug.cgi?id=605460
131 epatch "${FILESDIR}/${PN}-2.28.1-wif_macros.patch"
132 }
133
134 src_install() {
135 gnome2_src_install
136 find "${ED}" -name "*.la" -delete || die
137 }