diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-17 17:20:59 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-17 17:20:59 +0000 |
commit | 15447723efa78a5c4985751dc2217051b6495d69 (patch) | |
tree | dfce57f11b6722d5b593f448ad296e4a9029db3c /media-libs/sdl-ttf/sdl-ttf-2.0.5.ebuild | |
parent | unmasked sdl (diff) | |
download | historical-15447723efa78a5c4985751dc2217051b6495d69.tar.gz historical-15447723efa78a5c4985751dc2217051b6495d69.tar.bz2 historical-15447723efa78a5c4985751dc2217051b6495d69.zip |
version bump
Diffstat (limited to 'media-libs/sdl-ttf/sdl-ttf-2.0.5.ebuild')
-rw-r--r-- | media-libs/sdl-ttf/sdl-ttf-2.0.5.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-libs/sdl-ttf/sdl-ttf-2.0.5.ebuild b/media-libs/sdl-ttf/sdl-ttf-2.0.5.ebuild new file mode 100644 index 000000000000..a92d6f51d1d6 --- /dev/null +++ b/media-libs/sdl-ttf/sdl-ttf-2.0.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 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.5.ebuild,v 1.1 2002/04/17 17:20:58 seemant 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.4 + >=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 +} |