diff options
author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2000-05-07 13:20:58 +0000 |
---|---|---|
committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2000-05-07 13:20:58 +0000 |
commit | 07017fc58342b9372df53e3155abe5c12231b1b0 (patch) | |
tree | 0d6aeb81e1bfc08a10d9aa38b059b01aa7a5a32b | |
parent | New port, heat, which allows you to monitor the thermal aspects (diff) |
New port: mscompress, a Microsoft "compress.exe/expand.exe"
compatible (de)compressor
PR: 18027
Submitted by: Patrick Seal <patseal@hyperhost.net>
Notes
Notes:
svn path=/head/; revision=28333
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/mscompress/Makefile | 26 | ||||
-rw-r--r-- | archivers/mscompress/distinfo | 1 | ||||
-rw-r--r-- | archivers/mscompress/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/mscompress/pkg-descr | 9 | ||||
-rw-r--r-- | archivers/mscompress/pkg-plist | 2 |
6 files changed, 40 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 6b271039ef09..adacb8867993 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -14,6 +14,7 @@ SUBDIR += linux_rar SUBDIR += lzo SUBDIR += makeself + SUBDIR += mscompress SUBDIR += nulib SUBDIR += p5-Compress-Zlib SUBDIR += pkzip diff --git a/archivers/mscompress/Makefile b/archivers/mscompress/Makefile new file mode 100644 index 000000000000..b54615986078 --- /dev/null +++ b/archivers/mscompress/Makefile @@ -0,0 +1,26 @@ +# Ports collection makefile for: mscompress +# Date created: 15 Apr 2000 +# Whom: Patrick Seal <patseal@hyperhost.net> +# +# $FreeBSD$ +# + +PORTNAME= mscompress +PORTVERSION= 0.3 +CATEGORIES= archivers +MASTER_SITES= ftp://ftp.penguin.cz/pub/users/mhi/mscompress/ + +MAINTAINER= patseal@hyperhost.net + +USE_BZIP2= yes +HAS_CONFIGURE= yes + +MAN1= mscompress.1 msexpand.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/mscompress ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/msexpand ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/mscompress.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/msexpand.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/archivers/mscompress/distinfo b/archivers/mscompress/distinfo new file mode 100644 index 000000000000..bad923f7e9eb --- /dev/null +++ b/archivers/mscompress/distinfo @@ -0,0 +1 @@ +MD5 (mscompress-0.3.tar.bz2) = e85fe2fb0df95a7a921ecd867933ff89 diff --git a/archivers/mscompress/pkg-comment b/archivers/mscompress/pkg-comment new file mode 100644 index 000000000000..0558409bf9c9 --- /dev/null +++ b/archivers/mscompress/pkg-comment @@ -0,0 +1 @@ +Microsoft "compress.exe/expand.exe" compatible (de)compressor diff --git a/archivers/mscompress/pkg-descr b/archivers/mscompress/pkg-descr new file mode 100644 index 000000000000..10da641d8afb --- /dev/null +++ b/archivers/mscompress/pkg-descr @@ -0,0 +1,9 @@ +Microsoft "compress.exe/expand.exe" compatible (de)compressor + +This package contains two programs: + +msexpand, which decompress files compressed by Microsoft compress.exe utility +(e.g. Win 3.x installation files) + +mscompress, which compress files using LZ77 compression algorithm. Output +files can be decompressed using Microsoft expand.exe or msexpand(1). diff --git a/archivers/mscompress/pkg-plist b/archivers/mscompress/pkg-plist new file mode 100644 index 000000000000..6c9953a7b096 --- /dev/null +++ b/archivers/mscompress/pkg-plist @@ -0,0 +1,2 @@ +bin/mscompress +bin/msexpand |