blob: 56d277bc9d26bc32d3e836b9b5aabf1aa8f06c78 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-image/sdl-image-1.2.3-r1.ebuild,v 1.6 2005/01/07 19:15:34 vapier Exp $
inherit gnuconfig
MY_P="${P/sdl-/SDL_}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="image file loading library"
HOMEPAGE="http://www.libsdl.org/projects/SDL_image/index.html"
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86"
IUSE="gif jpeg tiff png"
DEPEND="sys-libs/zlib
>=media-libs/libsdl-1.2.4
png? ( >=media-libs/libpng-1.2.1 )
jpeg? ( >=media-libs/jpeg-6b )
tiff? ( media-libs/tiff )"
src_unpack() {
unpack ${A}
cd ${S}
gnuconfig_update
}
src_compile() {
econf \
$(use_enable gif) \
$(use_enable jpeg jpg) \
$(use_enable tiff tif) \
$(use_enable png) \
$(use_enable png pnm) \
--enable-bmp \
--enable-lbm \
--enable-pcx \
--enable-tga \
--enable-xcf \
--enable-xpm \
|| die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
into /usr
dobin .libs/showimage
dodoc CHANGES README
}
|