blob: 949e1a7936c19c6f7540bf0952cb795398fa7e92 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-blight-tr64gl/mupen64-blight-tr64gl-0.8.7_pre1.ebuild,v 1.3 2005/01/31 07:33:55 morfic Exp $
inherit games
MY_P="tr64gl-0.8.7-pre1"
DESCRIPTION="An OpenGL graphics plugin for the mupen64 N64 emulator"
HOMEPAGE="http://deltaanime.ath.cx/~blight/n64/"
SRC_URI="mirror://gentoo/${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
}
|