diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-03-30 16:39:47 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-03-30 16:39:47 +0000 |
commit | 03ff00300d0a45912a59c6a52fdc896cdbc9162d (patch) | |
tree | a8f3edcd7e736dcab98f893e4d29587cd45b33a6 /gnome-base/librsvg | |
parent | Update HOMEPAGE. (diff) | |
download | gentoo-2-03ff00300d0a45912a59c6a52fdc896cdbc9162d.tar.gz gentoo-2-03ff00300d0a45912a59c6a52fdc896cdbc9162d.tar.bz2 gentoo-2-03ff00300d0a45912a59c6a52fdc896cdbc9162d.zip |
Version bump
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'gnome-base/librsvg')
-rw-r--r-- | gnome-base/librsvg/ChangeLog | 16 | ||||
-rw-r--r-- | gnome-base/librsvg/librsvg-2.26.2.ebuild | 67 |
2 files changed, 82 insertions, 1 deletions
diff --git a/gnome-base/librsvg/ChangeLog b/gnome-base/librsvg/ChangeLog index 7ca6788d4705..526f0d2648b7 100644 --- a/gnome-base/librsvg/ChangeLog +++ b/gnome-base/librsvg/ChangeLog @@ -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@gentoo.org> +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@gentoo.org> librsvg-2.26.0.ebuild: sh stable diff --git a/gnome-base/librsvg/librsvg-2.26.2.ebuild b/gnome-base/librsvg/librsvg-2.26.2.ebuild new file mode 100644 index 000000000000..f9bab0a913f1 --- /dev/null +++ b/gnome-base/librsvg/librsvg-2.26.2.ebuild @@ -0,0 +1,67 @@ +# 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" +} |