blob: 30482ee0a1ba017a161e9e6e74e4f45989b284c9 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.125.ebuild,v 1.1 2008/05/16 21:34:23 joker Exp $
inherit eutils flag-o-matic games
DESCRIPTION="Multiple Arcade Machine Emulator (SDL)"
HOMEPAGE="http://rbelmont.mameworld.info/?page_id=163"
MY_PV=${PV/.}
MY_PV=${MY_PV/_p/u}
MY_P=${PN}${MY_PV}
# Upstream doesn't allow fetching with unknown User-Agent such as wget
SRC_URI="mirror://gentoo/${MY_P}.zip
mirror://gentoo/${PN}-manpages.tar.gz"
# Same as xmame. Should it be renamed to MAME?
LICENSE="XMAME"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug opengl"
RDEPEND=">=media-libs/libsdl-1.2.10
sys-libs/zlib
dev-libs/expat
x11-libs/libXinerama
debug? (
>gnome-base/gconf-2
>=x11-libs/gtk+-2 )"
DEPEND="${RDEPEND}
app-arch/unzip
x11-proto/xineramaproto"
S=${WORKDIR}/${MY_P}
# Function to disable a makefile option
disable_feature() {
sed -i \
-e "/$1.*=/s:^:# :" \
"${S}"/makefile \
|| die "sed failed"
}
# Function to enable a makefile option
enable_feature() {
sed -i \
-e "/^#.*$1.*=/s:^# ::" \
"${S}"/makefile \
|| die "sed failed"
}
pkg_setup() {
if use opengl && ! built_with_use media-libs/libsdl opengl ; then
die "Please emerge media-libs/libsdl with USE=opengl"
fi
games_pkg_setup
}
src_unpack() {
unpack ${A}
sed -i \
-e '/CFLAGS += -O$(OPTIMIZE)/s:^:# :' \
-e '/CFLAGS += -pipe/s:^:# :' \
-e '/LDFLAGS += -s/s:^:# :' \
-e 's:-Werror::' \
"${S}"/makefile \
|| die "sed failed"
# CFLAGS and build debugging help
#sed -i \
# -e "/^\(AR\|CC\|LD\|RM\) =/s:@::" \
# -i "${S}"/makefile
}
src_compile() {
local make_opts
# Don't compile zlib and expat
einfo "Disabling embedded libraries: zlib and expat"
disable_feature BUILD_ZLIB
disable_feature BUILD_EXPAT
if use amd64; then
einfo "Enabling 64-bit support"
enable_feature PTR64
fi
if use ppc; then
einfo "Enabling PPC support"
enable_feature BIGENDIAN
fi
if use debug ; then
ewarn "Building with DEBUG support is not recommended for normal use"
enable_feature DEBUG
enable_feature PROFILE
enable_feature SYMBOLS
enable_feature DEBUGGER
fi
use opengl || make_opts="${make_opts} NO_OPENGL=1"
emake \
NAME="${PN}" \
OPT_FLAGS='-DINI_PATH=\"\$$HOME/.sdlmame\;'"${GAMES_SYSCONFDIR}/${PN}"'\"'" ${CFLAGS}" \
SUFFIX="" \
${make_opts} \
|| die "emake failed"
}
src_install() {
dogamesbin "${PN}" || die "dogamesbin "${PN}" failed"
# Follows xmame ebuild, avoiding collision on /usr/games/bin/jedutil
exeinto "$(games_get_libdir)/${PN}"
local f
for f in chdman makemeta jedutil romcmp testkeys; do
doexe "${f}" || die "doexe ${f} failed"
done
insinto "${GAMES_DATADIR}/${PN}"
doins ui.bdf || die "doins ui.bdf failed"
doins -r keymaps || die "doins -r keymaps failed"
insinto "${GAMES_SYSCONFDIR}/${PN}"
doins "${FILESDIR}"/{joymap.dat,vector.ini} || die "doins joymap.dat vector.ini failed"
sed \
-e "s:@GAMES_SYSCONFDIR@:${GAMES_SYSCONFDIR}:" \
-e "s:@GAMES_DATADIR@:${GAMES_DATADIR}:" \
"${FILESDIR}"/mame.ini.in > "${D}/${GAMES_SYSCONFDIR}/${PN}/"mame.ini \
|| die "sed failed"
dodoc docs/{config,mame,newvideo}.txt *.txt
doman "${WORKDIR}/${PN}-manpages"/*
keepdir "${GAMES_DATADIR}/${PN}"/{roms,samples,artwork}
keepdir "${GAMES_SYSCONFDIR}/${PN}"/ctrlr
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "It's strongly recommended that you change either the system-wide"
elog "mame.ini at \"${GAMES_SYSCONFDIR}/${PN}\" or use a per-user setup at \$HOME/.${PN}"
if use opengl; then
echo
elog "You built ${PN} with opengl support and should set"
elog "\"video\" to \"opengl\" in mame.ini to take advantage of that"
fi
}
|