Date: Fri, 6 Oct 2006 14:19:29 +0200 (CEST) From: trasz <trasz@pin.if.uz.zgora.pl> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/104055: [PATCH] games/zoom: update to 1.0.5 Message-ID: <20061006121929.EE5DF39DB8@pin.if.uz.zgora.pl> Resent-Message-ID: <200610061220.k96CKGcI099331@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 104055 >Category: ports >Synopsis: [PATCH] games/zoom: update to 1.0.5 >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: Fri Oct 06 12:20:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: trasz >Release: FreeBSD 6.1-RELEASE i386 >Organization: >Environment: System: FreeBSD pin.if.uz.zgora.pl 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sat Jun 3 01:12:10 CEST >Description: Update to 1.0.5. New version does not have problems with gcc41. (http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2006100419/zoom-1.0.2a_1.log) Removed file(s): - files/patch-src_hash.c Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- zoom-1.0.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/zoom/Makefile /home/trasz/zoom/Makefile --- /usr/ports/games/zoom/Makefile Mon Sep 4 09:26:23 2006 +++ /home/trasz/zoom/Makefile Fri Oct 6 14:16:40 2006 @@ -6,17 +6,18 @@ # PORTNAME= zoom -PORTVERSION= 1.0.2a -PORTREVISION= 1 +PORTVERSION= 1.0.5 CATEGORIES= games -MASTER_SITES= http://www.logicalshift.demon.co.uk/unix/${PORTNAME}/ -DISTNAME= zoom-1.0.2alpha1 +MASTER_SITES= http://www.logicalshift.co.uk/unix/zoom/ MAINTAINER= ports@FreeBSD.org COMMENT= Z-Interpreter for X with full V6 support LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ - expat.6:${PORTSDIR}/textproc/expat2 + expat.6:${PORTSDIR}/textproc/expat2 \ + t1.5:${PORTSDIR}/devel/t1lib \ + freetype.9:${PORTSDIR}/print/freetype2 \ + fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig USE_PERL5= yes USE_XLIB= yes diff -ruN --exclude=CVS /usr/ports/games/zoom/distinfo /home/trasz/zoom/distinfo --- /usr/ports/games/zoom/distinfo Sun Jan 22 12:18:58 2006 +++ /home/trasz/zoom/distinfo Fri Oct 6 14:11:01 2006 @@ -1,3 +1,3 @@ -MD5 (zoom-1.0.2alpha1.tar.gz) = 91b2fe444028178aa3b23bd0e3ae1a61 -SHA256 (zoom-1.0.2alpha1.tar.gz) = 88a7525561c76018d0f37f889f6debf4b5fc16fc7c805cdd9f85d94004199552 -SIZE (zoom-1.0.2alpha1.tar.gz) = 977597 +MD5 (zoom-1.0.5.tar.gz) = e8f2ceeb5c2520101bcaf517626cb32a +SHA256 (zoom-1.0.5.tar.gz) = 8a4361012b3bb2f4def0410776b2642e16c74cd0cec392952216c952c9614cce +SIZE (zoom-1.0.5.tar.gz) = 1257021 diff -ruN --exclude=CVS /usr/ports/games/zoom/files/patch-src_hash.c /home/trasz/zoom/files/patch-src_hash.c --- /usr/ports/games/zoom/files/patch-src_hash.c Wed Mar 10 22:14:15 2004 +++ /home/trasz/zoom/files/patch-src_hash.c Thu Jan 1 01:00:00 1970 @@ -1,25 +0,0 @@ - -$FreeBSD: ports/games/zoom/files/patch-src_hash.c,v 1.1 2004/03/10 21:14:15 naddy Exp $ - ---- src/hash.c.orig Thu Jul 25 20:10:02 2002 -+++ src/hash.c Wed Mar 10 16:00:01 2004 -@@ -81,7 +81,7 @@ - for (i = 0; i < 256; ++i) { - for (c = i << 24, j = 8; j > 0; --j) - c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY : (c << 1); -- crc32_table[i] = c; -+ crc32_table[i] = c & 0xffffffff; - } - } - -@@ -95,8 +95,8 @@ - init_crc32(); /* build table */ - crc = 0xffffffff; /* preload shift register, per CRC-32 spec */ - for (p = buf; len > 0; ++p, --len) -- crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *p]; -- return ~crc; /* transmit complement, per CRC-32 spec */ -+ crc = ((crc << 8) ^ crc32_table[(crc >> 24) ^ *p]) & 0xffffffff; -+ return ~crc & 0xffffffff; /* transmit complement, per CRC-32 spec */ - } - - static struct bucket *hash_lookup(hash hash, diff -ruN --exclude=CVS /usr/ports/games/zoom/pkg-plist /home/trasz/zoom/pkg-plist --- /usr/ports/games/zoom/pkg-plist Tue Jun 3 07:05:46 2003 +++ /home/trasz/zoom/pkg-plist Fri Oct 6 14:11:01 2006 @@ -1,3 +1,3 @@ bin/zoom -share/zoom/zoomrc -@dirrm share/zoom +%%DATADIR%%/zoomrc +@dirrm %%DATADIR%% --- zoom-1.0.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20061006121929.EE5DF39DB8>