summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authoragc <agc>1998-05-08 10:30:52 +0000
committeragc <agc>1998-05-08 10:30:52 +0000
commit7168be5d552e7564eb754ca22dc8b03830769723 (patch)
tree7c684f5ea2d3110109ef610624c4feabb5b3c97f /archivers
parent6a43e86d7190a987c745f17ee855d23a33bc4fbc (diff)
downloadpkgsrc-7168be5d552e7564eb754ca22dc8b03830769723.tar.gz
Remove bzip package from the tree - it's deprecated by the author, in
favour of the bzip2 package.
Diffstat (limited to 'archivers')
-rw-r--r--archivers/Makefile3
-rw-r--r--archivers/bzip/Makefile24
-rw-r--r--archivers/bzip/files/COPYRIGHT21
-rw-r--r--archivers/bzip/files/md51
-rw-r--r--archivers/bzip/patches/patch-aa43
-rw-r--r--archivers/bzip/patches/patch-ab12
-rw-r--r--archivers/bzip/patches/patch-ac35
-rw-r--r--archivers/bzip/pkg/COMMENT1
-rw-r--r--archivers/bzip/pkg/DESCR20
-rw-r--r--archivers/bzip/pkg/PLIST5
10 files changed, 1 insertions, 164 deletions
diff --git a/archivers/Makefile b/archivers/Makefile
index e9f0411fcc9..a2bb45cb39c 100644
--- a/archivers/Makefile
+++ b/archivers/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.8 1998/04/15 10:38:07 agc Exp $
+# $NetBSD: Makefile,v 1.9 1998/05/08 10:30:52 agc Exp $
# FreeBSD Id: Makefile,v 1.18 1997/05/16 01:42:31 asami Exp
#
SUBDIR += arc
-# SUBDIR += bzip
SUBDIR += bzip2
SUBDIR += freeze
SUBDIR += gcpio
diff --git a/archivers/bzip/Makefile b/archivers/bzip/Makefile
deleted file mode 100644
index d551cedd547..00000000000
--- a/archivers/bzip/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# $NetBSD: Makefile,v 1.4 1998/04/20 11:56:17 frueauf Exp $
-# FreeBSD Id: Makefile,v 1.9 1996/12/07 09:28:40 max Exp
-#
-
-DISTNAME= bzip-0.21
-CATEGORIES= archivers
-MASTER_SITES= http://www.cs.man.ac.uk/arch/people/j-seward/
-
-MAINTAINER= packages@netbsd.org
-
-NO_CDROM= "Restrictive copyright (don't sell for profit)"
-MAN1= bzip.1 bunzip.1
-
-pre-install:
- @${CAT} ${FILESDIR}/COPYRIGHT
-
-do-install:
- ${RM} -f ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip
- ${INSTALL_PROGRAM} ${WRKSRC}/bzip ${PREFIX}/bin/bzip
- ln -fs ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip
- ${INSTALL_MAN} ${WRKSRC}/bzip.1 ${PREFIX}/man/man1/bzip.1
- ${INSTALL_MAN} ${WRKSRC}/bzip.1 ${PREFIX}/man/man1/bunzip.1
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/archivers/bzip/files/COPYRIGHT b/archivers/bzip/files/COPYRIGHT
deleted file mode 100644
index 5f20d917c09..00000000000
--- a/archivers/bzip/files/COPYRIGHT
+++ /dev/null
@@ -1,21 +0,0 @@
-COPYRIGHT
-=========
-
-BZIP is distributed under the GNU General Public License version
-2; for details, see the file LICENSE. Pointers to the algorithms
-used are in ALGORITHMS.
-
-COMMERCIAL USE
-==============
-
-This program may or may not infringe certain US patents pertaining
-to arithmetic coding and to the block-sorting transformation itself.
-Opinions differ as to the precise legal status of some of the
-algorithms used. Nevertheless, you should be aware that commercial
-use of this program could render you liable to unfriendly legal
-action.
-
- Julian Seward <sewardj@cs.man.ac.uk>
- Manchester, UK
- 18 July 1996 (version 0.15)
- 25 August 1996 (version 0.21)
diff --git a/archivers/bzip/files/md5 b/archivers/bzip/files/md5
deleted file mode 100644
index 697f194cd4e..00000000000
--- a/archivers/bzip/files/md5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (bzip-0.21.tar.gz) = 03a7fe24ced5ac4401a32092409c78be
diff --git a/archivers/bzip/patches/patch-aa b/archivers/bzip/patches/patch-aa
deleted file mode 100644
index 69b52ae7048..00000000000
--- a/archivers/bzip/patches/patch-aa
+++ /dev/null
@@ -1,43 +0,0 @@
---- Makefile.orig Sat Aug 31 09:50:33 1996
-+++ Makefile Fri Sep 27 13:57:55 1996
-@@ -1,29 +1,17 @@
--
--CC = gcc
--SH = /bin/sh
--
--CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -Wall -Winline -Wshadow -W
--
--
-+CFLAGS+= -fomit-frame-pointer
-
- all:
-- cat words0
- $(CC) $(CFLAGS) -o bzip bzip.c
-- rm -f bunzip
-- ln -s ./bzip ./bunzip
-- cat words1
-- ./bzip -Q -1 < sample1.ref > sample1.rbz
-- ./bzip -Q -2 < sample2.ref > sample2.rbz
-- ./bunzip -Q < sample1.bz > sample1.tst
-- ./bunzip -Q < sample2.bz > sample2.tst
-- cat words2
-- cmp sample1.bz sample1.rbz
-- cmp sample2.bz sample2.rbz
-- cmp sample1.tst sample1.ref
-- cmp sample2.tst sample2.ref
-- cat words3
--
-+ @ln -fs ./bzip ./bunzip
-+ @echo "*** testing bzip and bunzip ***"
-+ ./bzip -Q -1 < sample1.ref > sample1.rbz || exit 1
-+ ./bzip -Q -2 < sample2.ref > sample2.rbz || exit 1
-+ ./bunzip -Q < sample1.bz > sample1.tst || exit 1
-+ ./bunzip -Q < sample2.bz > sample2.tst || exit 1
-+ cmp sample1.bz sample1.rbz || exit 1
-+ cmp sample2.bz sample2.rbz || exit 1
-+ cmp sample1.tst sample1.ref || exit 1
-+ cmp sample2.tst sample2.ref || exit 1
-
- clean:
- rm -f bzip bunzip sample*.tst sample*.rbz
--
diff --git a/archivers/bzip/patches/patch-ab b/archivers/bzip/patches/patch-ab
deleted file mode 100644
index 8a349de5f3e..00000000000
--- a/archivers/bzip/patches/patch-ab
+++ /dev/null
@@ -1,12 +0,0 @@
---- bzip.c.orig Fri Sep 27 12:33:18 1996
-+++ bzip.c Fri Sep 27 12:35:48 1996
-@@ -116,7 +116,9 @@
- #if BZ_UNIX_32
- #include <utime.h>
- #include <unistd.h>
-+#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) /* stdlib already included above */
- #include <malloc.h>
-+#endif
- #include <sys/stat.h>
- #include <sys/times.h>
-
diff --git a/archivers/bzip/patches/patch-ac b/archivers/bzip/patches/patch-ac
deleted file mode 100644
index ca210ce4094..00000000000
--- a/archivers/bzip/patches/patch-ac
+++ /dev/null
@@ -1,35 +0,0 @@
---- bzip.c.orig Sat Sep 28 03:32:05 1996
-+++ bzip.c Sat Sep 28 03:37:53 1996
-@@ -114,6 +114,7 @@
- --*/
-
- #if BZ_UNIX_32
-+ #include <sys/types.h>
- #include <utime.h>
- #include <unistd.h>
- #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) /* stdlib already included above */
-@@ -3132,11 +3133,6 @@
- signal (SIGBUS, mySIGSEGVorSIGBUScatcher);
- #endif
-
-- if ( ! (argc > 1 && strcmp ( "-Q", argv[1] ) == 0) )
-- fprintf ( stderr,
-- "BZIP, a block-sorting file compressor. "
-- "Version 0.21, 25-August-96.\n" );
--
- #if DEBUG
- if ( ! (argc > 1 && strcmp ( "-Q", argv[1] ) == 0) )
- fprintf ( stderr, "BZIP: *** compiled with debugging ON ***\n" );
-@@ -3206,6 +3202,12 @@
- exit ( 1 );
- break;
- }
-+
-+ if (verbose) {
-+ fprintf ( stderr,
-+ "BZIP, a block-sorting file compressor. "
-+ "Version 0.21, 25-August-96.\n" );
-+ }
-
- if ( opMode == OM_FILE_TO_STDOUT && numFileNames != 1) {
- fprintf ( stderr, "%s: Option -c requires you to supply exactly one filename.\n",
diff --git a/archivers/bzip/pkg/COMMENT b/archivers/bzip/pkg/COMMENT
deleted file mode 100644
index 4a54023fe56..00000000000
--- a/archivers/bzip/pkg/COMMENT
+++ /dev/null
@@ -1 +0,0 @@
-A block-sorting file compressor.
diff --git a/archivers/bzip/pkg/DESCR b/archivers/bzip/pkg/DESCR
deleted file mode 100644
index c773207da1f..00000000000
--- a/archivers/bzip/pkg/DESCR
+++ /dev/null
@@ -1,20 +0,0 @@
-Bzip compresses files using the Burrows-Wheeler-Fenwick
-block-sorting text compression algorithm.
-
-Compression is generally considerably better than that achieved by
-more conventional LZ77/LZ78-based compressors, and competitive with
-all but the best of the PPM family of statistical compressors.
-
-BZIP is distributed under the GNU General Public License version
-2; for details, see the file LICENSE. Pointers to the algorithms
-used are in ALGORITHMS.
-
-COMMERCIAL USE
-==============
-
-This program may or may not infringe certain US patents pertaining
-to arithmetic coding and to the block-sorting transformation itself.
-Opinions differ as to the precise legal status of some of the
-algorithms used. Nevertheless, you should be aware that commercial
-use of this program could render you liable to unfriendly legal
-action.
diff --git a/archivers/bzip/pkg/PLIST b/archivers/bzip/pkg/PLIST
deleted file mode 100644
index 7bbe0300f95..00000000000
--- a/archivers/bzip/pkg/PLIST
+++ /dev/null
@@ -1,5 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 1997/11/06 09:57:19 agc Exp $
-bin/bzip
-bin/bunzip
-man/man1/bzip.1.gz
-man/man1/bunzip.1.gz