Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Oct 2013 07:59:41 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330851 - in head/graphics/inkscape: . files
Message-ID:  <201310190759.r9J7xfFC073685@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kwm
Date: Sat Oct 19 07:59:41 2013
New Revision: 330851
URL: http://svnweb.freebsd.org/changeset/ports/330851

Log:
  Correct typo in one of the patches.
  
  Submitted by:	Tomasz Sowa <t.sowa@ttmath.org>

Modified:
  head/graphics/inkscape/Makefile
  head/graphics/inkscape/files/patch-src_sp-item-rm-unsatisfied-cns.cpp

Modified: head/graphics/inkscape/Makefile
==============================================================================
--- head/graphics/inkscape/Makefile	Sat Oct 19 07:56:48 2013	(r330850)
+++ head/graphics/inkscape/Makefile	Sat Oct 19 07:59:41 2013	(r330851)
@@ -3,7 +3,7 @@
 
 PORTNAME=	inkscape
 PORTVERSION=	0.48.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics gnome
 MASTER_SITES=	SF
 MASTER_SITE_SUBDIR=${PORTNAME:L}/${PORTNAME:L}/${PORTVERSION}

Modified: head/graphics/inkscape/files/patch-src_sp-item-rm-unsatisfied-cns.cpp
==============================================================================
--- head/graphics/inkscape/files/patch-src_sp-item-rm-unsatisfied-cns.cpp	Sat Oct 19 07:56:48 2013	(r330850)
+++ head/graphics/inkscape/files/patch-src_sp-item-rm-unsatisfied-cns.cpp	Sat Oct 19 07:59:41 2013	(r330851)
@@ -1,5 +1,5 @@
---- src/sp-item-rm-unsatisfied-cns.cpp.orig	2013-10-17 12:49:51.000000000 +0200
-+++ src/sp-item-rm-unsatisfied-cns.cpp	2013-10-17 12:50:49.000000000 +0200
+--- src/sp-item-rm-unsatisfied-cns.cpp.orig	2011-07-08 20:25:09.468790000 +0200
++++ src/sp-item-rm-unsatisfied-cns.cpp	2013-10-19 09:55:40.000000000 +0200
 @@ -23,9 +23,9 @@
          g_assert( snappoint_ix < int(snappoints.size()) );
          if (!approx_equal( sp_guide_distance_from_pt(cn.g, snappoints[snappoint_ix].getPoint()), 0) ) {
@@ -8,7 +8,7 @@
              g_assert( i < item.constraints.size() );
 -            vector<SPGuideConstraint>::iterator const ei(&item.constraints[i]);
 -            item.constraints.erase(ei);
-+            item.constraints.erase(item.constraints.begin() + 1);
++            item.constraints.erase(item.constraints.begin() + i);
          }
      }
  }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310190759.r9J7xfFC073685>