blob: b16d4f1b11fd5ba11358a5089043ebb60d12f416 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib/imlib-1.9.14-r3.ebuild,v 1.12 2006/04/12 14:45:22 flameeyes Exp $
inherit gnome.org libtool eutils
DESCRIPTION="Image loading and rendering library"
HOMEPAGE="http://www.enlightenment.org/Libraries/Imlib.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="=x11-libs/gtk+-1.2*
>=media-libs/tiff-3.5.5
>=media-libs/giflib-4.1.0
>=media-libs/libpng-1.2.1
>=media-libs/jpeg-6b"
src_unpack() {
unpack ${A}
cd "${S}"
# fix config script #3425
sed -i \
-e "49,51D" \
-e "55,57D" \
imlib-config.in
# Security fix per bug #62487
epatch "${FILESDIR}"/${P}-bound.patch
#Security fix for bug #72681
epatch "${FILESDIR}"/${P}-sec2.patch
# shutup aclocal
epatch "${FILESDIR}"/${P}-m4.patch
elibtoolize
}
src_compile() {
econf --sysconfdir=/etc/imlib || die
emake || die
}
src_install() {
einstall \
includedir="${D}"/usr/include \
sysconfdir="${D}"/etc/imlib \
|| die
dodoc AUTHORS ChangeLog README NEWS
dohtml -r doc
}
|