aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2017-01-21 15:06:50 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2017-01-21 15:06:50 +0000
commita2680c350ad2f71f3746da8117088ff7322f57e9 (patch)
tree919a7fa0d4b826d8b56502f16875247a33afb631
parentead59711db7e0624ea234130e9a66c67c07c4f94 (diff)
downloadports-a2680c350ad2f71f3746da8117088ff7322f57e9.tar.gz
ports-a2680c350ad2f71f3746da8117088ff7322f57e9.zip
Notes
-rw-r--r--audio/cantata/files/patch-git_2cb8d7f22
-rw-r--r--audio/cantata/files/patch-git_a13f95722
2 files changed, 44 insertions, 0 deletions
diff --git a/audio/cantata/files/patch-git_2cb8d7f b/audio/cantata/files/patch-git_2cb8d7f
new file mode 100644
index 000000000000..39572dd03c2b
--- /dev/null
+++ b/audio/cantata/files/patch-git_2cb8d7f
@@ -0,0 +1,22 @@
+From 2cb8d7f67411d6958388705893f5e5de46b3bba0 Mon Sep 17 00:00:00 2001
+From: Craig Drummond <craig.p.drummond@gmail.com>
+Date: Sat, 29 Oct 2016 18:43:34 +0100
+Subject: [PATCH] Fix C++11 warning
+
+---
+ support/utils.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/support/utils.cpp b/support/utils.cpp
+index 2e0c885..4fad46c 100644
+--- support/utils.cpp
++++ support/utils.cpp
+@@ -773,7 +773,7 @@ QString Utils::helper(const QString &app)
+ #elif defined Q_OS_MAC
+ return fixPath(QCoreApplication::applicationDirPath())+app;
+ #else
+- return QString(INSTALL_PREFIX "/"LINUX_LIB_DIR"/")+QCoreApplication::applicationName()+constDirSep+app;
++ return QString(INSTALL_PREFIX "/" LINUX_LIB_DIR "/")+QCoreApplication::applicationName()+constDirSep+app;
+ #endif
+ }
+
diff --git a/audio/cantata/files/patch-git_a13f957 b/audio/cantata/files/patch-git_a13f957
new file mode 100644
index 000000000000..1f96a735e958
--- /dev/null
+++ b/audio/cantata/files/patch-git_a13f957
@@ -0,0 +1,22 @@
+From a13f9575e6226ef7378f3da6b700416354231767 Mon Sep 17 00:00:00 2001
+From: Craig Drummond <craig.p.drummond@gmail.com>
+Date: Sat, 12 Nov 2016 20:05:46 +0000
+Subject: [PATCH] C++ 11
+
+---
+ devices/musicbrainz.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/devices/musicbrainz.cpp b/devices/musicbrainz.cpp
+index cc1a7a0..89f5409 100644
+--- devices/musicbrainz.cpp
++++ devices/musicbrainz.cpp
+@@ -248,7 +248,7 @@ void MusicBrainz::lookup(bool full)
+ }
+ DBUG << "Should lookup " << discId;
+
+- MusicBrainz5::CQuery Query("cantata-"PACKAGE_VERSION_STRING);
++ MusicBrainz5::CQuery Query("cantata-" PACKAGE_VERSION_STRING);
+ QList<CdAlbum> m;
+ QList<QNetworkProxy> proxies=NetworkProxyFactory::self()->queryProxy(QNetworkProxyQuery(QUrl("http://musicbrainz.org")));
+ foreach (const QNetworkProxy &p, proxies) {