diff options
Diffstat (limited to 'gnome-base/librsvg/librsvg-2.16.0.ebuild')
-rw-r--r-- | gnome-base/librsvg/librsvg-2.16.0.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/gnome-base/librsvg/librsvg-2.16.0.ebuild b/gnome-base/librsvg/librsvg-2.16.0.ebuild new file mode 100644 index 000000000000..5e123644297a --- /dev/null +++ b/gnome-base/librsvg/librsvg-2.16.0.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/librsvg-2.16.0.ebuild,v 1.1 2006/09/07 04:09:42 dang Exp $ + +inherit multilib gnome2 eutils + +DESCRIPTION="Scalable Vector Graphics (SVG) rendering library" +HOMEPAGE="http://librsvg.sourceforge.net/" + +LICENSE="LGPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc gnome print zlib" + +RDEPEND=">=media-libs/fontconfig-1.0.1 + >=x11-libs/gtk+-2.6 + >=dev-libs/glib-2.11 + >=dev-libs/libxml2-2.4.7 + >=x11-libs/cairo-1.2 + >=x11-libs/pango-1.2 + >=dev-libs/libcroco-0.6.1 + >=media-libs/freetype-2 + gnome? ( >=gnome-base/gnome-vfs-2 ) + print? ( + >=gnome-base/libgnomeprint-2.2.0 + >=gnome-base/libgnomeprintui-2.2.0 + ) + zlib? ( >=gnome-extra/libgsf-1.6 )" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9 + doc? ( >=dev-util/gtk-doc-0.9 )" + +DOCS="AUTHORS ChangeLog NEWS README TODO" + +set_gtk_confdir() { + # An arch specific config directory is used on multilib systems + has_multilib_profile && GTK2_CONFDIR="/etc/gtk-2.0/${CHOST}" + GTK2_CONFDIR=${GTK2_CONFDIR:=/etc/gtk-2.0} +} + +pkg_setup() { + G2CONF="--enable-gtk-theme --enable-pixbuf-loader \ + --disable-mozilla-plugin --with-croco \ + $(use_enable gnome gnome-vfs) \ + $(use_enable print gnome-print) \ + $(use_with zlib svgz)" + + if ! built_with_use x11-libs/cairo png; then + einfo "Please re-emerge x11-libs/cairo with the png USE flag set" + die "cairo needs the png flag set" + fi +} + +src_unpack() { + gnome2_src_unpack + + # Still fails even with disable-gtk-doc + if ! use doc; then + epatch ${FILESDIR}/${PN}-2.15.90-die-gtk-doc-die.patch + fi +} + +src_install() { + gnome2_src_install plugindir=/usr/$(get_libdir)/nsbrowser/plugins/ + + # remove gdk-pixbuf loaders (#47766) + rm -fr ${D}/etc + + # remove plugins dir since we disable the plugin + rm -fr ${D}/usr/lib/nsbrowser +} + +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 +} |