blob: f2052f0544127a81cdd80ed2b6ff0f316b683455 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/daphne/daphne-0.99.6-r2.ebuild,v 1.1 2003/11/04 08:11:02 vapier Exp $
inherit games eutils flag-o-matic
DESCRIPTION="Laserdisc Arcade Game Emulator"
SRC_URI="http://www.daphne-emu.com/download/${P}-src.tar.gz"
HOMEPAGE="http://www.daphne-emu.com/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
RDEPEND="virtual/glibc
media-libs/libogg
media-libs/libvorbis
media-libs/libsdl
media-libs/sdl-mixer
sys-libs/zlib"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}/src
sed -e "s:-march=i686:${CFLAGS}:" Makefile.vars.linux_x86 > Makefile.vars
# lets make this guy play nice with our filesystem setup
sed -i "s:pics/:${GAMES_DATADIR}/${PN}/pics/:g" video/video.cpp
sed -i "s:roms/:${GAMES_DATADIR}/${PN}/roms/:g" game/game.cpp
sed -i "s:sound/:${GAMES_DATADIR}/${PN}/sound/:g" sound/sound.cpp
sed -i "s:./lib:${GAMES_LIBDIR}/${PN}/lib:g" io/dll.h
sed -i 's:daphne_log.txt:/tmp/daphne_log.txt:g' daphne.cpp daphne.h io/error.cpp
epatch ${FILESDIR}/${PV}-local-dapinput.patch
}
src_compile() {
replace-flags -march=i686 -march=i586 # Bug 18807 Comment #11
replace-flags -march=pentium3 -march=i586 # Bug 18807 Comment #4
cd ${S}/src
emake || die "src build failed"
cd ${S}/src/vldp
emake -f Makefile.linux || die "vldp build failed"
cd ${S}/src/vldp2
egamesconf || die
emake -f Makefile.linux || die "vldp2 build failed"
}
src_install() {
dogamesbin daphne
exeinto ${GAMES_LIBDIR}/${PN}
doexe libvldp*.so
dodir ${GAMES_DATADIR}/${PN}
cp -rf pics sound roms ${D}/${GAMES_DATADIR}/${PN}/
dodoc doc/*.{ini,txt}
dohtml -r doc/*
prepgamesdirs
}
|