Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libwnck: ChangeLog libwnck-3.2.1.ebuild
Date: Fri, 28 Oct 2011 22:31:52
Message-Id: 20111028223142.5F8052004B@flycatcher.gentoo.org
1 tetromino 11/10/28 22:31:42
2
3 Modified: ChangeLog
4 Added: libwnck-3.2.1.ebuild
5 Log:
6 Add libwnck-3.2.1 from the gnome overlay. Notable changes: new API for getting class group/instance name of a WnckWindow.
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.274 x11-libs/libwnck/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libwnck/ChangeLog?rev=1.274&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libwnck/ChangeLog?rev=1.274&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libwnck/ChangeLog?r1=1.273&r2=1.274
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v
20 retrieving revision 1.273
21 retrieving revision 1.274
22 diff -u -r1.273 -r1.274
23 --- ChangeLog 28 Oct 2011 20:22:46 -0000 1.273
24 +++ ChangeLog 28 Oct 2011 22:31:42 -0000 1.274
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/libwnck
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.273 2011/10/28 20:22:46 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.274 2011/10/28 22:31:42 tetromino Exp $
30 +
31 +*libwnck-3.2.1 (28 Oct 2011)
32 +
33 + 28 Oct 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +libwnck-3.2.1.ebuild:
35 + Add libwnck-3.2.1 from the gnome overlay. Notable changes: new API for
36 + getting class group/instance name of a WnckWindow.
37
38 28 Oct 2011; Markus Meier <maekke@g.o> libwnck-2.30.7.ebuild:
39 arm stable, bug #385699
40
41
42
43 1.1 x11-libs/libwnck/libwnck-3.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libwnck/libwnck-3.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libwnck/libwnck-3.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libwnck-3.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-3.2.1.ebuild,v 1.1 2011/10/28 22:31:42 tetromino Exp $
53
54 EAPI="4"
55 GCONF_DEBUG="no"
56 GNOME2_LA_PUNT="yes"
57
58 inherit gnome2
59
60 DESCRIPTION="A window navigation construction kit"
61 HOMEPAGE="http://www.gnome.org/"
62
63 LICENSE="LGPL-2"
64 SLOT="3"
65 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
66
67 IUSE="doc +introspection startup-notification"
68
69 RDEPEND=">=x11-libs/gtk+-3.0:3[introspection?]
70 >=dev-libs/glib-2.16:2
71 x11-libs/libX11
72 x11-libs/libXres
73 x11-libs/libXext
74 introspection? ( >=dev-libs/gobject-introspection-0.6.14 )
75 startup-notification? ( >=x11-libs/startup-notification-0.4 )
76 x86-interix? ( sys-libs/itx-bind )"
77 DEPEND="${RDEPEND}
78 sys-devel/gettext
79 >=dev-util/pkgconfig-0.9
80 >=dev-util/intltool-0.40
81 doc? ( >=dev-util/gtk-doc-1.9 )"
82 # eautoreconf needs
83 # dev-util/gtk-doc-am
84 # gnome-base/gnome-common
85
86 pkg_setup() {
87 # Don't collide with SLOT=1
88 G2CONF="${G2CONF}
89 --disable-static
90 $(use_enable introspection)
91 $(use_enable startup-notification)
92 --program-suffix=-${SLOT}"
93 DOCS="AUTHORS ChangeLog HACKING NEWS README"
94 }
95
96 src_prepare() {
97 gnome2_src_prepare
98
99 if use x86-interix; then
100 # activate the itx-bind package...
101 append-flags "-I${EPREFIX}/usr/include/bind"
102 append-ldflags "-L${EPREFIX}/usr/lib/bind"
103 fi
104 }
105
106 pkg_postinst() {
107 gnome2_pkg_postinst
108
109 elog "wnckprop is now called wnckprop-${SLOT}"
110 elog "wnck-urgency-monitor is now called wnck-urgency-monitor-${SLOT}"
111 }