summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorMarcus von Appen <mva@FreeBSD.org>2013-11-28 21:56:19 +0000
committerMarcus von Appen <mva@FreeBSD.org>2013-11-28 21:56:19 +0000
commit632197ac68d5140b866ee6a8190a96093e3d874e (patch)
treeda89717c4f8623857e31c77442209eced2724fc6 /games
parent- Simplify port installation. Install everything from the CD, since the (diff)
- Update to version 1.3.11.24
Notes
Notes: svn path=/head/; revision=335123
Diffstat (limited to 'games')
-rw-r--r--games/manaplus/Makefile2
-rw-r--r--games/manaplus/distinfo4
-rw-r--r--games/manaplus/files/patch-src_gui_gui.cpp11
-rw-r--r--games/manaplus/files/patch-src_gui_gui.h10
-rw-r--r--games/manaplus/files/patch-src_gui_sdlinput.cpp10
-rw-r--r--games/manaplus/files/patch-src_gui_sdlinput.h20
-rw-r--r--games/manaplus/files/patch-src_gui_widgets_textfield.cpp10
-rw-r--r--games/manaplus/files/patch-src_gui_windows_chatwindow.cpp10
8 files changed, 3 insertions, 74 deletions
diff --git a/games/manaplus/Makefile b/games/manaplus/Makefile
index 8c970fe4e2a0..b25372404729 100644
--- a/games/manaplus/Makefile
+++ b/games/manaplus/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= manaplus
-PORTVERSION= 1.3.11.10
+PORTVERSION= 1.3.11.24
CATEGORIES= games
MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/
diff --git a/games/manaplus/distinfo b/games/manaplus/distinfo
index 44385a48779a..4a4707b97330 100644
--- a/games/manaplus/distinfo
+++ b/games/manaplus/distinfo
@@ -1,2 +1,2 @@
-SHA256 (manaplus-1.3.11.10.tar.xz) = f26a6d08f01f0f237d618d4b702b8a4c492153206d4c8ecbd19c051e69402e76
-SIZE (manaplus-1.3.11.10.tar.xz) = 7363924
+SHA256 (manaplus-1.3.11.24.tar.xz) = 0a64dfe9d87d83d059a503e18ff2ff1dae34f386d3c193b42274a2a820807139
+SIZE (manaplus-1.3.11.24.tar.xz) = 7406740
diff --git a/games/manaplus/files/patch-src_gui_gui.cpp b/games/manaplus/files/patch-src_gui_gui.cpp
deleted file mode 100644
index 84ea4f431466..000000000000
--- a/games/manaplus/files/patch-src_gui_gui.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/gui/gui.cpp.orig 2013-11-12 08:04:31.000000000 +0100
-+++ src/gui/gui.cpp 2013-11-12 08:04:53.000000000 +0100
-@@ -20,6 +20,8 @@
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-+#include "mouseinput.h"
-+
- #include "gui/gui.h"
-
- #include "gui/focushandler.h"
diff --git a/games/manaplus/files/patch-src_gui_gui.h b/games/manaplus/files/patch-src_gui_gui.h
deleted file mode 100644
index 1d667e725813..000000000000
--- a/games/manaplus/files/patch-src_gui_gui.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/gui/gui.h.orig 2013-11-12 08:05:48.000000000 +0100
-+++ src/gui/gui.h 2013-11-12 08:05:59.000000000 +0100
-@@ -33,6 +33,7 @@
- class GuiConfigListener;
- class ImageSet;
- class MouseEvent;
-+class MouseInput;
- class SDLFont;
- class SDLInput;
- class Window;
diff --git a/games/manaplus/files/patch-src_gui_sdlinput.cpp b/games/manaplus/files/patch-src_gui_sdlinput.cpp
deleted file mode 100644
index 07c2c86d12ce..000000000000
--- a/games/manaplus/files/patch-src_gui_sdlinput.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/gui/sdlinput.cpp.orig 2013-11-12 08:06:22.000000000 +0100
-+++ src/gui/sdlinput.cpp 2013-11-12 08:06:34.000000000 +0100
-@@ -58,7 +58,6 @@
-
- #include "gui/sdlinput.h"
-
--#include "mouseinput.h"
- #include "sdlshared.h"
-
- #include "input/inputmanager.h"
diff --git a/games/manaplus/files/patch-src_gui_sdlinput.h b/games/manaplus/files/patch-src_gui_sdlinput.h
deleted file mode 100644
index 16a5017d6fdc..000000000000
--- a/games/manaplus/files/patch-src_gui_sdlinput.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/gui/sdlinput.h.orig 2013-11-12 08:07:13.000000000 +0100
-+++ src/gui/sdlinput.h 2013-11-12 08:07:56.000000000 +0100
-@@ -61,6 +61,8 @@
-
- #include "input/keyinput.h"
-
-+#include "mouseinput.h"
-+
- #include <SDL_events.h>
-
- #include <guichan/input.hpp>
-@@ -69,8 +71,6 @@
-
- #include <queue>
-
--class MouseInput;
--
- namespace Key
- {
- enum
diff --git a/games/manaplus/files/patch-src_gui_widgets_textfield.cpp b/games/manaplus/files/patch-src_gui_widgets_textfield.cpp
deleted file mode 100644
index d574710fb198..000000000000
--- a/games/manaplus/files/patch-src_gui_widgets_textfield.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/gui/widgets/textfield.cpp.orig 2013-11-12 08:08:20.000000000 +0100
-+++ src/gui/widgets/textfield.cpp 2013-11-12 08:08:36.000000000 +0100
-@@ -23,6 +23,7 @@
- #include "gui/widgets/textfield.h"
-
- #include "client.h"
-+#include "mouseinput.h"
-
- #ifdef ANDROID
- #include "input/inputmanager.h"
diff --git a/games/manaplus/files/patch-src_gui_windows_chatwindow.cpp b/games/manaplus/files/patch-src_gui_windows_chatwindow.cpp
deleted file mode 100644
index 1ac5136574b4..000000000000
--- a/games/manaplus/files/patch-src_gui_windows_chatwindow.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/gui/windows/chatwindow.cpp.orig 2013-11-12 08:08:53.000000000 +0100
-+++ src/gui/windows/chatwindow.cpp 2013-11-12 08:09:13.000000000 +0100
-@@ -28,6 +28,7 @@
- #include "configuration.h"
- #include "game.h"
- #include "guild.h"
-+#include "mouseinput.h"
- #include "party.h"
- #include "spellshortcut.h"
-