blob: d3e09e0c6d86de302cdd6a3cea962d8ef1c220f9 (
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
26
27
28
29
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-gpupetemesagl/psemu-gpupetemesagl-1.75.ebuild,v 1.5 2005/03/06 06:38:55 mr_bones_ Exp $
inherit games
DESCRIPTION="PSEmu MesaGL GPU"
HOMEPAGE="http://www.pbernert.com/"
SRC_URI="http://www.pbernert.com/gpupetemesagl${PV//.}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/opengl"
S=${WORKDIR}
src_install() {
exeinto "${GAMES_LIBDIR}/psemu/plugins"
doexe lib* || die "doexe failed"
exeinto "${GAMES_LIBDIR}/psemu/cfg"
doexe cfgPeteMesaGL || die "doexe failed"
insinto "${GAMES_LIBDIR}/psemu/cfg"
doins gpuPeteMesaGL.cfg || die "doins failed"
dodoc readme.txt version.txt
prepgamesdirs
}
|