diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-09-01 00:00:32 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-09-01 00:00:32 +0200 |
commit | ca9627e70852f6b2e835660df870fe3ab405882d (patch) | |
tree | 0a008b1d5b16fa0679a195ed7b5662c7891f591c /media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r6.ebuild | |
download | darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.gz darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.bz2 darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.xz darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.zip |
Initial import
Diffstat (limited to 'media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r6.ebuild')
-rw-r--r-- | media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r6.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r6.ebuild b/media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r6.ebuild new file mode 100644 index 0000000..09a4598 --- /dev/null +++ b/media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r6.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gdk-pixbuf/gdk-pixbuf-0.22.0-r5.ebuild,v 1.3 2005/11/20 06:36:49 hardave Exp $ + +#For the sake of virtualx compatibility (DS) +EAPI=2 + +inherit virtualx libtool gnome.org eutils + +DESCRIPTION="GNOME Image Library" +HOMEPAGE="http://www.gtk.org/" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86" +IUSE="doc mmx" + +RDEPEND="media-libs/jpeg + media-libs/tiff + =x11-libs/gtk+-1.2* + >=media-libs/libpng-1.5 + amd64? ( sys-libs/db ) + !amd64? ( <sys-libs/db-2 ) + >=gnome-base/gnome-libs-1.4.1.2-r1" +# We need gnome-libs here, else gnome support do not get compiled into +# gdk-pixbuf (the GnomeCanvasPixbuf library ) +DEPEND="${RDEPEND} + doc? ( dev-util/gtk-doc )" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${P}-m4.patch + # security fix (#64230) + epatch "${FILESDIR}"/${P}-bmp_secure.patch + epatch "${FILESDIR}"/${P}-loaders.patch + # reject corrupt bmps (#64230) + epatch "${FILESDIR}"/${P}-bmp_reject_corrupt.patch +#SDS + epatch "${FILESDIR}"/gdk-pixbuf-ds-png.diff +#EDS + + #update libtool, else we get the "relink bug" + elibtoolize +} + +src_compile() { + local myconf="" + use mmx || myconf="${myconf} --disable-mmx" + econf \ + --sysconfdir=/etc/X11/gdk-pixbuf \ + $(use_enable doc gtk-doc) \ + ${myconf} \ + || die + + #build needs to be able to + #connect to an X display. + Xemake || die +} + +src_install() { + einstall \ + sysconfdir=${D}/etc/X11/gdk-pixbuf \ + localstatedir=${D}/var/lib || die + + dosed -e "s:${D}::g" /usr/bin/gdk-pixbuf-config + #fix permissions on the loaders + chmod a+rx ${D}/usr/$(get_libdir)/gdk-pixbuf/loaders + chmod a+r ${D}/usr/$(get_libdir)/gdk-pixbuf/loaders/* + + dodoc AUTHORS ChangeLog INSTALL README NEWS TODO +} |