Update to 2.71. No changelog available.

Known changes: This package now works on bigendian-, and probably even on
64bit-platforms.
This commit is contained in:
wiz 2001-01-31 16:10:13 +00:00
parent bdbd637c23
commit 1389b75d82
4 changed files with 11 additions and 40 deletions

View file

@ -1,14 +1,12 @@
# $NetBSD: Makefile,v 1.7 1999/12/23 23:48:27 wiz Exp $
# $NetBSD: Makefile,v 1.8 2001/01/31 16:10:13 wiz Exp $
DISTNAME= unrar-2.50
DISTNAME= unrar-2.71
CATEGORIES= archivers
MASTER_SITES= ftp://ftp.kiarchive.ru/pub/unix/arcers/
MASTER_SITES= ftp://sunsite.univie.ac.at/pub/distfiles/
MAINTAINER= packages@netbsd.org
MAINTAINER= wiz@netbsd.org
HOMEPAGE= http://www.rarsoft.com/
NO_WRKSUBDIR=
do-build:
cd ${WRKSRC} && ${LINK.c} -o unrar -D_UNIX unrar.c

View file

@ -1,3 +1,3 @@
$NetBSD: md5,v 1.3 1999/05/22 21:41:44 tv Exp $
$NetBSD: md5,v 1.4 2001/01/31 16:10:14 wiz Exp $
MD5 (unrar-2.50.tar.gz) = ac92453b6e1c3bd1d0a8fb36b1eb371f
MD5 (unrar-2.71.tar.gz) = d3f2ede3e321f80e4b3b98bc1e082812

View file

@ -1,3 +1,6 @@
$NetBSD: patch-sum,v 1.1 1999/07/09 13:50:09 agc Exp $
$NetBSD: patch-sum,v 1.2 2001/01/31 16:10:14 wiz Exp $
MD5 (patch-aa) = cc56a34ee1c219cdb7f6cc74a2f3ec12
This placeholder file is generated by the ``makepatchsum'' target
whenever the patches directory is empty or missing. Its purpose
is to ensure that the presence of any obsolete patches will cause
the proper error to be emitted at build time.

View file

@ -1,30 +0,0 @@
$NetBSD: patch-aa,v 1.3 1999/05/22 21:41:44 tv Exp $
--- smallfn.c.orig Sat Apr 17 10:53:02 1999
+++ smallfn.c Sat May 22 17:38:30 1999
@@ -92,8 +92,12 @@
}
if (Choice==4)
{
+ char *s;
mprintf(MAskNewName);
- gets(Name);
+ *Name = '\0';
+ fgets(Name, NM, stdin);
+ if ((s = strchr(Name, '\n')) != NULL)
+ *s = '\0';
continue;
}
if (Choice==5)
@@ -110,7 +114,10 @@
int GetKey(void)
{
char Str[80];
- gets(Str);
+ *Str = '\0';
+ fgets(Str, 80, stdin);
+ if (*Str == '\n')
+ *Str = '\0';
return(Str[0]);
}