From 08c2ac6145f2bf4c290ab1363dd423deabd33e8f Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 20 Jul 2000 19:46:46 +0000 Subject: Initial import of unace-1.2, a tool for listing, verifying and extracting ACE archives. --- archivers/unace/Makefile | 24 ++++++++++++++++++++++++ archivers/unace/files/md5 | 3 +++ archivers/unace/files/patch-sum | 4 ++++ archivers/unace/patches/patch-aa | 21 +++++++++++++++++++++ archivers/unace/patches/patch-ab | 18 ++++++++++++++++++ archivers/unace/pkg/COMMENT | 1 + archivers/unace/pkg/DESCR | 2 ++ archivers/unace/pkg/PLIST | 4 ++++ 8 files changed, 77 insertions(+) create mode 100644 archivers/unace/Makefile create mode 100644 archivers/unace/files/md5 create mode 100644 archivers/unace/files/patch-sum create mode 100644 archivers/unace/patches/patch-aa create mode 100644 archivers/unace/patches/patch-ab create mode 100644 archivers/unace/pkg/COMMENT create mode 100644 archivers/unace/pkg/DESCR create mode 100644 archivers/unace/pkg/PLIST (limited to 'archivers') diff --git a/archivers/unace/Makefile b/archivers/unace/Makefile new file mode 100644 index 00000000000..867262523ad --- /dev/null +++ b/archivers/unace/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/07/20 19:46:46 wiz Exp $ +# + +DISTNAME= unacepub +PKGNAME= unace-1.2 +CATEGORIES= archivers +MASTER_SITES= ftp://ftp.elf.stuba.sk/pub/pc/pack/ \ + ftp://sunsite.univie.ac.at/pub/compression/ftp.elf.stuba.sk/ +EXTRACT_SUFX= .zip + +MAINTAINER= wiz@netbsd.org +HOMEPAGE= http://www.winace.com/ + +USE_GMAKE= yes +DIST_SUBDIR= unace-1.2 +NO_WRKSUBDIR= yes +MAKEFILE= unix/makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/unace ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/unace + ${INSTALL_MAN} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/unace + +.include "../../mk/bsd.pkg.mk" diff --git a/archivers/unace/files/md5 b/archivers/unace/files/md5 new file mode 100644 index 00000000000..0e4c02b2696 --- /dev/null +++ b/archivers/unace/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2000/07/20 19:46:47 wiz Exp $ + +MD5 (unace-1.2/unacepub.zip) = cbe24fca48c783b207cec859e512e446 diff --git a/archivers/unace/files/patch-sum b/archivers/unace/files/patch-sum new file mode 100644 index 00000000000..0ad9cfd2e0b --- /dev/null +++ b/archivers/unace/files/patch-sum @@ -0,0 +1,4 @@ +$NetBSD: patch-sum,v 1.1.1.1 2000/07/20 19:46:47 wiz Exp $ + +MD5 (patch-aa) = 4214f3c4ecfc6213b7d8d69427a20b8e +MD5 (patch-ab) = b770dbe8d6ce039ba1e015d69a64214e diff --git a/archivers/unace/patches/patch-aa b/archivers/unace/patches/patch-aa new file mode 100644 index 00000000000..62d65720a63 --- /dev/null +++ b/archivers/unace/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/07/20 19:46:47 wiz Exp $ + +--- unix/makefile.orig Wed Jul 1 10:29:10 1998 ++++ unix/makefile Thu Jul 20 20:27:59 2000 +@@ -16,7 +16,7 @@ + #CFLAGS = -Wall -O3 -s #-DNDEBUG + #CFLAGS = -g -Wall -DMDEBUG + #CFLAGS = -O3 -fno-strength-reduce -fomit-frame-pointer # These are for Linux +-CFLAGS = -O -g -Wall -dLO_HI_BYTE_ORDER ++CFLAGS += -g -Wall + CHALLOC = challoc.o + CHALLOC = + CHNEW = chnew.o challoc.o +@@ -36,6 +36,7 @@ + # not all systems require the math library + #LIBS = -lm + ++all: unace + + unace$(EXEEXT): $(OBJ) $(CHALLOC) + gcc $(CFLAGS) -o $@ $^ $(LIBS) diff --git a/archivers/unace/patches/patch-ab b/archivers/unace/patches/patch-ab new file mode 100644 index 00000000000..e86c3190208 --- /dev/null +++ b/archivers/unace/patches/patch-ab @@ -0,0 +1,18 @@ +$NetBSD: patch-ab,v 1.1.1.1 2000/07/20 19:46:47 wiz Exp $ + +--- os.h.orig Wed Jul 1 10:29:10 1998 ++++ os.h Thu Jul 20 20:28:19 2000 +@@ -21,4 +21,13 @@ + #define DIRSEP '/' + #endif + ++#if defined(__NetBSD__) ++#include ++#if BYTE_ORDER == BIG_ENDIAN ++#define HI_LO_BYTE_ORDER ++#else ++#define LO_HI_BYTE_ORDER ++#endif ++#endif ++ + #endif /* __os_h */ diff --git a/archivers/unace/pkg/COMMENT b/archivers/unace/pkg/COMMENT new file mode 100644 index 00000000000..00e445d7ed6 --- /dev/null +++ b/archivers/unace/pkg/COMMENT @@ -0,0 +1 @@ +Extract, list and test files in ACE archives diff --git a/archivers/unace/pkg/DESCR b/archivers/unace/pkg/DESCR new file mode 100644 index 00000000000..658c4cca3bb --- /dev/null +++ b/archivers/unace/pkg/DESCR @@ -0,0 +1,2 @@ +Unace allows you to list the contents of ACE archives, test their +integrity, and extract files from them. diff --git a/archivers/unace/pkg/PLIST b/archivers/unace/pkg/PLIST new file mode 100644 index 00000000000..ba32847068a --- /dev/null +++ b/archivers/unace/pkg/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/07/20 19:46:46 wiz Exp $ +bin/unace +share/doc/unace/readme.txt +@dirrm share/doc/unace -- cgit v1.2.3