aboutsummaryrefslogtreecommitdiff
path: root/archivers/bzip
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2014-03-08 09:49:50 +0000
committerRene Ladan <rene@FreeBSD.org>2014-03-08 09:49:50 +0000
commit5d077b50ad155d6b45ce5b78a0abee111c3725a8 (patch)
tree1cc4d9da5bf337f5ebcafb8eabef889719b1b349 /archivers/bzip
parentce243209cf665fbf633f7c0e85ba7659da45a577 (diff)
downloadports-5d077b50ad155d6b45ce5b78a0abee111c3725a8.tar.gz
ports-5d077b50ad155d6b45ce5b78a0abee111c3725a8.zip
Remove expired ports with no active website:
2014-03-07 deskutils/phprojekt: No more public distfiles 2014-03-07 deskutils/libopensync-plugin-synce-legacy: No more public distfiles 2014-03-07 dns/skadns: No more public distfiles 2014-03-07 sysutils/gkrellmwho2: No more public distfiles 2014-03-07 audio/xmms-musepack: No more public distfiles 2014-03-07 archivers/bzip: No more public distfiles 2014-03-07 devel/cvsstat: No more public distfiles 2014-03-07 graphics/enfle: No more public distfiles 2014-03-07 audio/oggsplit: No more public distfiles 2014-03-07 devel/picasm: No more public distfiles 2014-03-07 databases/mysql-udf-preg: No more public distfiles 2014-03-07 devel/py-gitpython: No more public distfiles 2014-03-07 net/mars_nwe: No more public distfiles 2014-03-07 audio/fmio: No more public distfiles
Notes
Notes: svn path=/head/; revision=347472
Diffstat (limited to 'archivers/bzip')
-rw-r--r--archivers/bzip/Makefile31
-rw-r--r--archivers/bzip/distinfo2
-rw-r--r--archivers/bzip/files/COPYRIGHT21
-rw-r--r--archivers/bzip/files/patch-aa43
-rw-r--r--archivers/bzip/files/patch-ab12
-rw-r--r--archivers/bzip/files/patch-ac53
-rw-r--r--archivers/bzip/pkg-descr15
7 files changed, 0 insertions, 177 deletions
diff --git a/archivers/bzip/Makefile b/archivers/bzip/Makefile
deleted file mode 100644
index dd77808be416..000000000000
--- a/archivers/bzip/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Created by: Andreas Klemm <andreas@klemm.gtn.com>
-# $FreeBSD$
-
-PORTNAME= bzip
-PORTVERSION= 0.21
-CATEGORIES= archivers
-MASTER_SITES= http://ftp.riken.jp/FreeBSD/distfiles/RESTRICTED/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Block-sorting file compressor
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2014-03-07
-
-RESTRICTED= may be covered by patents
-USE_CSTD= gnu89
-
-PLIST_FILES= bin/bzip bin/bunzip \
- man/man1/bzip.1.gz \
- man/man1/bunzip.1.gz
-
-pre-install:
- @${CAT} ${FILESDIR}/COPYRIGHT
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/bzip ${STAGEDIR}${PREFIX}/bin
- ${LN} -fs bzip ${STAGEDIR}${PREFIX}/bin/bunzip
- ${INSTALL_MAN} ${WRKSRC}/bzip.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/bzip.1
- ${INSTALL_MAN} ${WRKSRC}/bzip.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/bunzip.1
-
-.include <bsd.port.mk>
diff --git a/archivers/bzip/distinfo b/archivers/bzip/distinfo
deleted file mode 100644
index c49f8f5c2879..000000000000
--- a/archivers/bzip/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (bzip-0.21.tar.gz) = 85846f55406fa019305cee6f0aa3637769e857d8fff00eba26d8effc4539b014
-SIZE (bzip-0.21.tar.gz) = 325757
diff --git a/archivers/bzip/files/COPYRIGHT b/archivers/bzip/files/COPYRIGHT
deleted file mode 100644
index 5f20d917c094..000000000000
--- 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/patch-aa b/archivers/bzip/files/patch-aa
deleted file mode 100644
index 69b52ae7048c..000000000000
--- a/archivers/bzip/files/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/files/patch-ab b/archivers/bzip/files/patch-ab
deleted file mode 100644
index 8a349de5f3e2..000000000000
--- a/archivers/bzip/files/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/files/patch-ac b/archivers/bzip/files/patch-ac
deleted file mode 100644
index b1cc8490d58f..000000000000
--- a/archivers/bzip/files/patch-ac
+++ /dev/null
@@ -1,53 +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 */
-@@ -2580,7 +2581,7 @@
-
-
- /*---------------------------------------------*/
--void mySignalCatcher ( IntNative *n )
-+void mySignalCatcher (int n __unused)
- {
- fprintf ( stderr,
- "\n%s: Control-C (or similar) caught, quitting.\n",
-@@ -2590,7 +2591,7 @@
-
-
- /*---------------------------------------------*/
--void mySIGSEGVorSIGBUScatcher ( IntNative *n )
-+void mySIGSEGVorSIGBUScatcher (int n __unused)
- {
- if (compressing)
- fprintf ( stderr,
-@@ -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-descr b/archivers/bzip/pkg-descr
deleted file mode 100644
index 2c2b02eb74e5..000000000000
--- a/archivers/bzip/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-Use of bzip2, which is intended to replace bzip, is recommended.
-The algorithms used in bzip2 are different and incompatible with
-those used in bzip. To open .bz archives, you must use bzip, and
-to open .bz2 archives you must use bzip2. Although bzip2 sometimes
-yields slightly larger output, it is faster, more reliable, maintained,
-much more widely used and is believed to be patent-free.
-
-Julian Seward, the author of bzip, gives this warning:
-
- 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.