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/goocanvas: ChangeLog goocanvas-1.0.0.ebuild
Date: Tue, 22 Feb 2011 22:33:48
Message-Id: 20110222223338.ABB8120054@flycatcher.gentoo.org
1 eva 11/02/22 22:33:38
2
3 Modified: ChangeLog
4 Added: goocanvas-1.0.0.ebuild
5 Log:
6 Version bump, bug #342273.
7
8 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64, RepoMan options: --force)
9
10 Revision Changes Path
11 1.21 x11-libs/goocanvas/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/goocanvas/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/goocanvas/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/goocanvas/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 19 Nov 2010 09:01:14 -0000 1.20
24 +++ ChangeLog 22 Feb 2011 22:33:38 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/goocanvas
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/ChangeLog,v 1.20 2010/11/19 09:01:14 jlec Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/ChangeLog,v 1.21 2011/02/22 22:33:38 eva Exp $
31 +
32 +*goocanvas-1.0.0 (22 Feb 2011)
33 +
34 + 22 Feb 2011; Gilles Dartiguelongue <eva@g.o> +goocanvas-1.0.0.ebuild:
35 + Version bump, bug #342273.
36
37 19 Nov 2010; Justin Lecher <jlec@g.o> goocanvas-0.14.ebuild:
38 Cleaned DESCRIPTION to fit ebuild writing guide lines
39
40
41
42 1.1 x11-libs/goocanvas/goocanvas-1.0.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/goocanvas/goocanvas-1.0.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/goocanvas/goocanvas-1.0.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: goocanvas-1.0.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/goocanvas-1.0.0.ebuild,v 1.1 2011/02/22 22:33:38 eva Exp $
52
53 EAPI="3"
54
55 GCONF_DEBUG="no"
56
57 inherit gnome2 libtool
58
59 DESCRIPTION="Canvas widget for GTK+ using the cairo 2D library for drawing"
60 HOMEPAGE="http://live.gnome.org/GooCanvas"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 IUSE="doc examples"
66
67 RDEPEND=">=x11-libs/gtk+-2.12:2
68 >=dev-libs/glib-2.10:2
69 >=x11-libs/cairo-1.4"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig
72 doc? ( >=dev-util/gtk-doc-1.8 )"
73
74 pkg_setup() {
75 DOCS="AUTHORS ChangeLog NEWS README TODO"
76 G2CONF="${G2CONF} --disable-rebuilds --disable-static"
77 }
78
79 src_prepare() {
80 # Fails to build with recent GTK+
81 sed -e "s/-D.*_DISABLE_DEPRECATED//g" \
82 -i src/Makefile.am src/Makefile.in demo/Makefile.am demo/Makefile.in \
83 || die "sed 1 failed"
84
85 sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \
86 -i Makefile.am Makefile.in || die "sed 2 failed"
87
88 # Needed for FreeBSD - Please do not remove
89 elibtoolize
90 }
91
92 src_install() {
93 gnome2_src_install
94
95 if use examples; then
96 insinto /usr/share/doc/${P}/examples/
97 doins demo/*.c demo/flower.png demo/toroid.png
98 fi
99 }