blob: 464878edf49e6a0c9697b9eb3b489790c80f4670 (
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
30
31
32
33
34
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-gpupetexgl2/psemu-gpupetexgl2-2.0.5-r2.ebuild,v 1.3 2004/05/27 01:47:45 mr_bones_ Exp $
inherit games
DESCRIPTION="PSEmu MesaGL GPU"
HOMEPAGE="http://home.t-online.de/home/PeteBernert/"
SRC_URI="http://home.t-online.de/home/PeteBernert/gpupetexgl${PVR//.}.tar.gz
http://home.t-online.de/home/PeteBernert/pete_ogl2_shader_simpleblur.zip
http://home.t-online.de/home/PeteBernert/pete_ogl2_shader_scale2x.zip"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/opengl"
S="${WORKDIR}"
src_install() {
exeinto "${GAMES_LIBDIR}/psemu/plugins"
doexe lib*
exeinto "${GAMES_LIBDIR}/psemu/cfg"
doexe cfgPeteXGL2
insinto "${GAMES_LIBDIR}/psemu/cfg"
doins gpuPeteXGL2.cfg
# now do our shader files!
insinto "${GAMES_LIBDIR}/psemu/shaders"
doins *.fp *.vp *.slf *.slv
dodoc *.txt
prepgamesdirs
}
|