blob: 4ea3624a27801e07058b6c331319095e768b53d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/blight-tr64gl/blight-tr64gl-0.7.4_pre1.ebuild,v 1.4 2004/06/10 21:42:54 mr_bones_ Exp $
inherit games
MY_P="blight_tr64gl-0.7.4-pre1"
DESCRIPTION="An OpenGL graphics plugin for the mupen64 N64 emulator"
HOMEPAGE="http://deltaanime.ath.cx/~blight/n64/"
SRC_URI="http://deltaanime.ath.cx/~blight/n64/blight_tr64gl_port/${MY_P}.so.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="media-libs/libsdl"
S="${WORKDIR}"
src_install () {
exeinto "${GAMES_LIBDIR}/mupen64/plugins"
doexe ${MY_P}.so || die "doexe failed"
prepgamesdirs
}
|