diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-20 18:19:40 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-20 18:19:40 +0000 |
commit | bbadac218820ad7086d782270cf8884ed4153d40 (patch) | |
tree | 1775e33564f41aa17dab1899612a3aed85c33b2a /media-libs/sdl-ttf | |
parent | Remove redundant linux-info_pkg_setup call. (diff) | |
download | gentoo-2-bbadac218820ad7086d782270cf8884ed4153d40.tar.gz gentoo-2-bbadac218820ad7086d782270cf8884ed4153d40.tar.bz2 gentoo-2-bbadac218820ad7086d782270cf8884ed4153d40.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-libs/sdl-ttf')
-rw-r--r-- | media-libs/sdl-ttf/files/sdl-ttf-2.0.8-noftinternals.patch | 29 | ||||
-rw-r--r-- | media-libs/sdl-ttf/sdl-ttf-2.0.8.ebuild | 37 |
2 files changed, 0 insertions, 66 deletions
diff --git a/media-libs/sdl-ttf/files/sdl-ttf-2.0.8-noftinternals.patch b/media-libs/sdl-ttf/files/sdl-ttf-2.0.8-noftinternals.patch deleted file mode 100644 index bc066eb31c7b..000000000000 --- a/media-libs/sdl-ttf/files/sdl-ttf-2.0.8-noftinternals.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -ur SDL_ttf-2.0.8.orig/SDL_ttf.c SDL_ttf-2.0.8/SDL_ttf.c ---- SDL_ttf-2.0.8.orig/SDL_ttf.c 2006-08-31 13:44:21.000000000 +0200 -+++ SDL_ttf-2.0.8/SDL_ttf.c 2006-08-31 13:44:34.000000000 +0200 -@@ -43,16 +43,6 @@ - #include FT_FREETYPE_H - #include FT_OUTLINE_H - #include FT_TRUETYPE_IDS_H --/* --#include <freetype/freetype.h> --#include <freetype/ftoutln.h> --#include <freetype/ttnameid.h> --*/ --#include <freetype/internal/ftobjs.h> -- --#ifndef FT_OPEN_STREAM --#define FT_OPEN_STREAM ft_open_stream --#endif - - #include "SDL.h" - #include "SDL_endian.h" -@@ -278,7 +268,7 @@ - } - memset(stream, 0, sizeof(*stream)); - -- stream->memory = library->memory; -+ stream->memory = NULL; /* set by FT_Open_Face */ - stream->read = RWread; - stream->descriptor.pointer = src; - stream->pos = (unsigned long)position; diff --git a/media-libs/sdl-ttf/sdl-ttf-2.0.8.ebuild b/media-libs/sdl-ttf/sdl-ttf-2.0.8.ebuild deleted file mode 100644 index 00f7aba7916d..000000000000 --- a/media-libs/sdl-ttf/sdl-ttf-2.0.8.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.8.ebuild,v 1.13 2008/01/16 18:16:36 grobian Exp $ - -inherit eutils - -MY_P="${P/sdl-/SDL_}" -DESCRIPTION="library that allows you to use TrueType fonts in SDL applications" -HOMEPAGE="http://www.libsdl.org/projects/SDL_ttf/" -SRC_URI="http://www.libsdl.org/projects/SDL_ttf/release/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="X" - -DEPEND="X? ( x11-libs/libXt ) - media-libs/libsdl - >=media-libs/freetype-2.3" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-noftinternals.patch -} - -src_compile() { - econf $(use_with X x) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc CHANGES README -} |