Ticket #43216: patch-gtk3.diff
File patch-gtk3.diff, 3.1 KB (added by dbevans (David B. Evans), 11 years ago) |
---|
-
Portfile
10 10 name gtk3 11 11 set real_name gtk+ 12 12 epoch 1 13 version 3.1 0.713 version 3.12.0 14 14 set branch [join [lrange [split ${version} .] 0 1] .] 15 15 categories gnome x11 16 16 license LGPL-2.1+ … … 17 17 maintainers cal openmaintainer 18 18 platforms darwin 19 19 20 checksums rmd160 d2907147d6fc6a8532982c64edfd530b07ea343b\21 sha256 b7e9de15385031cff43897e7e59f6692eaabf500f36eef80e6b9d6486ad4942720 checksums rmd160 266468688e10bcf86938078138cf4fbf02c19ca6 \ 21 sha256 eb69741cd4029b5a1ac9cf04d9de55dcf9e30777a63891750f5d20cc554b6e4b 22 22 23 23 description GTK+ widget toolkit 24 24 … … 39 39 minimum_xcodeversions {9 3.1} 40 40 depends_build port:pkgconfig 41 41 42 # cloudprint backend requires rest, json-glib 43 # but this causes a circular dependency on libsoup 44 # explicitly disable cloudprint for now 45 42 46 depends_lib port:atk \ 43 47 path:lib/pkgconfig/pango.pc:pango \ 44 48 port:gdk-pixbuf2 \ 45 49 path:lib/pkgconfig/glib-2.0.pc:glib2 \ 46 50 port:gobject-introspection 47 51 48 52 depends_run port:shared-mime-info \ 49 53 port:hicolor-icon-theme 50 54 … … 55 59 lib/libpango-1.0.dylib \ 56 60 lib/libtiff.dylib 57 61 58 patchfiles patch-g tk__gtkselection.c-non-void-return.diff62 patchfiles patch-gdk_quartz_gdkevents-quartz.c-syntax-error.diff 59 63 60 64 configure.args --enable-static \ 61 65 --disable-glibtest \ 62 66 --enable-introspection \ 67 --disable-cloudprint \ 63 68 --disable-wayland-backend \ 64 69 --disable-schemas-compile \ 65 70 gio_can_sniff=yes -
files/patch-gdk_quartz_gdkevents-quartz.c-syntax-error.diff
1 --- gdk/quartz/gdkevents-quartz.c.orig 2014-01-11 14:13:00.000000000 -0800 2 +++ gdk/quartz/gdkevents-quartz.c 2014-01-19 09:11:56.000000000 -0800 3 @@ -1684,6 +1684,8 @@ 4 return TRUE; 5 } 6 7 + return TRUE; 8 + } 9 /* FIXME: Add more settings */ 10 11 return FALSE; -
files/patch-gtk__gtkselection.c-non-void-return.diff
1 --- gtk/gtkselection.c.orig 2014-02-03 21:44:01.000000000 +01002 +++ gtk/gtkselection.c 2014-02-03 21:44:30.000000000 +01003 @@ -2294,7 +2294,7 @@4 gulong selection_max_size;5 6 if (event->requestor == NULL)7 - return;8 + return FALSE;9 10 if (initialize)11 gtk_selection_init ();