diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-10-06 20:23:45 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-10-06 20:23:45 +0000 |
commit | f751c44076aa3103301095f00455964e87c2f524 (patch) | |
tree | 0324f3012983b56b343332b4ad4e1863992d2656 /games/zoom | |
parent | c8f43bda63b0d6e244a4683def90f147cb7016ab (diff) | |
download | ports-f751c44076aa3103301095f00455964e87c2f524.tar.gz ports-f751c44076aa3103301095f00455964e87c2f524.zip |
Notes
Diffstat (limited to 'games/zoom')
-rw-r--r-- | games/zoom/Makefile | 11 | ||||
-rw-r--r-- | games/zoom/distinfo | 6 | ||||
-rw-r--r-- | games/zoom/files/patch-src_hash.c | 25 | ||||
-rw-r--r-- | games/zoom/pkg-plist | 4 |
4 files changed, 11 insertions, 35 deletions
diff --git a/games/zoom/Makefile b/games/zoom/Makefile index 0cdde76495ea..18a8b1cacd8a 100644 --- a/games/zoom/Makefile +++ b/games/zoom/Makefile @@ -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 --git a/games/zoom/distinfo b/games/zoom/distinfo index 8856c1d6d49d..0322996d3a88 100644 --- a/games/zoom/distinfo +++ b/games/zoom/distinfo @@ -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 --git a/games/zoom/files/patch-src_hash.c b/games/zoom/files/patch-src_hash.c deleted file mode 100644 index cc00d058a048..000000000000 --- a/games/zoom/files/patch-src_hash.c +++ /dev/null @@ -1,25 +0,0 @@ - -$FreeBSD$ - ---- 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 --git a/games/zoom/pkg-plist b/games/zoom/pkg-plist index 2c14651402b1..f71ae5baef20 100644 --- a/games/zoom/pkg-plist +++ b/games/zoom/pkg-plist @@ -1,3 +1,3 @@ bin/zoom -share/zoom/zoomrc -@dirrm share/zoom +%%DATADIR%%/zoomrc +@dirrm %%DATADIR%% |