blob: 9ec9132035154477c905fa023066c3a7f66c1b77 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-emulation/fceultra/fceultra-080.ebuild,v 1.4 2002/08/06 18:45:06 gerk Exp $
SLOT="0"
KEYWORDS="x86 -ppc"
LICENSE="GPL-2"
MY_P=fceu
S=${WORKDIR}/${MY_P}
DESCRIPTION="A portable NES/Famicom Emulator"
SRC_URI="http://fceultra.sourceforge.net/dev/${MY_P}${PV}src.tar.gz"
HOMEPAGE="http://fceultra.sourceforge.net"
DEPEND=">=media-libs/svgalib-1.4.2"
src_compile() {
mv Makefile.base Makefile.orig
sed -e "s:\${TFLAGS}:\${TFLAGS} ${CFLAGS}:" \
Makefile.orig > Makefile.base
make -f Makefile.linuxvga || die
}
src_install() {
dobin fce
cd Documentation
dodoc LICENSE README RELEASE-NOTES fcs.txt porting.txt \
rel/readme-linux.txt
}
|