summaryrefslogtreecommitdiff
path: root/media-video/dcpomatic/files
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2017-03-04 12:21:58 +0100
committerMichael Weber <xmw@gentoo.org>2017-03-04 12:24:13 +0100
commitc218434f3307b192d81fec4dd08f5345744af39f (patch)
tree5ae37004b996011dcd2bae18ac8be558a24fc5bb /media-video/dcpomatic/files
parent280676db34863f8fe38d590943a0d7282cbf5c59 (diff)
downloadgentoo-c218434f3307b192d81fec4dd08f5345744af39f.tar.gz
gentoo-c218434f3307b192d81fec4dd08f5345744af39f.tar.xz
media-video/dcpomatic: Initial import.
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'media-video/dcpomatic/files')
-rw-r--r--media-video/dcpomatic/files/dcpomatic-2.10.2-respect-cxxflags.patch13
-rw-r--r--media-video/dcpomatic/files/dcpomatic-2.8.0-desktop.patch32
-rw-r--r--media-video/dcpomatic/files/dcpomatic-2.8.0-no-ldconfig.patch12
-rw-r--r--media-video/dcpomatic/files/dcpomatic-2.8.0-wxGTK3.patch13
4 files changed, 70 insertions, 0 deletions
diff --git a/media-video/dcpomatic/files/dcpomatic-2.10.2-respect-cxxflags.patch b/media-video/dcpomatic/files/dcpomatic-2.10.2-respect-cxxflags.patch
new file mode 100644
index 00000000000..330dfd0609f
--- /dev/null
+++ b/media-video/dcpomatic/files/dcpomatic-2.10.2-respect-cxxflags.patch
@@ -0,0 +1,13 @@
+--- dcpomatic-2.10.2/wscript
++++ dcpomatic-2.10.2/wscript
+@@ -89,9 +89,7 @@
+ have_c11 = int(gcc[0]) >= 4 and int(gcc[1]) >= 8 and int(gcc[2]) >= 1
+
+ if conf.options.enable_debug:
+- conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG', '-fno-omit-frame-pointer'])
+- else:
+- conf.env.append_value('CXXFLAGS', '-O2')
++ conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_DEBUG', '-fno-omit-frame-pointer'])
+
+ #
+ # Windows/Linux/OS X specific
diff --git a/media-video/dcpomatic/files/dcpomatic-2.8.0-desktop.patch b/media-video/dcpomatic/files/dcpomatic-2.8.0-desktop.patch
new file mode 100644
index 00000000000..615a998e2a7
--- /dev/null
+++ b/media-video/dcpomatic/files/dcpomatic-2.8.0-desktop.patch
@@ -0,0 +1,32 @@
+--- dcpomatic-2.8.0/platform/linux/dcpomatic.desktop.in
++++ dcpomatic-2.8.0/platform/linux/dcpomatic.desktop.in
+@@ -7,4 +7,4 @@
+ Name=DCP-o-matic 2
+ Icon=dcpomatic2
+ Comment=DCP generator
+-Categories=AudioVideo;Video
++Categories=AudioVideo;Video;
+--- dcpomatic-2.8.0/platform/linux/dcpomatic_server.desktop.in
++++ dcpomatic-2.8.0/platform/linux/dcpomatic_server.desktop.in
+@@ -7,4 +7,4 @@
+ Name=DCP-o-matic 2 Encode Server
+ Icon=dcpomatic2_server
+ Comment=DCP generator
+-Categories=AudioVideo;Video
++Categories=AudioVideo;Video;
+--- dcpomatic-2.8.0/platform/linux/dcpomatic_kdm.desktop.in
++++ dcpomatic-2.8.0/platform/linux/dcpomatic_kdm.desktop.in
+@@ -7,4 +7,4 @@
+ Name=DCP-o-matic 2 KDM Creator
+ Icon=dcpomatic2_kdm
+ Comment=DCP generator
+-Categories=AudioVideo;Video
++Categories=AudioVideo;Video;
+--- dcpomatic-2.8.0/platform/linux/dcpomatic_batch.desktop.in
++++ dcpomatic-2.8.0/platform/linux/dcpomatic_batch.desktop.in
+@@ -7,4 +7,4 @@
+ Name=DCP-o-matic 2 Batch Converter
+ Icon=dcpomatic2_batch
+ Comment=DCP generator
+-Categories=AudioVideo;Video
++Categories=AudioVideo;Video;
diff --git a/media-video/dcpomatic/files/dcpomatic-2.8.0-no-ldconfig.patch b/media-video/dcpomatic/files/dcpomatic-2.8.0-no-ldconfig.patch
new file mode 100644
index 00000000000..106e2395e73
--- /dev/null
+++ b/media-video/dcpomatic/files/dcpomatic-2.8.0-no-ldconfig.patch
@@ -0,0 +1,12 @@
+--- dcpomatic-2.8.0/wscript
++++ dcpomatic-2.8.0/wscript
+@@ -503,8 +503,7 @@
+ sys.exit(-1)
+
+ def post(ctx):
+- if ctx.cmd == 'install':
+- ctx.exec_command('/sbin/ldconfig')
++ pass
+
+ def pot(bld):
+ bld.recurse('src')
diff --git a/media-video/dcpomatic/files/dcpomatic-2.8.0-wxGTK3.patch b/media-video/dcpomatic/files/dcpomatic-2.8.0-wxGTK3.patch
new file mode 100644
index 00000000000..9d85ad58331
--- /dev/null
+++ b/media-video/dcpomatic/files/dcpomatic-2.8.0-wxGTK3.patch
@@ -0,0 +1,13 @@
+--- dcpomatic-2.8.0/src/wx/wscript
++++ dcpomatic-2.8.0/src/wx/wscript
+@@ -103,8 +103,8 @@
+
+ def configure(conf):
+ try:
+- wx_config = 'wx-config-3.0-gtk2'
+- conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
++ wx_config = 'wx-config-3.0'
++ conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0',
+ package='',
+ path=wx_config,
+ args='--cppflags --cxxflags --libs std,richtext',