summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2008-05-23 23:12:17 +0000
committerJeremy Olexa <darkside@gentoo.org>2008-05-23 23:12:17 +0000
commit6206dca8b08b70e3237a92dd3fabd5759a3d9b9f (patch)
treebe2768866a15ea136898a70addc77ca252b90597 /app-arch/rzip
parentamd64 stable, bug #212664 (diff)
downloadgentoo-2-6206dca8b08b70e3237a92dd3fabd5759a3d9b9f.tar.gz
gentoo-2-6206dca8b08b70e3237a92dd3fabd5759a3d9b9f.tar.bz2
gentoo-2-6206dca8b08b70e3237a92dd3fabd5759a3d9b9f.zip
added a warning wrt to files larger than 4GB. see bug 217552. Thanks to PetaMem R&D for reporting.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-arch/rzip')
-rw-r--r--app-arch/rzip/ChangeLog5
-rw-r--r--app-arch/rzip/rzip-2.1.ebuild8
2 files changed, 11 insertions, 2 deletions
diff --git a/app-arch/rzip/ChangeLog b/app-arch/rzip/ChangeLog
index 6f8aa4850a2c..0e85091edc06 100644
--- a/app-arch/rzip/ChangeLog
+++ b/app-arch/rzip/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/rzip
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/ChangeLog,v 1.25 2008/04/21 16:36:13 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/ChangeLog,v 1.26 2008/05/23 23:12:17 darkside Exp $
+
+ 23 May 2008; Jeremy Olexa <darkside@gentoo.org> rzip-2.1.ebuild:
+ added a warning wrt to files larger than 4GB. see bug #217552
21 Apr 2008; Samuli Suominen <drac@gentoo.org> -rzip-2.0-r1.ebuild,
-rzip-2.0-r2.ebuild, rzip-2.1.ebuild:
diff --git a/app-arch/rzip/rzip-2.1.ebuild b/app-arch/rzip/rzip-2.1.ebuild
index a02a95331452..17c223ad4481 100644
--- a/app-arch/rzip/rzip-2.1.ebuild
+++ b/app-arch/rzip/rzip-2.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/rzip-2.1.ebuild,v 1.9 2008/04/21 16:37:05 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/rzip/rzip-2.1.ebuild,v 1.10 2008/05/23 23:12:17 darkside Exp $
inherit autotools eutils
@@ -25,3 +25,9 @@ src_unpack() {
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
}
+
+pkg_postinst() {
+ ewarn "It has been reported that this tool will fail on files >4GB"
+ ewarn "Please see https://bugs.gentoo.org/show_bug.cgi?id=217552 for more"
+ ewarn "information."
+}