blob: 839f46dbb7ce05783f4b6ae342268a0c90cfa6f2 (
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
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.3.4.ebuild,v 1.5 2004/06/24 22:32:00 agriffis Exp $
inherit games flag-o-matic
DESCRIPTION="MSX emulator that aims for perfection"
HOMEPAGE="http://openmsx.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~ppc"
IUSE=""
RDEPEND="dev-libs/libxml2
media-libs/libpng
sys-libs/zlib
media-libs/sdl-image
media-libs/libsdl
virtual/x11
virtual/opengl"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
# Remove all symlinking from the Makefile.in
sed -i \
-e "/ln /d" Makefile.in \
|| die "sed Makefile.in failed"
# Change the hardcoded default SystemDir.
sed -i \
-e "s:/opt/openMSX/:${GAMES_DATADIR}/${PN}/:" \
src/file/FileOperations.cc \
|| die "sed FileOperations.cc failed"
}
src_compile() {
# fix bug 32745
replace-flags -Os -O2
egamesconf || die
emake || die
}
src_install() {
egamesinstall prefix="${D}${GAMES_DATADIR}/${PN}" \
bindir=${D}${GAMES_BINDIR} || die
dosym ${GAMES_DATADIR}/${PN}/share/machines/National_CF-1200 \
${GAMES_DATADIR}/${PN}/share/machines/msx1
dosym ${GAMES_DATADIR}/${PN}/share/machines/Philips_NMS_8250 \
${GAMES_DATADIR}/${PN}/share/machines/msx2
dosym ${GAMES_DATADIR}/${PN}/share/machines/Panasonic_FS-A1FX \
${GAMES_DATADIR}/${PN}/share/machines/msx2plus
dosym ${GAMES_DATADIR}/${PN}/share/machines/Panasonic_FS-A1GT \
${GAMES_DATADIR}/${PN}/share/machines/turbor
dodoc README AUTHORS NEWS ${D}${GAMES_DATADIR}/openmsx/*.{txt,tex}
dohtml -r doc/*
# Tidy up install
rm -f ${D}${GAMES_DATADIR}/openmsx/*.{txt,tex,html,png,css}
find ${D}${GAMES_DATADIR} -type f -exec chmod a-x \{\} \;
prepgamesdirs
}
|