From 7168be5d552e7564eb754ca22dc8b03830769723 Mon Sep 17 00:00:00 2001 From: agc Date: Fri, 8 May 1998 10:30:52 +0000 Subject: Remove bzip package from the tree - it's deprecated by the author, in favour of the bzip2 package. --- archivers/Makefile | 3 +-- archivers/bzip/Makefile | 24 ----------------------- archivers/bzip/files/COPYRIGHT | 21 -------------------- archivers/bzip/files/md5 | 1 - archivers/bzip/patches/patch-aa | 43 ----------------------------------------- archivers/bzip/patches/patch-ab | 12 ------------ archivers/bzip/patches/patch-ac | 35 --------------------------------- archivers/bzip/pkg/COMMENT | 1 - archivers/bzip/pkg/DESCR | 20 ------------------- archivers/bzip/pkg/PLIST | 5 ----- 10 files changed, 1 insertion(+), 164 deletions(-) delete mode 100644 archivers/bzip/Makefile delete mode 100644 archivers/bzip/files/COPYRIGHT delete mode 100644 archivers/bzip/files/md5 delete mode 100644 archivers/bzip/patches/patch-aa delete mode 100644 archivers/bzip/patches/patch-ab delete mode 100644 archivers/bzip/patches/patch-ac delete mode 100644 archivers/bzip/pkg/COMMENT delete mode 100644 archivers/bzip/pkg/DESCR delete mode 100644 archivers/bzip/pkg/PLIST (limited to 'archivers') 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 - 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 - #include -+#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) /* stdlib already included above */ - #include -+#endif - #include - #include - 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 - #include - #include - #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 -- cgit v1.2.3