summaryrefslogtreecommitdiff
blob: 4b7b6d897267b0338d455395dd2c8f7bd7f1adb9 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-image/sdl-image-1.2.1-r1.ebuild,v 1.2 2002/07/11 06:30:39 drobbins Exp $

MY_P="${P/sdl-/SDL_}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="SDL-image is an image file loading library"
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz"
HOMEPAGE="http://www.libsdl.org/projects/SDL_image/index.html"

DEPEND="virtual/glibc
	>=media-libs/libpng-1.2.1
	>=media-libs/jpeg-6b
        >=media-libs/libsdl-1.2"


src_compile() {

	./configure --infodir=/usr/share/info \
		--mandir=/usr/share/man \
		--prefix=/usr \
		--host=${CHOST} || die
		
	emake || die
}

src_install() {

	# emake prefix=${D}/usr install
	make DESTDIR=${D} install
}