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-libs/libwnck: ChangeLog libwnck-2.28.0.ebuild libwnck-2.26.2.ebuild libwnck-2.26.2-r1.ebuild
Date: Thu, 29 Oct 2009 21:25:24
Message-Id: E1N3cUj-0007Eb-MB@stork.gentoo.org
1 eva 09/10/29 21:25:21
2
3 Modified: ChangeLog
4 Added: libwnck-2.28.0.ebuild
5 Removed: libwnck-2.26.2.ebuild libwnck-2.26.2-r1.ebuild
6 Log:
7 New version for GNOME 2.28. Clean up old revision.
8 (Portage version: 2.2_rc46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.225 x11-libs/libwnck/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libwnck/ChangeLog?rev=1.225&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libwnck/ChangeLog?rev=1.225&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libwnck/ChangeLog?r1=1.224&r2=1.225
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v
20 retrieving revision 1.224
21 retrieving revision 1.225
22 diff -u -r1.224 -r1.225
23 --- ChangeLog 24 Oct 2009 16:17:22 -0000 1.224
24 +++ ChangeLog 29 Oct 2009 21:25:20 -0000 1.225
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/libwnck
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.224 2009/10/24 16:17:22 nixnut Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.225 2009/10/29 21:25:20 eva Exp $
30 +
31 +*libwnck-2.28.0 (29 Oct 2009)
32 +
33 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
34 + -libwnck-2.26.2.ebuild, -libwnck-2.26.2-r1.ebuild, +libwnck-2.28.0.ebuild:
35 + New version for GNOME 2.28. Clean up old revision.
36
37 24 Oct 2009; nixnut <nixnut@g.o> libwnck-2.26.2-r2.ebuild:
38 ppc stable #281427
39
40
41
42 1.1 x11-libs/libwnck/libwnck-2.28.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libwnck/libwnck-2.28.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libwnck/libwnck-2.28.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libwnck-2.28.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-2.28.0.ebuild,v 1.1 2009/10/29 21:25:21 eva Exp $
52
53 EAPI="2"
54 GCONF_DEBUG="no"
55
56 inherit autotools gnome2 eutils
57
58 DESCRIPTION="A window navigation construction kit"
59 HOMEPAGE="http://www.gnome.org/"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="doc startup-notification"
65
66 RDEPEND=">=x11-libs/gtk+-2.16.0
67 >=dev-libs/glib-2.16.0
68 x11-libs/libX11
69 x11-libs/libXres
70 x11-libs/libXext
71 startup-notification? ( >=x11-libs/startup-notification-0.4 )"
72 DEPEND="${RDEPEND}
73 sys-devel/gettext
74 >=dev-util/pkgconfig-0.9
75 >=dev-util/intltool-0.40
76 dev-util/gtk-doc-am
77 gnome-base/gnome-common
78 doc? ( >=dev-util/gtk-doc-1.9 )"
79
80 DOCS="AUTHORS ChangeLog HACKING NEWS README"
81
82 pkg_setup() {
83 G2CONF="${G2CONF}
84 --disable-static
85 $(use_enable startup-notification)"
86 }
87
88 src_prepare() {
89 gnome2_src_prepare
90
91 # Fix glib-mkenum auto generation (bug #279832)
92 epatch "${FILESDIR}"/${PN}-2.26.2-fix-glib-mkenums.diff
93 # required to force regeneration of wnck-enum-types.h
94 rm libwnck/wnck-enum-types.h
95
96 intltoolize --force --copy --automake || die "intltoolize failed"
97
98 # Make it libtool-1 compatible, bug #280876
99 rm -v m4/lt* m4/libtool.m4 || die "removing libtool macros failed"
100
101 AT_M4DIR="m4" eautoreconf
102 }