Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/librsvg: ChangeLog librsvg-2.22.3.ebuild
Date: Sat, 27 Sep 2008 16:11:32
Message-Id: E1KjcOG-0005XN-W3@stork.gentoo.org
1 eva 08/09/27 16:11:28
2
3 Modified: ChangeLog
4 Added: librsvg-2.22.3.ebuild
5 Log:
6 bump to 2.22.3. Build & runtime fixes. Use GSlice instead of GMemChunk.
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.180 gnome-base/librsvg/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/ChangeLog?rev=1.180&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/ChangeLog?rev=1.180&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/ChangeLog?r1=1.179&r2=1.180
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/librsvg/ChangeLog,v
19 retrieving revision 1.179
20 retrieving revision 1.180
21 diff -u -r1.179 -r1.180
22 --- ChangeLog 25 Sep 2008 14:26:26 -0000 1.179
23 +++ ChangeLog 27 Sep 2008 16:11:28 -0000 1.180
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnome-base/librsvg
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/ChangeLog,v 1.179 2008/09/25 14:26:26 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/ChangeLog,v 1.180 2008/09/27 16:11:28 eva Exp $
29 +
30 +*librsvg-2.22.3 (27 Sep 2008)
31 +
32 + 27 Sep 2008; Gilles Dartiguelongue <eva@g.o>
33 + +librsvg-2.22.3.ebuild:
34 + bump to 2.22.3. Build & runtime fixes. Use GSlice instead of GMemChunk.
35
36 25 Sep 2008; Jeroen Roovers <jer@g.o> librsvg-2.22.2.ebuild:
37 Stable for HPPA (bug #236971).
38
39
40
41 1.1 gnome-base/librsvg/librsvg-2.22.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/librsvg-2.22.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/librsvg-2.22.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: librsvg-2.22.3.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/librsvg-2.22.3.ebuild,v 1.1 2008/09/27 16:11:28 eva Exp $
51
52 inherit gnome2 multilib
53
54 DESCRIPTION="Scalable Vector Graphics (SVG) rendering library"
55 HOMEPAGE="http://librsvg.sourceforge.net/"
56
57 LICENSE="LGPL-2"
58 SLOT="2"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="doc zlib"
61
62 RDEPEND=">=media-libs/fontconfig-1.0.1
63 >=media-libs/freetype-2
64 >=x11-libs/gtk+-2.6
65 >=dev-libs/glib-2.15.4
66 >=x11-libs/cairo-1.2
67 >=x11-libs/pango-1.10
68 >=dev-libs/libxml2-2.4.7
69 >=dev-libs/libcroco-0.6.1
70 zlib? ( >=gnome-extra/libgsf-1.6 )"
71 DEPEND="${RDEPEND}
72 >=dev-util/pkgconfig-0.12
73 doc? ( >=dev-util/gtk-doc-1 )"
74
75 DOCS="AUTHORS ChangeLog README NEWS TODO"
76
77 pkg_setup() {
78 # FIXME: USEify mozilla support (?)
79 # croco is forced on to respect SVG specification
80 G2CONF="${G2CONF}
81 $(use_with zlib svgz)
82 --disable-mozilla-plugin
83 --with-croco
84 --enable-pixbuf-loader
85 --enable-gtk-theme"
86 }
87
88 set_gtk_confdir() {
89 # An arch specific config directory is used on multilib systems
90 has_multilib_profile && GTK2_CONFDIR="${ROOT}etc/gtk-2.0/${CHOST}"
91 GTK2_CONFDIR="${GTK2_CONFDIR:-/etc/gtk-2.0}"
92 }
93
94 src_install() {
95 gnome2_src_install
96
97 # remove gdk-pixbuf loaders (#47766)
98 rm -fr "${D}/etc"
99 }
100
101 pkg_postinst() {
102 set_gtk_confdir
103 gdk-pixbuf-query-loaders > "${GTK2_CONFDIR}/gdk-pixbuf.loaders"
104 }
105
106 pkg_postrm() {
107 set_gtk_confdir
108 gdk-pixbuf-query-loaders > "${GTK2_CONFDIR}/gdk-pixbuf.loaders"
109 }