blob: cd8eb3bfcc862438dcd5af4cf49484cdf0bc9316 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.ebuild,v 1.7 2003/09/15 04:31:54 obz Exp $
inherit virtualx libtool gnome.org
IUSE="doc"
S=${WORKDIR}/${P}
DESCRIPTION="GNOME Image Library"
HOMEPAGE="http://www.gtk.org/"
RDEPEND="media-libs/jpeg
media-libs/tiff
=x11-libs/gtk+-1.2*
>=media-libs/libpng-1.2.1
>=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 )"
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="x86 ~ppc ~sparc alpha hppa ~amd64"
src_compile() {
local myconf
#update libtool, else we get the "relink bug"
elibtoolize
use doc && myconf="--enable-gtk-doc" \
|| myconf="--disable-gtk-doc"
econf --sysconfdir=/etc/X11/gdk-pixbuf || die
#build needs to be able to
#connect to an X display.
Xemake || die
}
src_install() {
einstall \
sysconfdir=${D}/etc/X11/gdk-pixbuf || die
dosed -e "s:${D}::g" /usr/bin/gdk-pixbuf-config
#fix permissions on the loaders
chmod a+rx ${D}/usr/lib/gdk-pixbuf/loaders
chmod a+r ${D}/usr/lib/gdk-pixbuf/loaders/*
dodoc AUTHORS COPYING* ChangeLog INSTALL README NEWS TODO
}
|