From owner-freebsd-gnome@FreeBSD.ORG Tue Apr 7 07:04:27 2009 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 101A51065819 for ; Tue, 7 Apr 2009 07:04:27 +0000 (UTC) (envelope-from admik@b.admik.pp.ru) Received: from b.admik.pp.ru (b.admik.pp.ru [217.106.132.29]) by mx1.freebsd.org (Postfix) with ESMTP id 2E9C78FC26 for ; Tue, 7 Apr 2009 07:04:25 +0000 (UTC) (envelope-from admik@b.admik.pp.ru) Received: from b.admik.pp.ru (b.admik.pp.ru [217.106.132.29]) by b.admik.pp.ru (8.14.2/8.14.2) with ESMTP id n3770x6e050676 for ; Tue, 7 Apr 2009 15:01:30 +0800 (KRAST) (envelope-from admik@b.admik.pp.ru) Received: (from admik@localhost) by b.admik.pp.ru (8.14.2/8.14.2/Submit) id n3770xgm050675 for gnome@freebsd.org; Tue, 7 Apr 2009 15:00:59 +0800 (KRAST) (envelope-from admik) Date: Tue, 7 Apr 2009 15:00:59 +0800 From: Michael Svobodin To: gnome@freebsd.org Message-ID: <20090407070059.GA48773@b.admik.pp.ru> References: <20090326223913.GP78186@droso.net> <20090407050902.GA27227@b.admik.pp.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k1lZvvs/B4yU6o8G" Content-Disposition: inline In-Reply-To: <20090407050902.GA27227@b.admik.pp.ru> User-Agent: Mutt/1.4.2.3i X-Spam-Ystatus: hits=-11.7 X-Spam-Flag: NO X-Spam-Yversion: Spamooborona-3.0 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: [ports-i386@FreeBSD.org: anjuta-2.24.2 failed on i386 6] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2009 07:04:28 -0000 --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Apr 07, 2009 at 01:09:02PM +0800, Michael Svobodin wrote: > On Thu, Mar 26, 2009 at 11:39:14PM +0100, Erwin Lansing wrote: > > > > FYI; can you please investigate and/or report to the developers? If > > you are already aware of this problem but do not yet have a fix, > > please mark the port BROKEN in the appropriate case, so that users do > > not unexpectedly encounter it. > > > > See http://pointyhat.freebsd.org for the full log. > > > > Thanks, > > -erwin > > > > The reason is updated graphviz. > Workaround patches're in the attachment. > Patches: --- plugins/class-inheritance/class-inherit.c.orig 2008-10-19 23:35:30.000000000 +0800 +++ plugins/class-inheritance/class-inherit.c 2009-04-07 12:21:53.000000000 +0800 @@ -755,9 +755,17 @@ gdouble node_width; gdouble node_height; point node_pos; +#ifndef ND_coord_i + pointf node_posf; +#endif /* get some infos from the node */ +#ifdef ND_coord_i node_pos = ND_coord_i(node); +#else + node_posf = ND_coord(node); + PF2P(node_posf, node_pos); +#endif node_width = ND_width (node); node_height = ND_height (node); --- plugins/profiler/gprof-function-call-chart-view.c.orig 2008-10-19 23:35:26.000000000 +0800 +++ plugins/profiler/gprof-function-call-chart-view.c 2009-04-07 12:21:06.000000000 +0800 @@ -530,6 +530,9 @@ Agedge_t *current_edge; Agraph_t *current_graph; point node_pos; +#ifndef ND_coord_i + pointf node_posf; +#endif gdouble node_width; gdouble node_height; @@ -541,7 +544,13 @@ if (self->priv->current_node) { +#ifdef ND_coord_i node_pos = ND_coord_i (self->priv->current_node); +#else + node_posf = ND_coord (self->priv->current_node); + PF2P(node_posf, node_pos); +#endif + node_pos.y += self->priv->y_offset; node_width = ND_width (self->priv->current_node); node_height = ND_height (self->priv->current_node); --k1lZvvs/B4yU6o8G--