diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2013-07-04 23:34:32 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2013-07-04 23:34:32 +0000 |
commit | 554e0c79c9f231cc4d17fca3c9c743be0dfe5001 (patch) | |
tree | 673c7b79ff6c61c4f17d645907ab3fdf7c98e5c2 /math/kbruch | |
parent | 497d5f5c9528b8c94c4703369e1bc90654aaf0c8 (diff) |
Update the KDE Software Compilation to 4.10.5.
Proudly brought to you by the KDE on FreeBSD team. We're sorry to ship two
KDE updates in just a few days, but the work on 4.10.5 was very light
compared to 4.10.4 so it was ready much faster.
The release announcement can be found in [1].
[1] http://www.kde.org/announcements/announce-4.10.5.php
The biggest news for us on FreeBSD is that the Ruby bindings should work
with Ruby 1.9 now.
I will probably add a note to UPDATING later about this, but as avilla@
pointed out, the clang support we mentioned that was improved in 4.10.4
requires a rebuild of the ports that depend on kdelibs4. Most of them are
covered by this update, but those which are not part of the Software
Compilation need to be rebuilt manually to make sure the previous issues
(proper symbol visibility being the most annoying of them) are solved.
Notes
Notes:
svn path=/head/; revision=322300
Diffstat (limited to 'math/kbruch')
-rw-r--r-- | math/kbruch/distinfo | 4 | ||||
-rw-r--r-- | math/kbruch/files/patch-git_fdcb70a | 116 |
2 files changed, 2 insertions, 118 deletions
diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 66e757460227..6f5a4c9c423f 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,2 +1,2 @@ -SHA256 (KDE/4.10.4/kbruch-4.10.4.tar.xz) = bb047cfe837c305a69d9f08649445e5fa33195b0af92907f288d717b25767c90 -SIZE (KDE/4.10.4/kbruch-4.10.4.tar.xz) = 906924 +SHA256 (KDE/4.10.5/kbruch-4.10.5.tar.xz) = db84212f690deb60703572c26ec2ad696cf92a0c4bb5afbc2094d62cf3516298 +SIZE (KDE/4.10.5/kbruch-4.10.5.tar.xz) = 908572 diff --git a/math/kbruch/files/patch-git_fdcb70a b/math/kbruch/files/patch-git_fdcb70a deleted file mode 100644 index 7ee47fceebe6..000000000000 --- a/math/kbruch/files/patch-git_fdcb70a +++ /dev/null @@ -1,116 +0,0 @@ -commit fdcb70ac5e974b009e9807bb1e0d63b05a06db34 -Author: Raphael Kubo da Costa <rakuco@FreeBSD.org> -Date: Wed Jun 5 02:30:39 2013 +0300 - - Declaring default arguments in function implementations is bad C++. - - This should fix the build with clang 3.3. - -diff --git a/src/FractionPainter.cpp b/src/FractionPainter.cpp -index 48b299a..66362e4 100644 ---- src/FractionPainter.cpp -+++ src/FractionPainter.cpp -@@ -28,7 +28,7 @@ - //Added by qt3to4: - #include <QPaintEvent> - --FractionPainter::FractionPainter(QWidget * parent = 0) : -+FractionPainter::FractionPainter(QWidget * parent) : - FractionBaseWidget(parent) - { - #ifdef DEBUG -diff --git a/src/FractionPainter.h b/src/FractionPainter.h -index 9c0c1ab..0fa2a42 100644 ---- src/FractionPainter.h -+++ src/FractionPainter.h -@@ -46,7 +46,7 @@ class FractionPainter : public FractionBaseWidget - - public: - /** constructor */ -- FractionPainter(QWidget * parent); -+ FractionPainter(QWidget * parent = 0); - - /** destructor */ - ~FractionPainter(); -diff --git a/src/fractionbasewidget.cpp b/src/fractionbasewidget.cpp -index ed01d39..8b41bf1 100644 ---- src/fractionbasewidget.cpp -+++ src/fractionbasewidget.cpp -@@ -30,7 +30,7 @@ - - #include "settingsclass.h" - --FractionBaseWidget::FractionBaseWidget(QWidget * parent = 0) : -+FractionBaseWidget::FractionBaseWidget(QWidget * parent) : - QWidget(parent) - { - #ifdef DEBUG -diff --git a/src/fractionbasewidget.h b/src/fractionbasewidget.h -index 2973bbb..8d2b078 100644 ---- src/fractionbasewidget.h -+++ src/fractionbasewidget.h -@@ -45,7 +45,7 @@ class FractionBaseWidget : public QWidget - - public: - /** constructor */ -- FractionBaseWidget(QWidget * parent); -+ FractionBaseWidget(QWidget * parent = 0); - - /** destructor */ - ~FractionBaseWidget(); -diff --git a/src/ratiowidget.cpp b/src/ratiowidget.cpp -index 0796411..b2b2e37 100644 ---- src/ratiowidget.cpp -+++ src/ratiowidget.cpp -@@ -26,8 +26,8 @@ - //Added by qt3to4: - #include <QPaintEvent> - --RatioWidget::RatioWidget(QWidget * parent = 0, -- const ratio para_ratio = ratio()) : -+RatioWidget::RatioWidget(QWidget * parent, -+ const ratio para_ratio) : - FractionBaseWidget(parent), m_ratio(para_ratio) - { - #ifdef DEBUG -diff --git a/src/ratiowidget.h b/src/ratiowidget.h -index 547ff35..d0d2dd5 100644 ---- src/ratiowidget.h -+++ src/ratiowidget.h -@@ -41,7 +41,7 @@ class RatioWidget : public FractionBaseWidget - - public: - /** constructor */ -- RatioWidget(QWidget * parent, const ratio para_ratio); -+ RatioWidget(QWidget * parent = 0, const ratio para_ratio = ratio()); - - /** destructor */ - ~RatioWidget(); -diff --git a/src/taskwidget.cpp b/src/taskwidget.cpp -index 3305189..07efb9a 100644 ---- src/taskwidget.cpp -+++ src/taskwidget.cpp -@@ -30,8 +30,8 @@ - //Added by qt3to4: - #include <QPaintEvent> - --TaskWidget::TaskWidget(QWidget * parent = 0, -- const task para_task = task()) : -+TaskWidget::TaskWidget(QWidget * parent, -+ const task para_task) : - FractionBaseWidget(parent), m_task(para_task) - { - #ifdef DEBUG -diff --git a/src/taskwidget.h b/src/taskwidget.h -index 8b8a168..0c3329c 100644 ---- src/taskwidget.h -+++ src/taskwidget.h -@@ -51,7 +51,7 @@ class TaskWidget : public FractionBaseWidget - - public: - /** constructor */ -- TaskWidget(QWidget * parent, const task para_task); -+ TaskWidget(QWidget * parent = 0, const task para_task = task()); - - /** destructor */ - ~TaskWidget(); |