diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-04-11 18:28:41 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-04-11 18:28:41 +0000 |
commit | 685629ed38626a5ca1a8bd4c8f2c7a6c0d03686b (patch) | |
tree | a78a165c5e960c762db7b0276d7a896b6c2db0f0 /app-arch/rzip | |
parent | remove old version and associated cruft (diff) | |
download | historical-685629ed38626a5ca1a8bd4c8f2c7a6c0d03686b.tar.gz historical-685629ed38626a5ca1a8bd4c8f2c7a6c0d03686b.tar.bz2 historical-685629ed38626a5ca1a8bd4c8f2c7a6c0d03686b.zip |
new compression thingy from rsync people
Diffstat (limited to 'app-arch/rzip')
-rw-r--r-- | app-arch/rzip/ChangeLog | 11 | ||||
-rw-r--r-- | app-arch/rzip/Manifest | 3 | ||||
-rw-r--r-- | app-arch/rzip/files/digest-rzip-2.0 | 1 | ||||
-rw-r--r-- | app-arch/rzip/rzip-2.0.ebuild | 28 |
4 files changed, 43 insertions, 0 deletions
diff --git a/app-arch/rzip/ChangeLog b/app-arch/rzip/ChangeLog new file mode 100644 index 000000000000..47739740cc88 --- /dev/null +++ b/app-arch/rzip/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-arch/rzip +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/ChangeLog,v 1.1 2004/04/11 18:28:41 seemant Exp $ + +*rzip-2.0 (11 Apr 2004) + + 11 Apr 2004; Seemant Kulleen <seemant@gentoo.org> rzip-2.0.ebuild: + compression programme from the rsync makers. shows good compression ratios + compared with bzip2 and gzip. Ebuild submitted by: Ben de Groot + <ben@stijlstek.nl> in bug #47499 + diff --git a/app-arch/rzip/Manifest b/app-arch/rzip/Manifest new file mode 100644 index 000000000000..96039145c341 --- /dev/null +++ b/app-arch/rzip/Manifest @@ -0,0 +1,3 @@ +MD5 bdc21b20bbdae653689e5adf2fe0d0e3 ChangeLog 482 +MD5 61a79cb8fe96e39370031d1cc09b01b2 rzip-2.0.ebuild 579 +MD5 08798457dd084bc7a3c20f9fe4c5e398 files/digest-rzip-2.0 59 diff --git a/app-arch/rzip/files/digest-rzip-2.0 b/app-arch/rzip/files/digest-rzip-2.0 new file mode 100644 index 000000000000..77e6a1cb033f --- /dev/null +++ b/app-arch/rzip/files/digest-rzip-2.0 @@ -0,0 +1 @@ +MD5 8a88b445afba919b122a3899d6d26b2a rzip-2.0.tar.gz 42699 diff --git a/app-arch/rzip/rzip-2.0.ebuild b/app-arch/rzip/rzip-2.0.ebuild new file mode 100644 index 000000000000..85609b263b95 --- /dev/null +++ b/app-arch/rzip/rzip-2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/rzip-2.0.ebuild,v 1.1 2004/04/11 18:28:41 seemant Exp $ + +IUSE="" + +DESCRIPTION="rzip is a compression program for large files" +SRC_URI="http://rzip.samba.org/ftp/rzip/${P}.tar.gz" +HOMEPAGE="http://rzip.samba.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="virtual/glibc + sys-apps/coreutils + app-arch/bzip2" + +src_compile() { + econf || die + emake || die +} + +src_install() { + einstall || die + + dodoc COPYING +} |