summaryrefslogtreecommitdiff
blob: 741095b8cb2e25c30011617f04a8e1a30f30cd13 (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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

S=${WORKDIR}/${P}
DESCRIPTION="An input plugin for the mupen64 N64 emulator"
SRC_URI="http://deltaanime.ath.cx/~blight/n64/blight_input_plugin/${P}.tar.gz"
HOMEPAGE="http://mupen64.emulation64.com/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -ppc -sparc -sparc64"

DEPEND="media-libs/libsdl
	media-libs/freetype"
	
src_compile() {
cd ${S}/SDL_ttf2
	rm config.cache
	cp SDL_ttf.h ${S}
	econf || die
	emake || die
cd ${S}
	emake || die
}

src_install () {
	dodir /usr/lib/mupen64/plugins
	insinto /usr/lib/mupen64/plugins
        doins blight_input.so
}