From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 16:50:01 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 637C116A4D4 for ; Fri, 6 May 2005 16:50:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B88B43D1D for ; Fri, 6 May 2005 16:50:01 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j46Go1CH015012 for ; Fri, 6 May 2005 16:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j46Go1x4015011; Fri, 6 May 2005 16:50:01 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2005 16:50:01 GMT Resent-Message-Id: <200505061650.j46Go1x4015011@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Radim Kolar Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B40E16A4D4 for ; Fri, 6 May 2005 16:41:10 +0000 (GMT) Received: from smtp1.vol.cz (smtp1.vol.cz [195.250.128.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BDFA43D9C for ; Fri, 6 May 2005 16:41:09 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (volny-ipt-3-167.dialup.vol.cz [62.177.66.167]) by smtp1.vol.cz (8.12.9p2/8.12.9) with ESMTP id j46Gf6Dm019932 for ; Fri, 6 May 2005 18:41:07 +0200 (CEST) (envelope-from hsn@netmag.cz) Received: from hsn@localhost by sanatana.dharma (Exim 4.51_0 FreeBSD) id 1DU3az-0001DP-9c ; Fri, 06 May 2005 16:14:25 +0200 Message-Id: Date: Fri, 06 May 2005 16:14:25 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hsn@smtp1.vol.cz Subject: ports/80706: [NEW PORT] archivers/lzma: Command line lzma archiver X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2005 16:50:01 -0000 >Number: 80706 >Category: ports >Synopsis: [NEW PORT] archivers/lzma: Command line lzma archiver >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 06 16:50:00 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: FreeBSD 5.4-STABLE i386 >Organization: Sanatana Dharma >Environment: System: FreeBSD sanatana.dharma 5.4-STABLE FreeBSD 5.4-STABLE #6: Sat Apr 30 20:15:38 CEST 2005 >Description: 1. This PR replaces ports/80554 2. Update to latest LZMA SDK 3. Mr. Jean-Yves Lefort, i do not want to maintain this. Simple command line version of compression program using LZMA compression method. This program is taken from LZMA SDK. 7-zip uses the same compression method, but creates 7Z archives instead of pure LZMA data stream. LZMA can compress and decompress data streams using standard input/output. Compression ratio is about 25-30% better than bzip2 and decompression speed is about two times faster. This makes LZMA good bzip2 replacement for use in software distribution. WWW: http://www.7-zip.org/sdk.html Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- lzma-4.17.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # lzma # lzma/Makefile # lzma/distinfo # lzma/pkg-descr # echo c - lzma mkdir -p lzma > /dev/null 2>&1 echo x - lzma/Makefile sed 's/^X//' >lzma/Makefile << 'END-of-lzma/Makefile' X# New ports collection makefile for: lzma X# Date created: 25 Apr 2005 X# Whom: Radim Kolar X# X# $FreeBSD$ X# X XPORTNAME= lzma XPORTVERSION= 4.17 XCATEGORIES= archivers XMASTER_SITES= http://www.7-zip.org/dl/ XDISTNAME= lzma${PORTVERSION:S/.//g} X XMAINTAINER= ports@freebsd.org XCOMMENT= Command line lzma archiver X XUSE_BZIP2= yes XUSE_GMAKE= yes XNO_WRKSUBDIR= yes X XLZMA_SUBDIR= SRC/7zip/Compress/LZMA_Alone XPLIST_FILES= bin/lzma XPORTDOCS= *.txt X Xdo-build: X cd ${WRKSRC}/${LZMA_SUBDIR} && ${GMAKE} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${LZMA_SUBDIR}/lzma ${PREFIX}/bin X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} X ${RM} -f ${DOCSDIR}/LGPL.txt X.endif X X.include END-of-lzma/Makefile echo x - lzma/distinfo sed 's/^X//' >lzma/distinfo << 'END-of-lzma/distinfo' XMD5 (lzma417.tar.bz2) = b1ab85e4dc1eb1323d77fef47a2cb71c XSIZE (lzma417.tar.bz2) = 161670 END-of-lzma/distinfo echo x - lzma/pkg-descr sed 's/^X//' >lzma/pkg-descr << 'END-of-lzma/pkg-descr' XSimple command line version of compression program using LZMA compression Xmethod. This program is taken from LZMA SDK. 7-zip uses the same compression Xmethod, but creates 7Z archives instead of pure LZMA data stream. LZMA can Xcompress and decompress data streams using standard input/output. X XCompression ratio is about 25-30% better than bzip2 and decompression speed Xis about two times faster. This makes LZMA good bzip2 replacement for Xuse in software distribution. X XWWW: http://www.7-zip.org/sdk.html END-of-lzma/pkg-descr exit --- lzma-4.17.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: