Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
pacho 10/03/30 16:39:47
Modified: ChangeLog
Added: librsvg-2.26.2.ebuild
Log:
Version bump
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Revision Changes Path
1.205 gnome-base/librsvg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/ChangeLog?rev=1.205&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/ChangeLog?rev=1.205&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/ChangeLog?r1=1.204&r2=1.205
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/librsvg/ChangeLog,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- ChangeLog 16 Jan 2010 17:21:43 -0000 1.204
+++ ChangeLog 30 Mar 2010 16:39:47 -0000 1.205
@@ -1,6 +1,20 @@
# ChangeLog for gnome-base/librsvg
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/ChangeLog,v 1.204 2010/01/16 17:21:43 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/ChangeLog,v 1.205 2010/03/30 16:39:47 pacho Exp $
+
+*librsvg-2.26.2 (30 Mar 2010)
+
+ 30 Mar 2010; Pacho Ramos <pacho@g.o> +librsvg-2.26.2.ebuild:
+ Version bump with these relevant changes:
+ - Enable silent build by default
+ - Use GDK_DRAWABLE() instead of non-existing GTK_DRAWABLE()
+ - Fix compiler warnings
+ - Remove some deprecated gtk+/gdk functions and bump gtk+ requirement
+ - Fix linking with pedantic linkers
+ - Make librsvg compile with -DGSEAL_ENABLED
+ - Drop mozilla plugin.
+ Ebuild modified to achieve mozilla plugin removal and gtk+ requeriment
+ bump.
16 Jan 2010; Raúl Porcel <armin76@g.o> librsvg-2.26.0.ebuild:
sh stable
1.1 gnome-base/librsvg/librsvg-2.26.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/librsvg-2.26.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/librsvg/librsvg-2.26.2.ebuild?rev=1.1&content-type=text/plain
Index: librsvg-2.26.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/librsvg-2.26.2.ebuild,v 1.1 2010/03/30 16:39:47 pacho Exp $
inherit eutils gnome2 multilib
DESCRIPTION="Scalable Vector Graphics (SVG) rendering library"
HOMEPAGE="http://librsvg.sourceforge.net/"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc zlib"
RDEPEND=">=media-libs/fontconfig-1.0.1
>=media-libs/freetype-2
>=x11-libs/gtk+-2.16
>=dev-libs/glib-2.15.4
>=x11-libs/cairo-1.2
>=x11-libs/pango-1.10
>=dev-libs/libxml2-2.4.7
>=dev-libs/libcroco-0.6.1
zlib? ( >=gnome-extra/libgsf-1.6 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog README NEWS TODO"
pkg_setup() {
# croco is forced on to respect SVG specification
G2CONF="${G2CONF}
$(use_with zlib svgz)
--with-croco
--enable-pixbuf-loader
--enable-gtk-theme"
}
src_unpack() {
gnome2_src_unpack
# gcc-4.3.2-r3 related segfault with various apps like firefox -- bug 239992
epatch "${FILESDIR}/${PN}-2.22.3-fix-segfault-with-firefox.patch"
}
set_gtk_confdir() {
# An arch specific config directory is used on multilib systems
has_multilib_profile && GTK2_CONFDIR="${ROOT}etc/gtk-2.0/${CHOST}"
GTK2_CONFDIR="${GTK2_CONFDIR:-/etc/gtk-2.0}"
}
src_install() {
gnome2_src_install
# remove gdk-pixbuf loaders (#47766)
rm -fr "${D}/etc"
}
pkg_postinst() {
set_gtk_confdir
gdk-pixbuf-query-loaders > "${GTK2_CONFDIR}/gdk-pixbuf.loaders"
}
pkg_postrm() {
set_gtk_confdir
gdk-pixbuf-query-loaders > "${GTK2_CONFDIR}/gdk-pixbuf.loaders"
}
|
|