blob: ab59dd42cf7e07a9a36b909c508059e16ba26eb0 (
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
35
36
37
38
39
40
41
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-cdriso/psemu-cdriso-1.4.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $
inherit games eutils
DESCRIPTION="PSEmu plugin to read CD-images"
HOMEPAGE="http://www.pcsx.net/"
SRC_URI="http://linuzappz.pcsx.net/downloads/cdriso-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="sys-libs/zlib
sys-apps/bzip2
=x11-libs/gtk+-1*
dev-util/pkgconfig"
S=${WORKDIR}/cdriso
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}-makefile-cflags.patch
}
src_compile() {
cd src/Linux
emake OPTFLAGS="${CFLAGS}" || die
}
src_install() {
dodoc ReadMe.txt
cd src/Linux
exeinto ${GAMES_LIBDIR}/psemu/plugins
doexe libcdriso-*
exeinto ${GAMES_LIBDIR}/psemu/cfg
doexe cfgCdrIso
prepgamesdirs
}
|