diff options
author | 2001-08-12 13:26:02 +0000 | |
---|---|---|
committer | 2001-08-12 13:26:02 +0000 | |
commit | 64b00641fdd2c4c9a44b6a34c82dd7c127f13eac (patch) | |
tree | 379ac40a9c677297f3ef229dc9ed1e2150e71b4d /media-libs | |
parent | fixed symlinks. (diff) | |
download | gentoo-2-64b00641fdd2c4c9a44b6a34c82dd7c127f13eac.tar.gz gentoo-2-64b00641fdd2c4c9a44b6a34c82dd7c127f13eac.tar.bz2 gentoo-2-64b00641fdd2c4c9a44b6a34c82dd7c127f13eac.zip |
Initial import
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/sdl-image/files/digest-sdl-image-1.2.0 | 1 | ||||
-rw-r--r-- | media-libs/sdl-image/sdl-image-1.2.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/media-libs/sdl-image/files/digest-sdl-image-1.2.0 b/media-libs/sdl-image/files/digest-sdl-image-1.2.0 new file mode 100644 index 000000000000..33b12ad791bc --- /dev/null +++ b/media-libs/sdl-image/files/digest-sdl-image-1.2.0 @@ -0,0 +1 @@ +MD5 4da2392d748dc86ddc52a72b50d77f4a SDL_image-1.2.0.tar.gz diff --git a/media-libs/sdl-image/sdl-image-1.2.0.ebuild b/media-libs/sdl-image/sdl-image-1.2.0.ebuild new file mode 100644 index 000000000000..838748a072a2 --- /dev/null +++ b/media-libs/sdl-image/sdl-image-1.2.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-image/sdl-image-1.2.0.ebuild,v 1.1 2001/08/12 13:26:02 karltk Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="SDL-image is an image file loading library" + +SRC_URI="http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.0.tar.gz" + +HOMEPAGE="http://www.libsdl.org/projects/SDL_image/index.html" + +#build-time dependencies +DEPEND="virtual/glibc + >=media-libs/libpng-1.0 + >=media-libs/jpeg-6b + >=media-libs/libsdl-1.2" + +src_unpack() { + cd ${WORKDIR} + unpack SDL_image-1.2.0.tar.gz + mv SDL_image-1.2.0 ${P} +} + +src_compile() { + + try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} + try emake +} + +src_install () { + # try make prefix=${D}/usr install + try make DESTDIR=${D} install +} + |