aboutsummaryrefslogtreecommitdiff
path: root/multimedia/phonon
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2014-12-26 20:05:09 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2014-12-26 20:05:09 +0000
commitf7190ba3a72cd5d2592064ba50c918bd845af3c8 (patch)
treec7e23f2517641d7e30b9a7d695b8a837a36692a1 /multimedia/phonon
parent0abb49dbcf4de156f3b59e91a0f4fce1d3b29198 (diff)
downloadports-f7190ba3a72cd5d2592064ba50c918bd845af3c8.tar.gz
ports-f7190ba3a72cd5d2592064ba50c918bd845af3c8.zip
Update to 4.8.3.
Notes
Notes: svn path=/head/; revision=375654
Diffstat (limited to 'multimedia/phonon')
-rw-r--r--multimedia/phonon/Makefile5
-rw-r--r--multimedia/phonon/distinfo4
-rw-r--r--multimedia/phonon/files/patch-phonon__objectdescriptionmodel.h35
3 files changed, 4 insertions, 40 deletions
diff --git a/multimedia/phonon/Makefile b/multimedia/phonon/Makefile
index eb20ee96d7c4..3d7ba4d293f6 100644
--- a/multimedia/phonon/Makefile
+++ b/multimedia/phonon/Makefile
@@ -2,10 +2,9 @@
# $FreeBSD$
PORTNAME= phonon
-PORTVERSION= 4.8.1
-PORTREVISION= 1
+PORTVERSION= 4.8.3
CATEGORIES= multimedia kde
-MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}
+MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
diff --git a/multimedia/phonon/distinfo b/multimedia/phonon/distinfo
index 33de80ceb7f0..d0bceaf3c4d0 100644
--- a/multimedia/phonon/distinfo
+++ b/multimedia/phonon/distinfo
@@ -1,2 +1,2 @@
-SHA256 (KDE/phonon-4.8.1.tar.xz) = b6ca0126cd5330731875acc1cc0b60f8c9ed7ebc71e1d0210b74bf21658027d1
-SIZE (KDE/phonon-4.8.1.tar.xz) = 321652
+SHA256 (KDE/phonon-4.8.3.tar.xz) = a1149c961ca1570968d070bbd23671e614aa506f847ca93748960e309f85da16
+SIZE (KDE/phonon-4.8.3.tar.xz) = 322012
diff --git a/multimedia/phonon/files/patch-phonon__objectdescriptionmodel.h b/multimedia/phonon/files/patch-phonon__objectdescriptionmodel.h
deleted file mode 100644
index de821ef64068..000000000000
--- a/multimedia/phonon/files/patch-phonon__objectdescriptionmodel.h
+++ /dev/null
@@ -1,35 +0,0 @@
-Submitted upstream in https://git.reviewboard.kde.org/r/120664/
-
-commit 5ec6c0202cf44ee9790baed617c1e2f195f288d3
-Author: Raphael Kubo da Costa <rakuco@FreeBSD.org>
-Date: Mon Oct 20 00:13:11 2014 +0300
-
- Revert "clang compat fix (from Qt)"
-
- The original Qt commit (3cba3745, "Phonon: Export ObjectDescriptionModel
- to prevent link errors with Clang") was a workaround for
- http://llvm.org/bugs/show_bug.cgi?id=8177, which was fixed more than 4
- years ago.
-
- Now that we have proper support for clang in Phonon and build it with
- -fvisibility=hidden, the workaround started causing problems, as
- ObjectDescriptionModel::staticObject and others were not being exported
- as expected. A quick test for this is building Qt's phonon capabilities
- example.
-
- This reverts commit 845e395ab3aba10dbd57207ad71fbbd6b422f107.
---- phonon/objectdescriptionmodel.h
-+++ phonon/objectdescriptionmodel.h
-@@ -139,11 +139,10 @@ namespace Phonon
-
- /* Required to ensure template class vtables are exported on both symbian
- and existing builds. */
--#if defined(Q_OS_SYMBIAN) && defined(Q_CC_RVCT) || defined(Q_CC_CLANG)
-+#if defined(Q_OS_SYMBIAN) && defined(Q_CC_RVCT)
- // RVCT compiler (2.2.686) requires the export declaration to be on the class to export vtables
- // MWC compiler works both ways
- // GCCE compiler is unknown (it can't compile QtCore yet)
--// Clang also requires the export declaration to be on the class to export vtables
- #define PHONON_TEMPLATE_CLASS_EXPORT PHONON_EXPORT
- #define PHONON_TEMPLATE_CLASS_MEMBER_EXPORT
- #else