24 lines
749 B
Bash
24 lines
749 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-terminal/sdl-terminal-1.1.3.ebuild,v 1.3 2009/11/19 14:42:49 fauli Exp $
|
|
|
|
MY_P="${P/sdl-/SDL_}"
|
|
DESCRIPTION="library that provides a pseudo-ansi color terminal that can be used with any SDL application"
|
|
HOMEPAGE="http://www.loria.fr/~rougier/index.php?n=Software.Terminal"
|
|
SRC_URI="http://www.loria.fr/~rougier/pub/Software/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="x86"
|
|
IUSE=""
|
|
|
|
DEPEND="virtual/opengl
|
|
>=media-libs/libsdl-1.2.4
|
|
media-libs/sdl-ttf"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" install || die "make install failed"
|
|
dodoc AUTHORS ChangeLog README
|
|
}
|