Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'packages/gtk+.py')
-rw-r--r--packages/gtk+.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/gtk+.py b/packages/gtk+.py
index 4f48d61..16d5b0e 100644
--- a/packages/gtk+.py
+++ b/packages/gtk+.py
@@ -14,7 +14,9 @@ class GtkPackage (GnomePackage):
if Package.profile.name == 'darwin':
self.gdk_target = 'quartz'
self.sources.extend ([
- 'http://github.com/jralls/gtk-osx-build/raw/master/patches/gdk-quartz-input-window.patch'
+ 'http://github.com/jralls/gtk-osx-build/raw/master/patches/gdk-quartz-input-window.patch',
+ 'http://git.dronelabs.com/gtk+/patch/?id=18773097865b173fb8c28b691e23d087f0269382',
+ 'http://git.dronelabs.com/gtk+/patch/?id=729cbea7a2b27c4b8f2062316c0f406ab4c01dac'
])
elif Package.profile.name == 'linux':
self.gdk_target = 'x11'
@@ -22,6 +24,7 @@ class GtkPackage (GnomePackage):
def prep (self):
Package.prep (self)
if Package.profile.name == 'darwin':
- self.sh ('patch -p1 < "%{sources[1]}"')
+ for p in range (2, len (self.sources)):
+ self.sh ('patch -p1 < "%{sources[' + str (p) + ']}"')
GtkPackage ()