aboutsummaryrefslogtreecommitdiffstats
path: root/emulators
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2018-03-03 03:10:48 +0800
committerrene <rene@FreeBSD.org>2018-03-03 03:10:48 +0800
commitba99f44a10bd5438c35030248378497f3826325b (patch)
tree6df9d024d7f94a3241c3a3279e74f29e9e65c80c /emulators
parentde7775aa80e90599e9768ea6134bd8adcaf2a215 (diff)
downloadfreebsd-ports-gnome-ba99f44a10bd5438c35030248378497f3826325b.tar.gz
freebsd-ports-gnome-ba99f44a10bd5438c35030248378497f3826325b.tar.zst
freebsd-ports-gnome-ba99f44a10bd5438c35030248378497f3826325b.zip
Remove expired ports:
2018-03-01 devel/dotconf++: No upstream, not depend on in the ports tree 2018-03-01 emulators/gnuboy: Latest version is 1.0.5, older version does not fetch 2018-03-01 games/adgali: Mastersite disappeared 2018-03-01 games/tuxpuck: Mastersite disappeared 2018-03-01 japanese/migemo-emacs: Unmaintained 2018-03-01 math/clarence: Mastersite disappeared 2018-03-01 devel/cstringbuffer: Abandonware, no more upstream 2018-03-01 deskutils/charmap: Mastersite disappeared 2018-03-01 devel/afay: Abandonware, not used in the ports tree 2018-03-01 devel/alabastra: Abandonware, not used in the ports tree 2018-03-01 devel/adime: Abandonware, not used in the ports tree 2018-03-01 devel/boaconstructor: Abandonware, does not work with recent python/wxPython 2018-03-01 audio/amp: No more upstream 2018-03-01 devel/alf: Abandonware, unused in the ports tree
Diffstat (limited to 'emulators')
-rw-r--r--emulators/Makefile1
-rw-r--r--emulators/gnuboy/Makefile52
-rw-r--r--emulators/gnuboy/distinfo2
-rw-r--r--emulators/gnuboy/files/patch-configure.in37
-rw-r--r--emulators/gnuboy/pkg-descr6
5 files changed, 0 insertions, 98 deletions
diff --git a/emulators/Makefile b/emulators/Makefile
index 4f62e7b15c70..b4833152530d 100644
--- a/emulators/Makefile
+++ b/emulators/Makefile
@@ -49,7 +49,6 @@
SUBDIR += gngb
SUBDIR += gngeo
SUBDIR += gns3
- SUBDIR += gnuboy
SUBDIR += gxemul
SUBDIR += hatari
SUBDIR += hercules
diff --git a/emulators/gnuboy/Makefile b/emulators/gnuboy/Makefile
deleted file mode 100644
index c0257ab5314b..000000000000
--- a/emulators/gnuboy/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= gnuboy
-PORTVERSION= 1.0.3
-PORTREVISION= 11
-CATEGORIES= emulators games
-MASTER_SITES= SF
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Nintendo GameBoy emulator
-
-LICENSE= GPLv2+
-LICENSE_FILE= ${WRKSRC}/COPYING
-
-DEPRECATED= Latest version is 1.0.5, older version does not fetch
-EXPIRATION_DATE= 2018-03-01
-ONLY_FOR_ARCHS= amd64 i386
-ONLY_FOR_ARCHS_REASON= relies on features specific to x86
-
-LIB_DEPENDS= libvga.so:graphics/svgalib
-
-USES= autoreconf compiler
-USE_SDL= sdl
-USE_XORG= x11
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-sdl --enable-optimize=low
-
-PORTDOCS= *
-PLIST_FILES= bin/sdlgnuboy bin/sgnuboy bin/xgnuboy
-
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib
-
-OPTIONS_DEFINE= DOCS
-
-.include <bsd.port.pre.mk>
-
-.if ${COMPILER_TYPE} == "clang"
-CONFIGURE_ARGS+=--disable-asm
-.endif
-
-do-install:
-.for i in sdlgnuboy sgnuboy xgnuboy
- (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${i} ${STAGEDIR}${PREFIX}/bin)
-.endfor
-
-do-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- (cd ${WRKSRC}/docs && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR})
-
-.include <bsd.port.post.mk>
diff --git a/emulators/gnuboy/distinfo b/emulators/gnuboy/distinfo
deleted file mode 100644
index 73b2d861eec2..000000000000
--- a/emulators/gnuboy/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (gnuboy-1.0.3.tar.gz) = f0022db824b920054a42690322932cf582e0a9995961124586f054503a0f8072
-SIZE (gnuboy-1.0.3.tar.gz) = 187627
diff --git a/emulators/gnuboy/files/patch-configure.in b/emulators/gnuboy/files/patch-configure.in
deleted file mode 100644
index a928b9d32aac..000000000000
--- a/emulators/gnuboy/files/patch-configure.in
+++ /dev/null
@@ -1,37 +0,0 @@
---- configure.in.orig Sat Jun 30 16:38:55 2001
-+++ configure.in Sat Jun 30 16:42:42 2001
-@@ -79,12 +79,12 @@
- if test "$with_sdl" != "no" ; then
- AC_CHECK_PROG(SDL_CONFIG, sdl-config, yes)
- if test "$SDL_CONFIG" ; then
--SDL_LIBS="`sdl-config --libs`"
--SDL_CFLAGS="`sdl-config --cflags`"
-+SDL_LIBS="`$SDL_CONFIG --libs`"
-+SDL_CFLAGS="`$SDL_CONFIG --cflags`"
- old_incs="$INCS"
- INCS="$INCS $SDL_CFLAGS"
--AC_CHECK_LIB(SDL, SDL_Init, [
--AC_CHECK_HEADERS(SDL/SDL.h, ,[
-+AC_CHECK_LIB(SDL, SDL_Init, [
-+AC_CHECK_HEADERS(SDL/SDL.h, ,[
- AC_MSG_WARN(SDL found but headers are missing!!)
- with_sdl=no
- ])], [with_sdl=no], $SDL_LIBS)
-@@ -189,7 +189,7 @@
- yes|full)
- AC_MSG_RESULT(producing heavily optimized code)
-
--CFLAGS="$CFLAGS -O3"
-+CFLAGS="$CFLAGS"
-
- case `uname -m` in
- i?86) CFLAGS="$CFLAGS -DALLOW_UNALIGNED_IO" ;;
-@@ -214,7 +214,7 @@
- low)
-
- AC_MSG_RESULT(using minimal optimizations)
--CFLAGS="$CFLAGS -O3" ;;
-+CFLAGS="$CFLAGS" ;;
-
- esac
-
diff --git a/emulators/gnuboy/pkg-descr b/emulators/gnuboy/pkg-descr
deleted file mode 100644
index 52b34235879f..000000000000
--- a/emulators/gnuboy/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-gnuboy is a portable program for emulating the Nintendo GameBoy Color
-software platform
-
-You can find public domain ROMs at SubPort.org
-
-WWW: https://sourceforge.net/projects/gnuboy/