blob: 32631f222518527536400ecf2787ea59b3fb0938 (
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
|
# 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.6.ebuild,v 1.1 2003/10/02 06:04:54 mr_bones_ Exp $
inherit libtool
S=${WORKDIR}/DevIL
DESCRIPTION="DevIL image library"
HOMEPAGE="http://www.imagelib.org/"
SRC_URI="mirror://sourceforge/openil/DevIL-${PV}.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~sparc"
IUSE="X gif png sdl jpeg tiff opengl"
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 )"
src_compile() {
elibtoolize
econf \
`use_with X x` \
`use_enable gif` \
`use_enable png` \
`use_enable sdl` \
`use_enable jpeg` \
`use_enable tiff` \
`use_enable opengl` \
--disable-directx \
--disable-win32 || die
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS BUGS CREDITS ChangeLog* INSTALL NEWS* README*
}
|