pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/asc Update to 1.13.8.0:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9ee7f5d52d4b
branches:  trunk
changeset: 460534:9ee7f5d52d4b
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Aug 31 11:13:32 2003 +0000

description:
Update to 1.13.8.0:
Many annoying replay problems have been fixed, as well as several
bugs in the movement code.

diffstat:

 games/asc/Makefile         |   5 ++---
 games/asc/distinfo         |   8 +++-----
 games/asc/patches/patch-aa |  28 ----------------------------
 games/asc/patches/patch-ab |  25 -------------------------
 4 files changed, 5 insertions(+), 61 deletions(-)

diffs (95 lines):

diff -r a8ff74a8e89a -r 9ee7f5d52d4b games/asc/Makefile
--- a/games/asc/Makefile        Sun Aug 31 11:11:20 2003 +0000
+++ b/games/asc/Makefile        Sun Aug 31 11:13:32 2003 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2003/07/26 21:41:15 jmmv Exp $
+# $NetBSD: Makefile,v 1.6 2003/08/31 11:13:32 wiz Exp $
 #
 
-DISTNAME=              asc-source-1.13.7
+DISTNAME=              asc-source-1.13.8.0
 PKGNAME=               ${DISTNAME:S/-source//}
-PKGREVISION=           1
 WRKSRC=                        ${WRKDIR}/${PKGNAME_NOREV}
 CATEGORIES=            games
 MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE:=asc-hq/}
diff -r a8ff74a8e89a -r 9ee7f5d52d4b games/asc/distinfo
--- a/games/asc/distinfo        Sun Aug 31 11:11:20 2003 +0000
+++ b/games/asc/distinfo        Sun Aug 31 11:13:32 2003 +0000
@@ -1,12 +1,10 @@
-$NetBSD: distinfo,v 1.1.1.1 2003/07/13 22:23:13 wiz Exp $
+$NetBSD: distinfo,v 1.2 2003/08/31 11:13:33 wiz Exp $
 
-SHA1 (asc-source-1.13.7.tar.gz) = 5e81d4a70f2038f491cd373d5dc224686e985c4a
-Size (asc-source-1.13.7.tar.gz) = 6299655 bytes
+SHA1 (asc-source-1.13.8.0.tar.gz) = 84d9b85ac2d2e35cf1f1e7a187ac85333e8fc824
+Size (asc-source-1.13.8.0.tar.gz) = 6409642 bytes
 SHA1 (frontiers.mp3) = 7c6753fb5fe5e498fa780271da0a302c0619a1ca
 Size (frontiers.mp3) = 4407769 bytes
 SHA1 (machine_wars.mp3) = d05e92b46ae0e90d9f3b38ce9c4b41bde599a02e
 Size (machine_wars.mp3) = 2905989 bytes
 SHA1 (time_to_strike.mp3) = 76abf03155d9a21584f30c20370db0a93449c78a
 Size (time_to_strike.mp3) = 3242969 bytes
-SHA1 (patch-aa) = adc753ec07e77026a8d9c63aaa3269b66e0e215e
-SHA1 (patch-ab) = 3736415fd6f653d19dcd5098cf42c967deb9b0d7
diff -r a8ff74a8e89a -r 9ee7f5d52d4b games/asc/patches/patch-aa
--- a/games/asc/patches/patch-aa        Sun Aug 31 11:11:20 2003 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2003/07/13 22:23:13 wiz Exp $
-
---- source/ASCStringHelpers.h.orig     2002-04-05 11:25:05.000000000 +0200
-+++ source/ASCStringHelpers.h
-@@ -267,9 +267,9 @@ inline ASCStringHelpers::charT* ASCStrin
-     while ( *pTemp != _T( '\0' ) )
-     {
-         #ifdef _UNICODE
--            *pTemp = ::towlower ( *pTemp );
-+            *pTemp = towlower ( *pTemp );
-         #else
--            *pTemp = ::tolower  ( *pTemp );
-+            *pTemp = tolower  ( *pTemp );
-         #endif
- 
-         ++pTemp;
-@@ -311,9 +311,9 @@ inline ASCStringHelpers::charT* ASCStrin
-     while ( *pTemp != _T( '\0' ) )
-     {
-         #ifdef _UNICODE
--            *pTemp = ::towupper ( *pTemp );
-+            *pTemp = towupper ( *pTemp );
-         #else
--            *pTemp = ::toupper  ( *pTemp );
-+            *pTemp = toupper  ( *pTemp );
-         #endif
- 
-         ++pTemp;
diff -r a8ff74a8e89a -r 9ee7f5d52d4b games/asc/patches/patch-ab
--- a/games/asc/patches/patch-ab        Sun Aug 31 11:11:20 2003 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2003/07/13 22:23:13 wiz Exp $
-
---- source/basestrm.cpp.orig   2003-06-04 18:18:54.000000000 +0200
-+++ source/basestrm.cpp
-@@ -2381,7 +2381,19 @@ void appendbackslash ( ASCString& string
- int createDirectory ( const char* name )
- {
-    #ifdef _UNIX_
--    return mkdir ( name, 0700 );
-+    char *nname;
-+    int i;
-+
-+    if (name == NULL || (nname=strdup(name)) == NULL)
-+      return -1;
-+    i = strlen(nname);
-+    /* leave one '/' */
-+    while (i>1 && nname[i-1] == '/')
-+              nname[--i] = '\0';
-+    i = mkdir ( nname, 0700 );
-+    free(nname);
-+
-+    return i;
-    #else
-     return mkdir ( name );
-    #endif



Home | Main Index | Thread Index | Old Index