summaryrefslogtreecommitdiff
path: root/emulators/fceux
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-12-12 19:19:02 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-12-12 19:19:02 +0000
commita0848d727648aa70f6a89c013203f2b82a4e972e (patch)
tree37ec8e378ec2d731e9ba9c15cd58724325a5637c /emulators/fceux
parentFix build by syncing with gaim-0.73. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_2_0'.release/5.2.0
Diffstat (limited to 'emulators/fceux')
-rw-r--r--emulators/fceux/Makefile106
-rw-r--r--emulators/fceux/distinfo1
-rw-r--r--emulators/fceux/files/patch-Makefile.base8
-rw-r--r--emulators/fceux/files/patch-Makefile.unixsdl18
-rw-r--r--emulators/fceux/pkg-descr12
-rw-r--r--emulators/fceux/pkg-plist30
6 files changed, 0 insertions, 175 deletions
diff --git a/emulators/fceux/Makefile b/emulators/fceux/Makefile
deleted file mode 100644
index 206eb3cebec6..000000000000
--- a/emulators/fceux/Makefile
+++ /dev/null
@@ -1,106 +0,0 @@
-# New ports collection makefile for: fceu
-# Date Created: 10 Mov 2002
-# Whom: HIYAMA Takeshi <gibbon@cocoa.freemail.ne.jp>
-#
-# $FreeBSD$
-#
-
-PORTNAME= fceu
-PORTVERSION= 0.96
-PORTREVISION= 1
-CATEGORIES= emulators
-MASTER_SITES= http://fceultra.sourceforge.net/files/
-DISTNAME= fceu${PORTVERSION:S/.//}src
-
-MAINTAINER= gibbon@cocoa.freemail.ne.jp
-COMMENT= A portable NES/Famicom emulator based on Bero's original FCE
-
-LIB_DEPENDS= SDL-1.1:${PORTSDIR}/devel/sdl12
-
-MAN6= fceu.6
-WRKSRC= ${WRKDIR}/fceu
-USE_X_PREFIX= yes
-USE_GMAKE= yes
-MAKEFILE= Makefile.unixsdl
-USE_REINPLACE= yes
-
-DOCS= AUTHORS COPYING ChangeLog FAQ README TODO \
- cheat.txt fcs.txt porting.txt rel/readme-linux.txt
-TECHDOCS= README.now README.sound UNIF_current.txt nsfspec.txt
-TECHCPUDOC= 4017.txt 6502_cpu.txt NESSOUND-4th.txt NESSOUND.txt dmc.txt
-TECHEXPDOCS= mmc5-e.txt mmc5_bank_switch.txt
-TECHPPUDOCS= "2C02\technical\operation.TXT" loopy1.txt loopy2.txt
-
-.if defined(WITH_OPTIMIZED_FLAGS)
-CFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double
-.if (${MACHINE_ARCH} == "i386")
-CFLAGS+= -mfancy-math-387
-.endif # i386
-.endif
-
-pre-everything::
-.if !defined(WITH_OPTIMIZED_FLAGS)
- @${ECHO_MSG} "You can optimize by setting WITH_OPTIMIZED_FLAGS=yes."
-.endif
-.if !defined(NOPORTDOCS) && !defined(TECH_DOC_INSTALL)
- @${ECHO_MSG} "You can install technical documents"
- @${ECHO_MSG} "by defining TECH_DOC_INSTALL"
-.endif
-
-.if !defined(NOPORTDOCS) && defined(TECH_DOC_INSTALL)
-PLIST_SUB= TECHDOCS=""
-.else
-PLIST_SUB= TECHDOCS="@comment "
-.endif
-
-.include <bsd.port.pre.mk>
-
-post-patch:
- @${REINPLACE_CMD} -e 's+%%LOCALBASE%%+${LOCALBASE}+g;' ${WRKSRC}/Makefile.unixsdl
-.if (${MACHINE_ARCH} != "i386")
-# do I have to do this for ia64 and amd64 too?
- @${REINPLACE_CMD} -e 's|-DC80x86||g;' ${WRKSRC}/Makefile.unixsdl
-.if (${MACHINE_ARCH} == "sparc64")
- @${REINPLACE_CMD} -e 's|-DLSB_FIRST||g;' ${WRKSRC}/Makefile.unixsdl
-.endif
-.endif
-
-pre-build:
- @${CP} ${WRKSRC}/Documentation/fceu-sdl.6 ${WRKSRC}/Documentation/fceu.6
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/fceu ${PREFIX}/bin
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.if !defined(NOPORTDOCS)
-.for docs in ${DOCS}
- ${INSTALL_DATA} ${WRKSRC}/Documentation/${docs} ${DOCSDIR}
-.endfor
-.endif
-.if !defined(NOPORTDOCS)
- ${INSTALL_MAN} ${WRKSRC}/Documentation/fceu.6 ${PREFIX}/man/man6
-.if defined(TECH_DOC_INSTALL)
- @${MKDIR} ${DOCSDIR}/tech
-.for docs in ${TECHDOCS}
- ${INSTALL_DATA} ${WRKSRC}/Documentation/tech/${docs} ${DOCSDIR}/tech
-.endfor
- @${MKDIR} ${DOCSDIR}/tech/cpu
-.for docs in ${TECHCPUDOC}
- ${INSTALL_DATA} ${WRKSRC}/Documentation/tech/cpu/${docs} \
- ${DOCSDIR}/tech/cpu
-.endfor
- @${MKDIR} ${DOCSDIR}/tech/exp
-.for docs in ${TECHEXPDOCS}
- ${INSTALL_DATA} ${WRKSRC}/Documentation/tech/exp/${docs} \
- ${DOCSDIR}/tech/exp
-.endfor
- @${MKDIR} ${DOCSDIR}/tech/ppu
-.for docs in ${TECHPPUDOCS}
- ${INSTALL_DATA} ${WRKSRC}/Documentation/tech/ppu/${docs:S/\\/ /g} \
- ${DOCSDIR}/tech/ppu
-.endfor
-.endif
-.endif
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/emulators/fceux/distinfo b/emulators/fceux/distinfo
deleted file mode 100644
index 18b73106c617..000000000000
--- a/emulators/fceux/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (fceu096src.tar.gz) = 26934713c1f64f20a3f4f8a2dba0f9fb
diff --git a/emulators/fceux/files/patch-Makefile.base b/emulators/fceux/files/patch-Makefile.base
deleted file mode 100644
index 1f7a86bda34d..000000000000
--- a/emulators/fceux/files/patch-Makefile.base
+++ /dev/null
@@ -1,8 +0,0 @@
---- Makefile.base.orig Mon Jul 21 06:27:19 2003
-+++ Makefile.base Mon Jul 21 06:27:28 2003
-@@ -1,4 +1,4 @@
--CFLAGS = -Wall -Winline ${TFLAGS}
-+CFLAGS += -Wall -Winline ${TFLAGS}
- OBJECTS = fce.o x6502.o video.o general.o endian.o svga.o sound.o nsf.o fds.o netplay.o ines.o state.o unif.o input.o file.o cart.o crc32.o memory.o cheat.o debug.o filter.o palette.o
-
- fceu: fceu2
diff --git a/emulators/fceux/files/patch-Makefile.unixsdl b/emulators/fceux/files/patch-Makefile.unixsdl
deleted file mode 100644
index 6fabf2caba4b..000000000000
--- a/emulators/fceux/files/patch-Makefile.unixsdl
+++ /dev/null
@@ -1,18 +0,0 @@
---- Makefile.unixsdl.orig Fri Jun 20 12:50:03 2003
-+++ Makefile.unixsdl Mon Jul 21 07:53:48 2003
-@@ -1,5 +1,5 @@
- CC = gcc
--TFLAGS = -DFRAMESKIP -DSTDIOIFACE -DUNIXDSP -DNETWORK -DFPS `sdl-config --cflags` -mcpu=i686 -O2 -Izlib -fomit-frame-pointer -DC80x86 -DLSB_FIRST -DSDL -DUNIX -DPSS_STYLE=1 -DZLIB
-+TFLAGS = -DFRAMESKIP -DSTDIOIFACE -DUNIXDSP -DNETWORK -DFPS `%%LOCALBASE%%/bin/sdl11-config --cflags` -Izlib -fomit-frame-pointer -DC80x86 -DLSB_FIRST -DSDL -DUNIX -DPSS_STYLE=1 -DZLIB
-
- RM = rm -f
- B = drivers/cli/
-@@ -9,7 +9,7 @@
- include zlib/Makefile
-
- OBJDRIVER = ${B}sdl.o ${B}interface.o ${B}main.o ${B}sdl-throttle.o ${B}unix-netplay.o ${B}sdl-sound.o ${B}sdl-video.o ${B}sdl-joystick.o drivers/common/cheat.o drivers/common/config.o drivers/common/args.o drivers/common/vidblit.o drivers/common/unixdsp.o ${UNZIPOBJS}
--LDRIVER = -lm `sdl-config --libs` -lz
-+LDRIVER = -lm `%%LOCALBASE%%/bin/sdl11-config --libs` -lz
-
- include Makefile.base
-
diff --git a/emulators/fceux/pkg-descr b/emulators/fceux/pkg-descr
deleted file mode 100644
index e83ddac8d7f5..000000000000
--- a/emulators/fceux/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-FCE Ultra is an NTSC and PAL Famicom/NES emulator for various
-platforms. It is based upon Bero's original FCE source code. Current
-features include good PPU, CPU, pAPU, expansion chip, and joystick
-emulation. Also a feature unique to this emulator(at the current
-time) is authentic Game Genie emulation. Save states and snapshot
-features also have been implemented. The VS Unisystem is emulated
-as well. FCE Ultra supports iNES format ROM images, UNIF format ROM
-images, headerless and FWNES style FDS disk images, and NSF files.
-
-FCE Ultra currently supports the following iNES mappers(many partially):
-
-WWW: http://fceultra.sourceforge.net/
diff --git a/emulators/fceux/pkg-plist b/emulators/fceux/pkg-plist
deleted file mode 100644
index 127ef2da2150..000000000000
--- a/emulators/fceux/pkg-plist
+++ /dev/null
@@ -1,30 +0,0 @@
-bin/fceu
-%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
-%%PORTDOCS%%%%DOCSDIR%%/COPYING
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/FAQ
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/TODO
-%%PORTDOCS%%%%DOCSDIR%%/cheat.txt
-%%PORTDOCS%%%%DOCSDIR%%/fcs.txt
-%%PORTDOCS%%%%DOCSDIR%%/porting.txt
-%%PORTDOCS%%%%DOCSDIR%%/readme-linux.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/README.now
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/README.sound
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/UNIF_current.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/nsfspec.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/cpu/4017.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/cpu/6502_cpu.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/cpu/NESSOUND-4th.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/cpu/NESSOUND.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/cpu/dmc.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/exp/mmc5-e.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/exp/mmc5_bank_switch.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/ppu/loopy1.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/ppu/loopy2.txt
-%%PORTDOCS%%%%TECHDOCS%%%%DOCSDIR%%/tech/ppu/2C02 technical operation.TXT
-%%PORTDOCS%%%%TECHDOCS%%@dirrm %%DOCSDIR%%/tech/ppu
-%%PORTDOCS%%%%TECHDOCS%%@dirrm %%DOCSDIR%%/tech/exp
-%%PORTDOCS%%%%TECHDOCS%%@dirrm %%DOCSDIR%%/tech/cpu
-%%PORTDOCS%%%%TECHDOCS%%@dirrm %%DOCSDIR%%/tech
-%%PORTDOCS%%@dirrm %%DOCSDIR%%