blob: f0b889f37e356e52484da0f3533ace4bd55fb3d8 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/mednafen/mednafen-0.6.5.ebuild,v 1.1 2006/09/29 15:31:12 nyhm Exp $
inherit games
DESCRIPTION="An advanced NES, GB/GBC/GBA, TurboGrafx 16/CD, and Lynx emulator"
HOMEPAGE="http://mednafen.com/"
SRC_URI="http://mednafen.com/releases/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls"
RDEPEND="virtual/opengl
media-libs/libsndfile
dev-libs/libcdio
>=media-libs/libsdl-1.2.0
media-libs/sdl-net
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e 's:\$(datadir)/locale:/usr/share/locale:' \
$(find . -name 'Makefile.in*') \
|| die "sed failed"
}
src_compile() {
egamesconf \
$(use_enable nls) \
--disable-dependency-tracking || die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog TODO NEWS
dohtml Documentation/*
prepgamesdirs
}
|