aboutsummaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2015-07-30 00:16:28 +0800
committerDmitry Marakasov <amdmi3@FreeBSD.org>2015-07-30 00:16:28 +0800
commit6cc84cfeb3626e11fb5ea2f89115c1eda4ed0b30 (patch)
tree68653343bb77e01a10591e916a761a4c46579386 /editors
parentc0b7a3fc422ac9d0da75a9175506eb3344b45f00 (diff)
downloadfreebsd-ports-gnome-6cc84cfeb3626e11fb5ea2f89115c1eda4ed0b30.tar.gz
freebsd-ports-gnome-6cc84cfeb3626e11fb5ea2f89115c1eda4ed0b30.tar.zst
freebsd-ports-gnome-6cc84cfeb3626e11fb5ea2f89115c1eda4ed0b30.zip
- Update to 2.9.4
PR: 201092 Submitted by: sergey.v.brunov@gmail.com Approved by: maintainer timeout (abiliojr@gmail.com, 4 weeks)
Diffstat (limited to 'editors')
-rw-r--r--editors/texstudio/Makefile3
-rw-r--r--editors/texstudio/distinfo4
-rw-r--r--editors/texstudio/files/patch-debughelper.cpp42
-rw-r--r--editors/texstudio/files/patch-texstudio.pro13
4 files changed, 3 insertions, 59 deletions
diff --git a/editors/texstudio/Makefile b/editors/texstudio/Makefile
index 5a8242dc9c95..a8136dce923a 100644
--- a/editors/texstudio/Makefile
+++ b/editors/texstudio/Makefile
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= texstudio
-PORTVERSION= 2.8.8
-PORTREVISION= 1
+PORTVERSION= 2.9.4
CATEGORIES= editors
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/TeXstudio%20${PORTVERSION}
diff --git a/editors/texstudio/distinfo b/editors/texstudio/distinfo
index d884000fbe2c..6d95f1e9b8c0 100644
--- a/editors/texstudio/distinfo
+++ b/editors/texstudio/distinfo
@@ -1,2 +1,2 @@
-SHA256 (texstudio-2.8.8.tar.gz) = 5d00c42425c0d1464438c0c1701508fef281f5dbdd0fbcebdbba9de60ac6db95
-SIZE (texstudio-2.8.8.tar.gz) = 25198033
+SHA256 (texstudio-2.9.4.tar.gz) = dc71590e3745ac193a640667737befd665d549e642e268eec7a8238d3b61b5ea
+SIZE (texstudio-2.9.4.tar.gz) = 25292627
diff --git a/editors/texstudio/files/patch-debughelper.cpp b/editors/texstudio/files/patch-debughelper.cpp
deleted file mode 100644
index 291441e75198..000000000000
--- a/editors/texstudio/files/patch-debughelper.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
---- debughelper.cpp.orig 2014-12-04 18:53:50 UTC
-+++ debughelper.cpp
-@@ -107,6 +107,7 @@ struct SimulatedCPU {
- //===========================CRASH HANDLER HEADER==============================
-
- #ifdef OS_IS_UNIX_LIKE
-+#include "signal.h"
- #include "unistd.h"
- #include "sys/wait.h"
- #define SAFE_INT volatile sig_atomic_t
-@@ -473,13 +474,25 @@ void print_backtrace(const QString& mess
-
- #define USE_SIGNAL_HANDLER
- #ifdef CPU_IS_X86_64
--#define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_RIP]
--#define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_RSP]
--#define FRAME_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_RBP]
-+ #if defined(__FreeBSD__)
-+ #define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.mc_rip
-+ #define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.mc_rsp
-+ #define FRAME_FROM_UCONTEXT(context) (context)->uc_mcontext.mc_rbp
-+ #else
-+ #define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_RIP]
-+ #define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_RSP]
-+ #define FRAME_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_RBP]
-+ #endif
- #elif defined(CPU_IS_X86_32)
--#define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_EIP]
--#define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_ESP]
--#define FRAME_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_EBP]
-+ #if defined(__FreeBSD__)
-+ #define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.mc_eip
-+ #define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.mc_esp
-+ #define FRAME_FROM_UCONTEXT(context) (context)->uc_mcontext.mc_ebp
-+ #else
-+ #define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_EIP]
-+ #define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_ESP]
-+ #define FRAME_FROM_UCONTEXT(context) (context)->uc_mcontext.gregs[REG_EBP]
-+ #endif
- #elif defined(CPU_IS_PPC)
- #define PC_FROM_UCONTEXT(context) (context)->uc_mcontext.gp_regs[32]
- #define STACK_FROM_UCONTEXT(context) (context)->uc_mcontext.gp_regs[1]
diff --git a/editors/texstudio/files/patch-texstudio.pro b/editors/texstudio/files/patch-texstudio.pro
deleted file mode 100644
index 69ee09b4a7db..000000000000
--- a/editors/texstudio/files/patch-texstudio.pro
+++ /dev/null
@@ -1,13 +0,0 @@
---- texstudio.pro.orig 2014-12-10 21:27:10 UTC
-+++ texstudio.pro
-@@ -531,6 +531,10 @@ unix {
- -lz
- }
-
-+freebsd-* {
-+ LIBS += -lexecinfo
-+}
-+
- # ################################
- # Poppler PDF Preview, will only be used if NO_POPPLER_PREVIEW is not set
- isEmpty(NO_POPPLER_PREVIEW) {