summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-10-21 23:14:15 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2017-10-21 23:24:09 +0200
commit82b27387e7847268227a680fe402f63fd4b97113 (patch)
tree531d775d50db4fdbf33b452999f96506bcc2f8a3 /media-gfx/openscad/files
parentapp-shells/zsh: stable 5.3.1 for sparc, bug #626942 (thanks to Rolf Eike Beer) (diff)
downloadgentoo-82b27387e7847268227a680fe402f63fd4b97113.tar.gz
gentoo-82b27387e7847268227a680fe402f63fd4b97113.tar.bz2
gentoo-82b27387e7847268227a680fe402f63fd4b97113.zip
media-gfx/openscad: Switch to Qt5, add xdg-utils
Drop unused eutils.eclass. Thanks-to: maurerpe <junk4me46806@yahoo.com> Gentoo-bug: 623610 Package-Manager: Portage-2.3.12, Repoman-2.3.3
Diffstat (limited to 'media-gfx/openscad/files')
-rw-r--r--media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch b/media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch
new file mode 100644
index 000000000000..ef0bcc421eb7
--- /dev/null
+++ b/media-gfx/openscad/files/openscad-2015.03_p2_uic_tr_fix.patch
@@ -0,0 +1,14 @@
+--- a/src/qtgettext.h 2017-03-22 00:17:29.808058905 -0400
++++ b/src/qtgettext.h 2017-03-22 00:18:55.251184835 -0400
+@@ -22,5 +22,10 @@
+ return QString::fromUtf8( _( msgid ) );
+ }
+
+-#endif
++inline QString _( const char *msgid, const char *disambiguation )
++{
++ Q_UNUSED( disambiguation );
++ return QString::fromUtf8( _( msgid ) );
++}
+
++#endif