summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2016-09-30 13:54:13 +0000
committerJohn Marino <marino@FreeBSD.org>2016-09-30 13:54:13 +0000
commit39109a72a0e5c1d6c19e791f4656cf6e24197f28 (patch)
tree7478c613699dca0fb2c3e58aaddfe09fd41a8c54 /games
parentUpdate to 0.12.4 (diff)
Remove obsolete ports games/fgrun
The recommended launcher of the latest flightgear is inbuilt. fgrun is neither maintained nor compatible with it and thus is useless to everyone. PR: 213063 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=422987
Diffstat (limited to 'games')
-rw-r--r--games/Makefile1
-rw-r--r--games/fgrun/Makefile44
-rw-r--r--games/fgrun/distinfo2
-rw-r--r--games/fgrun/files/patch-CMakeLists.txt18
-rw-r--r--games/fgrun/files/patch-src-fgrun_pty.cxx14
-rw-r--r--games/fgrun/files/patch-src-run_posix.cxx11
-rw-r--r--games/fgrun/pkg-descr4
-rw-r--r--games/fgrun/pkg-plist9
8 files changed, 0 insertions, 103 deletions
diff --git a/games/Makefile b/games/Makefile
index b5b79244095a..aac4ac1a53ee 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -256,7 +256,6 @@
SUBDIR += farblazer
SUBDIR += fargoal
SUBDIR += fbg2
- SUBDIR += fgrun
SUBDIR += fightorperish
SUBDIR += fillets-ng
SUBDIR += filters
diff --git a/games/fgrun/Makefile b/games/fgrun/Makefile
deleted file mode 100644
index 592fd1bbd68f..000000000000
--- a/games/fgrun/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# Created by: buganini@gmail.com
-# $FreeBSD$
-
-PORTNAME= fgrun
-PORTVERSION= 3.2.0
-CATEGORIES= games
-MASTER_SITES= LOCAL/martymac
-
-MAINTAINER= buganini@gmail.com
-COMMENT= Graphical frontend to run FlightGear Flight Simulator
-
-LICENSE= GPLv2
-
-LIB_DEPENDS= libfltk.so:x11-toolkits/fltk \
- libosg.so:graphics/osg
-BUILD_DEPENDS= simgear>=2.10.0:devel/simgear \
- ${LOCALBASE}/include/boost/version.hpp:devel/boost-libs
-RUN_DEPENDS= simgear>=2.10.0:devel/simgear \
- fgfs:games/flightgear
-
-WRKSRC= ${WRKDIR}/${GO_ACCOUNT}-${GO_PROJECT}
-
-CMAKE_ARGS+= -DLIB_DIR=${PREFIX}/lib
-
-USES= cmake compiler
-USE_GL= gl
-
-GO_ACCOUNT= fg
-GO_PROJECT= fgrun
-GO_TAGNAME= 00580a1c6b64b46fe430b0f1c0caafb4f63448fb
-FETCH_ARGS?= -o ${DISTDIR}/${DISTFILES}
-
-OPTIONS_DEFINE= NLS
-OPTIONS_SUB= yes
-NLS_USES= gettext
-NLS_CMAKE_ON= -DENABLE_NLS=yes
-
-.include <bsd.port.pre.mk>
-
-.if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} < 46
-USE_GCC= yes
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/games/fgrun/distinfo b/games/fgrun/distinfo
deleted file mode 100644
index 99e7b52d67d3..000000000000
--- a/games/fgrun/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (fgrun-3.2.0.tar.gz) = 324305affc448f3af174bb2143bd622e2fde9c3f4c420b083cba13584e47245a
-SIZE (fgrun-3.2.0.tar.gz) = 194310
diff --git a/games/fgrun/files/patch-CMakeLists.txt b/games/fgrun/files/patch-CMakeLists.txt
deleted file mode 100644
index 9b638ab43d9b..000000000000
--- a/games/fgrun/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,18 +0,0 @@
---- CMakeLists.txt.orig 2014-05-12 04:37:55.000000000 +0800
-+++ CMakeLists.txt 2014-05-12 04:38:05.000000000 +0800
-@@ -137,7 +137,6 @@
-
- if (ENABLE_NLS AND GETTEXT_FOUND)
-
-- if (MSVC)
- FIND_LIBRARY(INTL_LIBRARY
- NAMES intl
- HINTS
-@@ -153,7 +152,6 @@
- if (NOT INTL_LIBRARY)
- set( ENABLE_NLS 0 )
- endif (NOT INTL_LIBRARY)
-- endif (MSVC)
-
- if (ENABLE_NLS)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_NLS")
diff --git a/games/fgrun/files/patch-src-fgrun_pty.cxx b/games/fgrun/files/patch-src-fgrun_pty.cxx
deleted file mode 100644
index 908d383c08f3..000000000000
--- a/games/fgrun/files/patch-src-fgrun_pty.cxx
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/fgrun_pty.cxx.orig 2014-05-12 04:35:04.000000000 +0800
-+++ src/fgrun_pty.cxx 2014-05-12 04:35:29.000000000 +0800
-@@ -40,6 +40,11 @@
- #include <fcntl.h> // O_RDWR
- #endif
-
-+#include <sys/types.h>
-+#include <sys/ioctl.h>
-+#include <termios.h>
-+#include <libutil.h>
-+
- #include <stdlib.h> //needed on some linux systems for grantpt()
- #include <string.h> //strcpy is not necessarily already included
- /**
diff --git a/games/fgrun/files/patch-src-run_posix.cxx b/games/fgrun/files/patch-src-run_posix.cxx
deleted file mode 100644
index 2059354fc979..000000000000
--- a/games/fgrun/files/patch-src-run_posix.cxx
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/run_posix.cxx.orig 2014-05-12 04:32:03.000000000 +0800
-+++ src/run_posix.cxx 2014-05-12 04:32:24.000000000 +0800
-@@ -60,7 +60,7 @@
- #if defined(HAVE_TERMIOS_H)
- struct termios term;
- tcgetattr( STDOUT_FILENO, &term );
-- term.c_oflag &= ~( OLCUC | ONLCR );
-+ term.c_oflag &= ~ONLCR;
-
- pid = pty_fork( &master, 0, &term, 0 );
- #else
diff --git a/games/fgrun/pkg-descr b/games/fgrun/pkg-descr
deleted file mode 100644
index bebab25662c1..000000000000
--- a/games/fgrun/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-FlightGear Launch Control is a graphical frontend for running
-FlightGear flight simulator, <http://www.flightgear.org/>.
-
-WWW: http://sourceforge.net/projects/fgrun/
diff --git a/games/fgrun/pkg-plist b/games/fgrun/pkg-plist
deleted file mode 100644
index ddb66d0d5b5d..000000000000
--- a/games/fgrun/pkg-plist
+++ /dev/null
@@ -1,9 +0,0 @@
-bin/fgrun
-%%NLS%%share/locale/de/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/es/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/it/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/nl/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/fgrun.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/fgrun.mo