summaryrefslogtreecommitdiff
blob: 7c199eed1112d5f7d4f483961b659c77b14b5e60 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# /space/gentoo/cvsroot/gentoo-x86/app-emulation/zsnes/zsnes-1.337-r1.ebuild,v 1.2 2002/05/08 08:48:20 spider Exp
# Don't attempt to introduce $CFLAGS usage, docs say result will be slower.

S=${WORKDIR}/${P}
DESCRIPTION="zsnes is an excellent snes (super nintendo) emulator"
SRC_URI="mirror://sourceforge/zsnes/zsnes1337src.tar.gz"
HOMEPAGE="http://www.zsnes.com/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"

RDEPEND="opengl? ( virtual/opengl )
    virtual/x11
    >=media-libs/libsdl-1.2.0
    sys-libs/zlib
    media-libs/libpng"

DEPEND="${RDEPEND}
	>=dev-lang/nasm-0.98"
	

src_compile() {
    patch -p1 < ${FILESDIR}/${P}-gentoo.patch
    cd ${S}/src
    use opengl || myconf="--without-opengl"
    ./configure --prefix=/usr --host=${CHOST} $myconf || die
    make || die
}
src_install () {
    cd ${S}/src
    into /usr
    dobin zsnes
    doman linux/zsnes.man
    cd ${S}
    dodoc *.txt linux/*
}