blob: 137f85015e7589b35391fada108488197f7f599d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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="virtual/jpeg:0
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
}
|