summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Gerloff <chrgerloff@gmx.net>2017-07-05 15:47:07 +0200
committerMichał Górny <mgorny@gentoo.org>2017-07-18 23:23:51 +0200
commit904008cf9f669202e0bbc7ddc30c2eaf2c3647ac (patch)
tree9e54caf057407305abf9feab4b5a84bccca8c14b /media-gfx/kuickshow/files
parentUnmask games-misc/katawa-shoujo[system-renpy] (diff)
downloadgentoo-904008cf9f669202e0bbc7ddc30c2eaf2c3647ac.tar.gz
gentoo-904008cf9f669202e0bbc7ddc30c2eaf2c3647ac.tar.bz2
gentoo-904008cf9f669202e0bbc7ddc30c2eaf2c3647ac.zip
media-gfx/kuickshow: Restore package
Include a patch to fix a compile error with GCC 6. Also update ebuild to EAPI 6, mark the package as unstable, and change download url and maintainer. Closes: https://github.com/gentoo/gentoo/pull/5012 Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'media-gfx/kuickshow/files')
-rw-r--r--media-gfx/kuickshow/files/kuickshow-0.9.1-gcc6-compile-fix.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/media-gfx/kuickshow/files/kuickshow-0.9.1-gcc6-compile-fix.patch b/media-gfx/kuickshow/files/kuickshow-0.9.1-gcc6-compile-fix.patch
new file mode 100644
index 000000000000..82bf2eafd270
--- /dev/null
+++ b/media-gfx/kuickshow/files/kuickshow-0.9.1-gcc6-compile-fix.patch
@@ -0,0 +1,15 @@
+Fixed wrong type of 2nd parameter which wouldn't compile with GCC 6.
+
+https://bugs.gentoo.org/614304
+
+--- a/src/kuickshow.cpp
++++ b/src/kuickshow.cpp
+@@ -661,7 +661,7 @@ void KuickShow::performDeleteCurrentImage(QWidget *parent)
+ }
+
+ tryShowNextImage();
+- fileWidget->del(list, false, false);
++ fileWidget->del(list, 0L, false);
+ }
+
+ void KuickShow::performTrashCurrentImage(QWidget *parent)