ports/114152: [PATCH] devel/lasi: update to 1.0.6, take maintainership

Lars Engels lars.engels at 0x20.net
Sat Jun 30 12:00:08 UTC 2007


>Number:         114152
>Category:       ports
>Synopsis:       [PATCH] devel/lasi: update to 1.0.6, take maintainership
>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 12:00:07 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Lars Engels
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD maggie.bsd-geek.de 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Thu Jun 28 09:44:19 CEST 2007
>Description:
- Update to 1.0.6
- Take maintainership

Removed file(s):
- files/patch-src_drawGlyph.cpp

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- lasi-1.0.6.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/lasi/Makefile,v
retrieving revision 1.6
diff -u -u -r1.6 Makefile
--- Makefile	19 May 2007 20:03:01 -0000	1.6
+++ Makefile	30 Jun 2007 11:58:22 -0000
@@ -6,12 +6,11 @@
 #    $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/
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	lars.engels at 0x20.net
 COMMENT=	C++ stream output interface for creating Postscript documents
 
 USE_GCC=	3.2+
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/devel/lasi/distinfo,v
retrieving revision 1.2
diff -u -u -r1.2 distinfo
--- distinfo	11 Jun 2006 19:25:53 -0000	1.2
+++ distinfo	30 Jun 2007 11:58:22 -0000
@@ -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
Index: files/patch-src_drawGlyph.cpp
===================================================================
RCS file: files/patch-src_drawGlyph.cpp
diff -N files/patch-src_drawGlyph.cpp
--- files/patch-src_drawGlyph.cpp	14 Oct 2006 08:52:49 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -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;
--- lasi-1.0.6.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list