blob: b5865662ffed67a3e41b4b90342376288fdb84a2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/devil/devil-1.6.5.ebuild,v 1.2 2003/02/13 12:41:58 vapier Exp $
IUSE="gif png tiff sdl X opengl jpeg"
inherit libtool
S=${WORKDIR}/DevIL
DESCRIPTION="DevIL image library"
HOMEPAGE="http://www.imagelib.org/"
SRC_URI="mirror://sourceforge/openil/DevIL-${PV}.tar.gz
http://openil.sourceforge.net/ilu_region.h"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~sparc"
RDEPEND="X? ( x11-base/xfree )
gif? ( media-libs/giflib )
png? ( media-libs/libpng )
sdl? ( media-libs/libsdl )
jpeg? ( media-libs/jpeg )
tiff? ( media-libs/tiff )
opengl? ( virtual/opengl )"
DEPEND="${RDEPEND}"
src_unpack() {
unpack DevIL-${PV}.tar.gz
cd ${S}
cp ${DISTDIR}/ilu_region.h include
}
src_compile() {
local myconf
use X && myconf="${myconf} --with-x"
use gif || myconf="${myconf} --disable-gif"
use png || myconf="${myconf} --disable-png"
use sdl || myconf="${myconf} --disable-sdl"
use jpeg || myconf="${myconf} --disable-jpeg"
use tiff || myconf="${myconf} --disable-tiff"
use opengl || myconf="${myconf} --disable-opengl"
elibtoolize
econf \
${myconf} \
--disable-directx \
--disable-win32 || die "./configure failed"
make || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS BUGS COPYING* CREDITS ChangeLog* INSTALL NEWS* README*
}
|