summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2003-10-27 11:01:28 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2003-10-27 11:01:28 +0000
commitb450fd4b23a2feb55fce0325fe15023b8dcc5cfa (patch)
treecefecaa7f06683ec2d7e7e407db123610fbbcb14 /app-crypt
parenthcfpcimodem update (diff)
downloadhistorical-b450fd4b23a2feb55fce0325fe15023b8dcc5cfa.tar.gz
historical-b450fd4b23a2feb55fce0325fe15023b8dcc5cfa.tar.bz2
historical-b450fd4b23a2feb55fce0325fe15023b8dcc5cfa.zip
closing #26749 and unmasking _p6
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/bestcrypt/ChangeLog5
-rw-r--r--app-crypt/bestcrypt/Manifest6
-rw-r--r--app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild4
-rw-r--r--app-crypt/bestcrypt/files/bcrypt13
4 files changed, 20 insertions, 8 deletions
diff --git a/app-crypt/bestcrypt/ChangeLog b/app-crypt/bestcrypt/ChangeLog
index e929c3e342fa..e525a98c429a 100644
--- a/app-crypt/bestcrypt/ChangeLog
+++ b/app-crypt/bestcrypt/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-crypt/bestcrypt
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/ChangeLog,v 1.6 2003/09/10 22:45:23 lostlogic Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/ChangeLog,v 1.7 2003/10/27 11:01:24 aliz Exp $
+
+ 27 Oct 2003; Daniel Ahlberg <aliz@gentoo.org> files/bcrypt :
+ Closing #26749.
*bestcrypt-1.2_p6 (10 Sep 2003)
diff --git a/app-crypt/bestcrypt/Manifest b/app-crypt/bestcrypt/Manifest
index fb4242c29859..608d33e3f806 100644
--- a/app-crypt/bestcrypt/Manifest
+++ b/app-crypt/bestcrypt/Manifest
@@ -1,8 +1,8 @@
-MD5 063d2613f18d19f836ebd5884afd1f73 ChangeLog 1043
+MD5 bc7c40fb48f0ec062232e85d841e8219 ChangeLog 1120
MD5 b09d194cf99d8d47eb265a64ed720542 bestcrypt-1.2_p2.ebuild 1589
MD5 38c3fdfbe6d4bd8b8bc5332ccc0b0eee bestcrypt-1.2_p5.ebuild 1809
-MD5 99ea589c8d024e3c7721ea0978430eda bestcrypt-1.2_p6.ebuild 1811
-MD5 4d55e7543ba2eec5715d0a6aae4b811c files/bcrypt 2736
+MD5 00d23ce8781350f218fa8dd56f2d6bd7 bestcrypt-1.2_p6.ebuild 1810
+MD5 c5fbab81816aa1d6f319f8434d2db2b2 files/bcrypt 3113
MD5 da7493ab01dda1aa1011a445088054ad files/digest-bestcrypt-1.2_p2 67
MD5 7e7bf1160a8f121d840033a20498e564 files/digest-bestcrypt-1.2_p5 129
MD5 b5ae61d268ca5193409bca7a29068e50 files/digest-bestcrypt-1.2_p6 129
diff --git a/app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild b/app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild
index fd9c0cc924c3..96746aca1b27 100644
--- a/app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild
+++ b/app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild,v 1.2 2003/10/01 09:39:25 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/bestcrypt-1.2_p6.ebuild,v 1.3 2003/10/27 11:01:24 aliz Exp $
MY_PN="bcrypt"
-KEYWORDS="~x86"
+KEYWORDS="x86"
SRC_URI="http://www.jetico.com/linux/BestCrypt-${PV/_p/-}.tar.gz
http://www.jetico.com/linux/BestCrypt.doc.tgz"
HOMEPAGE="http://www.jetico.com"
diff --git a/app-crypt/bestcrypt/files/bcrypt b/app-crypt/bestcrypt/files/bcrypt
index f8e0f90f2ca9..cba4eb8dcc51 100644
--- a/app-crypt/bestcrypt/files/bcrypt
+++ b/app-crypt/bestcrypt/files/bcrypt
@@ -4,10 +4,13 @@
#
# Version: 1.2
#
-# Revision: $Id: bcrypt,v 1.1 2002/11/14 02:09:14 lostlogic Exp $
+# Revision: $Id: bcrypt,v 1.2 2003/10/27 11:01:24 aliz Exp $
#
# Author: Jetico Inc. (support@jetico.com)
#
+# Modified by Stefan Tittel (with thanks to steveb) to work around
+# the "xargs: environment too large for exec"-error occuring in
+# the gentoo 1.4 linux distribution.
# chkconfig: 2345 85 98
# description: BestCrypt init script
@@ -78,7 +81,13 @@ start() {
stop() {
ebegin "Unmounting encrypted filesystems"
- grep BestCrypt /etc/mtab |awk '{print $2}'|xargs -r -n 1 bctool umount
+
+# The original line causing the "xargs: environment too large for exec error".
+ # grep BestCrypt /etc/mtab |awk '{print $2}'|xargs -r -n 1 bctool umount
+
+# The line for which it work's fine now.
+ for i in $(grep BestCrypt /etc/mtab | awk '{print $2}') ; do bctool umount ${i} ; done
+
eend $?
ebegin "Shutting down BestCrypt modules"
for i in `lsmod |egrep "^bc_.*" |awk '{print $1}' `; do