svn commit: r357879 - in head/graphics/cinepaint: . files

John Marino marino at FreeBSD.org
Sun Jun 15 13:10:23 UTC 2014


Author: marino
Date: Sun Jun 15 13:10:19 2014
New Revision: 357879
URL: http://svnweb.freebsd.org/changeset/ports/357879
QAT: https://qat.redports.org/buildarchive/r357879/

Log:
  graphics/cinepaint: Fix start-up segfault on amd64
  
  PR:		183691
  Submitted by:	avjwork (gmail)

Added:
  head/graphics/cinepaint/files/patch-app_brush.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_brushgenerated.h   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_channel.h   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_depth_brushgenerated.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_depth_channel.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_depth_layer.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_drawable.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_drawable.h   (contents, props changed)
  head/graphics/cinepaint/files/patch-app_layer.h   (contents, props changed)
  head/graphics/cinepaint/files/patch-lib_chainbutton.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-lib_pixmap.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-lib_size_entry.c   (contents, props changed)
  head/graphics/cinepaint/files/patch-plug-ins_script-fu_gimpcolorbutton.c   (contents, props changed)
Modified:
  head/graphics/cinepaint/Makefile

Modified: head/graphics/cinepaint/Makefile
==============================================================================
--- head/graphics/cinepaint/Makefile	Sun Jun 15 13:08:13 2014	(r357878)
+++ head/graphics/cinepaint/Makefile	Sun Jun 15 13:10:19 2014	(r357879)
@@ -3,7 +3,7 @@
 
 PORTNAME=	cinepaint
 DISTVERSION=	1.0-4
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics
 MASTER_SITES=	SF/${PORTNAME}/CinePaint/CinePaint-${DISTVERSION}
 

Added: head/graphics/cinepaint/files/patch-app_brush.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_brush.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- app/brush.c.orig	2013-11-05 10:57:08.000000000 +0300
++++ app/brush.c	2013-11-05 10:58:06.000000000 +0300
+@@ -102,7 +102,7 @@
+ 
+ GtkType gimp_brush_get_type(void)
+ {
+-  static GtkType type;
++  static GtkType type = 0;
+   if(!type){
+ #if GTK_MAJOR_VERSION > 1
+       static const GTypeInfo info =

Added: head/graphics/cinepaint/files/patch-app_brushgenerated.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_brushgenerated.h	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- app/brushgenerated.h.orig	2013-11-05 11:11:01.000000000 +0300
++++ app/brushgenerated.h	2013-11-05 11:11:39.000000000 +0300
+@@ -51,7 +51,7 @@
+ #define GIMP_BRUSH_GENERATED(obj)  (GIMP_CHECK_CAST ((obj), GIMP_TYPE_BRUSH_GENERATED, GimpBrushGenerated))
+ #define GIMP_IS_BRUSH_GENERATED(obj) (GIMP_CHECK_TYPE ((obj), GIMP_TYPE_BRUSH_GENERATED))
+ 
+-guint gimp_brush_generated_get_type (void);
++GtkType gimp_brush_generated_get_type (void);
+ 
+ /* normal stuff */
+ 

Added: head/graphics/cinepaint/files/patch-app_channel.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_channel.h	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- app/channel.h.orig	2013-11-05 11:20:03.000000000 +0300
++++ app/channel.h	2013-11-05 11:20:52.000000000 +0300
+@@ -39,7 +39,7 @@
+ #define GIMP_CHANNEL_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gimp_channel_get_type(), GimpChannelClass)
+ #define GIMP_IS_CHANNEL(obj)     GTK_CHECK_TYPE (obj, gimp_channel_get_type())
+ 
+-guint gimp_channel_get_type (void);
++GtkType gimp_channel_get_type (void);
+ 
+ /*  Special undo type  */
+ typedef struct ChannelUndo ChannelUndo;

Added: head/graphics/cinepaint/files/patch-app_depth_brushgenerated.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_depth_brushgenerated.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,14 @@
+--- app/depth/brushgenerated.c.orig	2013-11-05 11:32:19.000000000 +0300
++++ app/depth/brushgenerated.c	2013-11-05 11:34:56.000000000 +0300
+@@ -106,9 +106,9 @@
+   brush->freeze        = 0;
+ }
+ 
+-guint gimp_brush_generated_get_type(void)
++GtkType gimp_brush_generated_get_type(void)
+ {
+-  static GtkType type;
++  static GtkType type = 0;
+   if(!type){
+     GtkTypeInfo info={
+       "GimpBrushGenerated",

Added: head/graphics/cinepaint/files/patch-app_depth_channel.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_depth_channel.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,15 @@
+--- app/depth/channel.c.orig	2013-11-05 11:22:13.000000000 +0300
++++ app/depth/channel.c	2013-11-05 11:27:06.000000000 +0300
+@@ -51,10 +51,9 @@
+ static GimpDrawableClass *parent_class = NULL;
+ 
+ 
+-guint
+-gimp_channel_get_type ()
++GtkType gimp_channel_get_type ()
+ {
+-  static guint channel_type = 0;
++  static GtkType channel_type = 0;
+ 
+   if (!channel_type)
+     {

Added: head/graphics/cinepaint/files/patch-app_depth_layer.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_depth_layer.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,28 @@
+--- app/depth/layer.c.orig	2013-11-05 11:28:32.000000000 +0300
++++ app/depth/layer.c	2013-11-05 11:30:50.000000000 +0300
+@@ -65,10 +65,10 @@
+ static CanvasDrawableClass *layer_parent_class = NULL;
+ static GimpChannelClass *layer_mask_parent_class = NULL;
+ 
+-guint
++GtkType 
+ gimp_layer_get_type ()
+ {
+-  static guint layer_type = 0;
++  static GtkType layer_type = 0;
+ 
+   if (!layer_type)
+     {
+@@ -118,10 +118,10 @@
+ {
+ }
+ 
+-guint
++GtkType
+ gimp_layer_mask_get_type ()
+ {
+-  static guint layer_mask_type = 0;
++  static GtkType layer_mask_type = 0;
+ 
+   if (!layer_mask_type)
+     {

Added: head/graphics/cinepaint/files/patch-app_drawable.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_drawable.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,15 @@
+--- app/drawable.c.orig	2013-11-05 11:07:48.000000000 +0300
++++ app/drawable.c	2013-11-05 11:09:02.000000000 +0300
+@@ -56,10 +56,10 @@
+ 
+ static CanvasDrawableClass *parent_class = NULL;
+ 
+-guint
++GtkType
+ gimp_drawable_get_type ()
+ {
+-  static guint drawable_type = 0;
++  static GtkType drawable_type = 0;
+ 
+   if (!drawable_type)
+     {

Added: head/graphics/cinepaint/files/patch-app_drawable.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_drawable.h	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- app/drawable.h.orig	2013-11-05 11:07:39.000000000 +0300
++++ app/drawable.h	2013-11-05 11:08:18.000000000 +0300
+@@ -32,7 +32,7 @@
+ #define GIMP_DRAWABLE_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, GIMP_TYPE_DRAWABLE, GimpDrawableClass)
+ #define GIMP_IS_DRAWABLE(obj)      GTK_CHECK_TYPE (obj, GIMP_TYPE_DRAWABLE)
+ 
+-guint gimp_drawable_get_type (void);
++GtkType gimp_drawable_get_type (void);
+ 
+ 
+ /*  drawable access functions  */

Added: head/graphics/cinepaint/files/patch-app_layer.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-app_layer.h	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,13 @@
+--- app/layer.h.orig	2013-11-05 10:49:42.000000000 +0300
++++ app/layer.h	2013-11-05 10:51:01.000000000 +0300
+@@ -51,8 +51,8 @@
+ #define GIMP_IS_LAYER_MASK(obj)      GTK_CHECK_TYPE (obj, gimp_layer_mask_get_type())
+ 
+ 
+-guint gimp_layer_get_type (void);
+-guint gimp_layer_mask_get_type (void);
++GtkType gimp_layer_get_type (void);
++GtkType gimp_layer_mask_get_type (void);
+ 
+ /*  Special undo types  */
+ 

Added: head/graphics/cinepaint/files/patch-lib_chainbutton.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-lib_chainbutton.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- lib/chainbutton.c.orig	2013-11-05 15:35:41.000000000 +0300
++++ lib/chainbutton.c	2013-11-05 15:36:17.000000000 +0300
+@@ -155,7 +155,7 @@
+ GtkType
+ gimp_chain_button_get_type (void)
+ {
+-  static guint gcb_type = 0;
++  static GtkType gcb_type = 0;
+ 
+   if (!gcb_type)
+     {

Added: head/graphics/cinepaint/files/patch-lib_pixmap.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-lib_pixmap.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- lib/pixmap.c.orig	2013-11-05 15:33:26.000000000 +0300
++++ lib/pixmap.c	2013-11-05 15:34:10.000000000 +0300
+@@ -70,7 +70,7 @@
+ GtkType
+ gimp_pixmap_get_type (void)
+ {
+-  static guint pixmap_type = 0;
++  static GtkType pixmap_type = 0;
+ 
+   if (!pixmap_type)
+     {

Added: head/graphics/cinepaint/files/patch-lib_size_entry.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-lib_size_entry.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,11 @@
+--- lib/size_entry.c.orig	2013-11-05 15:38:06.000000000 +0300
++++ lib/size_entry.c	2013-11-05 15:39:14.000000000 +0300
+@@ -169,7 +169,7 @@
+ GtkType
+ gimp_size_entry_get_type (void)
+ {
+-  static guint gse_type = 0;
++  static GtkType gse_type = 0;
+ 
+   if (!gse_type)
+     {

Added: head/graphics/cinepaint/files/patch-plug-ins_script-fu_gimpcolorbutton.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cinepaint/files/patch-plug-ins_script-fu_gimpcolorbutton.c	Sun Jun 15 13:10:19 2014	(r357879)
@@ -0,0 +1,12 @@
+--- plug-ins/script-fu/gimpcolorbutton.c.orig	2013-11-05 15:42:43.000000000 +0300
++++ plug-ins/script-fu/gimpcolorbutton.c	2013-11-05 15:43:31.000000000 +0300
+@@ -223,7 +223,7 @@
+ GtkType
+ gimp_color_button_get_type (void)
+ {
+-  static guint type = 0;
++  static GtkType type = 0;
+ 
+   if (!type)
+     {
+


More information about the svn-ports-head mailing list