summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorwiz <wiz>2000-07-20 19:46:46 +0000
committerwiz <wiz>2000-07-20 19:46:46 +0000
commit46a240a03ac44dc72937ac66657b8514d7724414 (patch)
treec4e8a3ca3eeef1e0d74d302e9d3a051f2407cc53 /archivers
parent61c6a3b9e49a682d8cff1eb75f71e6c50afade91 (diff)
downloadpkgsrc-46a240a03ac44dc72937ac66657b8514d7724414.tar.gz
Initial import of unace-1.2, a tool for listing, verifying and extracting
ACE archives.
Diffstat (limited to 'archivers')
-rw-r--r--archivers/unace/Makefile24
-rw-r--r--archivers/unace/files/md53
-rw-r--r--archivers/unace/files/patch-sum4
-rw-r--r--archivers/unace/patches/patch-aa21
-rw-r--r--archivers/unace/patches/patch-ab18
-rw-r--r--archivers/unace/pkg/COMMENT1
-rw-r--r--archivers/unace/pkg/DESCR2
-rw-r--r--archivers/unace/pkg/PLIST4
8 files changed, 77 insertions, 0 deletions
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 <machine/endian.h>
++#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