Date: Sat, 30 Jun 2007 21:24:21 GMT From: "Pedro F. Giffuni" <giffunip@tutopia.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/114171: update devel/lasi to 1.0.6 Message-ID: <200706302124.l5ULOLCc070566@www.freebsd.org> Resent-Message-ID: <200706302130.l5ULU41n075914@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 114171 >Category: ports >Synopsis: update devel/lasi to 1.0.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Jun 30 21:30:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 6.2-release >Organization: >Environment: FreeBSD kakumen.cable.net.co 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sat Jun 30 14:14:28 COT 2007 root@kakumen.cable.net.co:/usr/src/sys/amd64/compile/SMP amd64 >Description: Minor update to lasi. >How-To-Repeat: >Fix: patch: diff -ruN lasi.orig/Makefile lasi/Makefile --- lasi.orig/Makefile Fri Jun 29 15:36:47 2007 +++ lasi/Makefile Fri Jun 29 15:41:22 2007 @@ -6,8 +6,7 @@ # $MCom: ports/devel/lasi/Makefile,v 1.1 2006/10/04 20:25:40 ahze Exp $ PORTNAME= lasi -PORTVERSION= 1.0.5 -PORTREVISION= 2 +PORTVERSION= 1.0.6 CATEGORIES= devel MASTER_SITES= http://www.unifont.org/lasi/download/ diff -ruN lasi.orig/distinfo lasi/distinfo --- lasi.orig/distinfo Fri Jun 29 15:36:47 2007 +++ lasi/distinfo Fri Jun 29 15:42:49 2007 @@ -1,3 +1,3 @@ -MD5 (lasi-1.0.5.tar.gz) = b9f766f0b262bd3a5365fa81aea47ed8 -SHA256 (lasi-1.0.5.tar.gz) = 06f0b9b7310fad2a19d7f20c2501c795173799f20a85dc0996c422de80ee0610 -SIZE (lasi-1.0.5.tar.gz) = 465931 +MD5 (lasi-1.0.6.tar.gz) = 2afd4359c2708949e8aa13ab9944ce7a +SHA256 (lasi-1.0.6.tar.gz) = 011c4d9242edce718663f0ca8e5bbffb445ce5aa3e28d8ea564fe1678ab2e4bf +SIZE (lasi-1.0.6.tar.gz) = 466078 diff -ruN lasi.orig/files/patch-src_drawGlyph.cpp lasi/files/patch-src_drawGlyph.cpp --- lasi.orig/files/patch-src_drawGlyph.cpp Fri Jun 29 15:36:47 2007 +++ lasi/files/patch-src_drawGlyph.cpp Wed Dec 31 19:00:00 1969 @@ -1,34 +0,0 @@ ---- src/drawGlyph.cpp.orig Wed Oct 4 16:21:41 2006 -+++ src/drawGlyph.cpp Wed Oct 4 16:23:29 2006 -@@ -81,7 +81,7 @@ - return 0; - } - --static int moveTo(FT_Vector* pftVec, void* data) { -+static int moveTo(const FT_Vector* pftVec, void* data) { - StateOfDrawGlyph* const state = reinterpret_cast<StateOfDrawGlyph* const>(data); - state->os() << (state->isNewPath() ? "newpath" : "closepath") << endl; - state->setNewPathFalse(); -@@ -89,19 +89,19 @@ - return 0; - } - --static int lineTo(FT_Vector* pftVec, void* data) { -+static int lineTo(const FT_Vector* pftVec, void* data) { - xTo(pftVec, data, "lineto"); - return 0; - } - --static int cubicTo(FT_Vector* ctrlPt1, FT_Vector* ctrlPt2, FT_Vector* pEndPt, void* data) { -+static int cubicTo(const FT_Vector* ctrlPt1, const FT_Vector* ctrlPt2, const FT_Vector* pEndPt, void* data) { - StateOfDrawGlyph* const state = reinterpret_cast<StateOfDrawGlyph* const>(data); - state->os() << *ctrlPt1 << " " << *ctrlPt2 << " " << *pEndPt << " curveto" << endl; - state->setStartPt(*pEndPt); - return 0; - } - --static int conicTo(FT_Vector* pCtrlPt, FT_Vector* pEndPt, void* data) { -+static int conicTo(const FT_Vector* pCtrlPt, const FT_Vector* pEndPt, void* data) { - StateOfDrawGlyph* const state = reinterpret_cast<StateOfDrawGlyph* const>(data); - FT_Vector ctrlPt1 = (state->startPt() + 2 * *pCtrlPt) / 3; - FT_Vector ctrlPt2 = (*pEndPt + 2 * *pCtrlPt) / 3; >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706302124.l5ULOLCc070566>