diff options
author | joerg <joerg@pkgsrc.org> | 2012-11-01 19:44:16 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-11-01 19:44:16 +0000 |
commit | 93bcfc602095e29eebb69b0e53dd29f7f4a58610 (patch) | |
tree | e7a8ee5334b6d4a54e459b6bbf45b6bd3ba2b92b /games | |
parent | 498af038c4afefc575944370c83ba033d68f36b7 (diff) | |
download | pkgsrc-93bcfc602095e29eebb69b0e53dd29f7f4a58610.tar.gz |
Welcome the void.
Diffstat (limited to 'games')
-rw-r--r-- | games/omega/distinfo | 6 | ||||
-rw-r--r-- | games/omega/patches/patch-ab | 6 | ||||
-rw-r--r-- | games/omega/patches/patch-ae | 52 |
3 files changed, 56 insertions, 8 deletions
diff --git a/games/omega/distinfo b/games/omega/distinfo index 079a315fadb..e5ff28f8b63 100644 --- a/games/omega/distinfo +++ b/games/omega/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.5 2005/02/23 23:12:01 agc Exp $ +$NetBSD: distinfo,v 1.6 2012/11/01 19:44:16 joerg Exp $ SHA1 (omega-0.90.4-src.tar.gz) = fb6e20565057aee1250154afbcdb562cf39586fd RMD160 (omega-0.90.4-src.tar.gz) = 04eb5dccb753da896f3cb3cce3a515a6f5699302 Size (omega-0.90.4-src.tar.gz) = 341346 bytes SHA1 (patch-aa) = df5933dcc7098ba00f4b3002612b3318a9b09974 -SHA1 (patch-ab) = fe2960b28a3cd912c35edeb8a05087eb18d136f5 +SHA1 (patch-ab) = 796f6af88356b09b2e63d05948f7d3098d3a3cc5 SHA1 (patch-ac) = 546ad6d5f6f67a9a5b7cdf4827a2256f3b948dac SHA1 (patch-ad) = 23fb55f159f084fdf31771ebd5452f2fd6ea2ddb -SHA1 (patch-ae) = 6d49ef5d16f9e6be8c97e6b945cc8d75da61e24d +SHA1 (patch-ae) = 02d849ac89e8ab359e809d7a68ec0feaa6ed8b86 SHA1 (patch-af) = 09e5ddb20071d25095ff41e685cf511f688689be diff --git a/games/omega/patches/patch-ab b/games/omega/patches/patch-ab index 75a256fe23b..ed908b26351 100644 --- a/games/omega/patches/patch-ab +++ b/games/omega/patches/patch-ab @@ -1,7 +1,7 @@ -$NetBSD: patch-ab,v 1.3 2001/01/07 22:31:46 wiz Exp $ +$NetBSD: patch-ab,v 1.4 2012/11/01 19:44:17 joerg Exp $ ---- defs.h Fri Jan 1 03:08:19 1999 -+++ /home/andy/tmp/wrk/defs.h Fri May 14 20:51:11 1999 +--- defs.h.orig Fri Jan 1 03:08:19 1999 ++++ defs.h Fri May 14 20:51:11 1999 @@ -45,7 +45,9 @@ This might usually be "/usr/games/lib/omegalib/", for unix, or something like "c:\\games\\omega\\omegalib\\" for msdos */ diff --git a/games/omega/patches/patch-ae b/games/omega/patches/patch-ae index 72e569b176a..f9290b6a72c 100644 --- a/games/omega/patches/patch-ae +++ b/games/omega/patches/patch-ae @@ -1,6 +1,6 @@ -$NetBSD: patch-ae,v 1.4 2003/12/31 18:07:47 ben Exp $ +$NetBSD: patch-ae,v 1.5 2012/11/01 19:44:17 joerg Exp $ ---- compress.c.orig 1998-08-08 03:47:56.000000000 -0700 +--- compress.c.orig 1998-08-08 10:47:56.000000000 +0000 +++ compress.c @@ -104,7 +104,7 @@ static char sccsid[] = "@(#)compress.c 5 #ifdef PBITS /* Preferred BITS for this memory size */ @@ -20,3 +20,51 @@ $NetBSD: patch-ae,v 1.4 2003/12/31 18:07:47 ben Exp $ #define htabof(i) htab[i] #define codetabof(i) codetab[i] +@@ -379,6 +379,10 @@ int perm_stat = 0; /* permanent status + + code_int getcode(); + ++void copystat(char *ifname, char *ofname); ++void decompress(void); ++void compress(void); ++ + Usage() { + #ifdef DEBUG + fprintf(stderr,"Usage: compress [-dDVfc] [-b maxbits] [file ...]\n"); +@@ -460,7 +464,7 @@ FILE *infile, *outfile; + * procedure needs no input table, but tracks the way the table was built. + */ + +-do_compression( decomp, file ) ++void do_compression( decomp, file ) + int decomp; + char *file; + { +@@ -663,7 +667,7 @@ long int out_count = 0; /* # of codes + * questions about this implementation to ames!jaw. + */ + +-compress() ++void compress(void) + { + register long fcode; + register code_int i = 0; +@@ -931,7 +935,7 @@ code_int code; + * with those of the compress() routine. See the definitions above. + */ + +-decompress() { ++void decompress(void) { + register char_type *stackp; + register int finchar; + register code_int code, oldcode, incode; +@@ -1227,8 +1231,7 @@ writeerr() + exit ( 1 ); + } + +-copystat(ifname, ofname) +-char *ifname, *ofname; ++void copystat(char *ifname, char *ofname) + { + struct stat statbuf; + int mode; |