diff options
author | danilo <danilo@FreeBSD.org> | 2015-11-25 01:39:02 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2015-11-25 01:39:02 +0800 |
commit | 9a8adc7c8c16116adf375c599f7fb55f951b0760 (patch) | |
tree | 8df1918c5d3a6c338033e7fc45ffee959f4318a1 /games | |
parent | 94a2d71af8378ce02618c348eca3ce66df0cb215 (diff) | |
download | freebsd-ports-gnome-9a8adc7c8c16116adf375c599f7fb55f951b0760.tar.gz freebsd-ports-gnome-9a8adc7c8c16116adf375c599f7fb55f951b0760.tar.zst freebsd-ports-gnome-9a8adc7c8c16116adf375c599f7fb55f951b0760.zip |
- Update to 1.4.5
Diffstat (limited to 'games')
6 files changed, 3 insertions, 55 deletions
diff --git a/games/solarus-quest-editor/Makefile b/games/solarus-quest-editor/Makefile index 1529581bf6f3..53bf93e27d4a 100644 --- a/games/solarus-quest-editor/Makefile +++ b/games/solarus-quest-editor/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= solarus-quest-editor -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.5 CATEGORIES= games MAINTAINER= danilo@FreeBSD.org diff --git a/games/solarus-quest-editor/distinfo b/games/solarus-quest-editor/distinfo index 4c21025ee29c..3e5ae97705c4 100644 --- a/games/solarus-quest-editor/distinfo +++ b/games/solarus-quest-editor/distinfo @@ -1,2 +1,2 @@ -SHA256 (christopho-solarus-quest-editor-1.4.4-v1.4.4_GH0.tar.gz) = cf65b753d95c2328c9132108f8e7f233091db6298fa2cbc1a9894506ca8f58cf -SIZE (christopho-solarus-quest-editor-1.4.4-v1.4.4_GH0.tar.gz) = 11819019 +SHA256 (christopho-solarus-quest-editor-1.4.5-v1.4.5_GH0.tar.gz) = e569282947b8e4d1c21f62d9243dfb0534411bbc469fda7ff29706adb797c493 +SIZE (christopho-solarus-quest-editor-1.4.5-v1.4.5_GH0.tar.gz) = 11824339 diff --git a/games/solarus-quest-editor/files/patch-include_gui_plain__text__edit.h b/games/solarus-quest-editor/files/patch-include_gui_plain__text__edit.h deleted file mode 100644 index d92b69fb6432..000000000000 --- a/games/solarus-quest-editor/files/patch-include_gui_plain__text__edit.h +++ /dev/null @@ -1,10 +0,0 @@ ---- include/gui/plain_text_edit.h.orig 2015-08-20 11:15:41 UTC -+++ include/gui/plain_text_edit.h -@@ -19,6 +19,7 @@ - - #include <QPlainTextEdit> - #include <QPainter> -+#include <cmath> - - /** - * @brief A plain text editor that sends editing_finished() signal when the text diff --git a/games/solarus-quest-editor/files/patch-src_gui_dialog__properties__table.cpp b/games/solarus-quest-editor/files/patch-src_gui_dialog__properties__table.cpp deleted file mode 100644 index 269392de0328..000000000000 --- a/games/solarus-quest-editor/files/patch-src_gui_dialog__properties__table.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/gui/dialog_properties_table.cpp.orig 2015-08-20 11:15:41 UTC -+++ src/gui/dialog_properties_table.cpp -@@ -19,6 +19,7 @@ - #include <QAction> - #include <QMenu> - #include <QContextMenuEvent> -+#include <cmath> - - /** - * @brief Creates an empty dialogs tree view. diff --git a/games/solarus-quest-editor/files/patch-src_gui_strings__editor.cpp b/games/solarus-quest-editor/files/patch-src_gui_strings__editor.cpp deleted file mode 100644 index 59ac81d5a64e..000000000000 --- a/games/solarus-quest-editor/files/patch-src_gui_strings__editor.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/gui/strings_editor.cpp.orig 2015-08-20 11:15:41 UTC -+++ src/gui/strings_editor.cpp -@@ -23,6 +23,7 @@ - #include "strings_model.h" - #include <QUndoStack> - #include <QMessageBox> -+#include <cmath> - - namespace { - diff --git a/games/solarus-quest-editor/files/patch-src_quest__runner.cpp b/games/solarus-quest-editor/files/patch-src_quest__runner.cpp deleted file mode 100644 index 3e17c1fb0154..000000000000 --- a/games/solarus-quest-editor/files/patch-src_quest__runner.cpp +++ /dev/null @@ -1,22 +0,0 @@ ---- src/quest_runner.cpp.orig 2015-08-20 11:15:41 UTC -+++ src/quest_runner.cpp -@@ -22,6 +22,7 @@ - #include <solarus/lowlevel/Debug.h> - #include <solarus/lua/LuaContext.h> - #include <iostream> -+#include <QApplication> - #include <QSize> - - /** -@@ -88,7 +89,10 @@ void QuestRunner::run() { - - try { - -- Solarus::Arguments arguments; -+ std::string argv0 = QApplication::arguments().at(0).toStdString(); -+ char *argv[1] = {(char *) argv0.c_str()}; -+ -+ Solarus::Arguments arguments(1, argv); - - // no-audio. - if (settings.get_value_bool(Settings::no_audio)) { |