blob: 34f3f2795d43ad1a3a570b2612c463a27b23dc5b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/mekanix/mekanix-070.ebuild,v 1.5 2006/12/01 21:30:35 wolf31o2 Exp $
inherit games
DESCRIPTION="SG-1000, SC-3000, SF-7000, SSC, SMS, GG, COLECO, and OMV emulator"
HOMEPAGE="http://www.smspower.org/meka/"
SRC_URI="http://www.smspower.org/meka/releases/${PN}${PV}.tgz"
LICENSE="mekanix"
SLOT="0"
KEYWORDS="x86"
RESTRICT="strip"
IUSE=""
RDEPEND="media-libs/libpng
x11-libs/libXpm"
S=${WORKDIR}/${PN}
src_install() {
local dir="${GAMES_PREFIX_OPT}/${PN}"
insinto "${dir}"
doins * || die "doins failed"
fperms a+x "${dir}/meka.exe"
games_make_wrapper mekanix ./meka.exe "${dir}"
prepgamesdirs
}
|