diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-12-19 20:56:54 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-12-19 20:56:54 +0000 |
commit | 2bd25063f52f7dc49e4c2dae8f70d3d757e85090 (patch) | |
tree | 1b2520e0b110d1ff8bb026564d024ccb9d481cc7 /media-libs/sdl-ttf | |
parent | new version (diff) | |
download | gentoo-2-2bd25063f52f7dc49e4c2dae8f70d3d757e85090.tar.gz gentoo-2-2bd25063f52f7dc49e4c2dae8f70d3d757e85090.tar.bz2 gentoo-2-2bd25063f52f7dc49e4c2dae8f70d3d757e85090.zip |
new version
Diffstat (limited to 'media-libs/sdl-ttf')
-rw-r--r-- | media-libs/sdl-ttf/files/digest-sdl-ttf-2.0.4 | 1 | ||||
-rw-r--r-- | media-libs/sdl-ttf/sdl-ttf-2.0.4.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/media-libs/sdl-ttf/files/digest-sdl-ttf-2.0.4 b/media-libs/sdl-ttf/files/digest-sdl-ttf-2.0.4 new file mode 100644 index 000000000000..2947d4dffd81 --- /dev/null +++ b/media-libs/sdl-ttf/files/digest-sdl-ttf-2.0.4 @@ -0,0 +1 @@ +MD5 b4a9ba0d9d6240f35774651fea75dcba SDL_ttf-2.0.4.tar.gz 1155072 diff --git a/media-libs/sdl-ttf/sdl-ttf-2.0.4.ebuild b/media-libs/sdl-ttf/sdl-ttf-2.0.4.ebuild new file mode 100644 index 000000000000..cb0ee79913f5 --- /dev/null +++ b/media-libs/sdl-ttf/sdl-ttf-2.0.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author David Creswick <davidc@sat.net> +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.4.ebuild,v 1.1 2001/12/19 20:56:54 azarah Exp $ + +MY_P="${P/sdl-/SDL_}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="library that allows you to use TrueType fonts in SDL applications" +SRC_URI="http://www.libsdl.org/projects/SDL_ttf/release/${MY_P}.tar.gz" +HOMEPAGE="http://www.libsdl.org/projects/SDL_ttf/" + +DEPEND=">=media-libs/libsdl-1.2.3 + >=media-libs/freetype-2.0.1" + + +src_compile() { + + ./configure --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --host=${CHOST} || die + + emake || die +} + +src_install() { + + make prefix=${D}/usr install || die + + dodoc CHANGES COPYING README +} |