summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2003-11-25 13:11:46 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2003-11-25 13:11:46 +0000
commit48d84aa2633a48b877ed8ecd38a4990089e4a8b4 (patch)
tree46be1c2b53d0cfd4758858985e629d65eca46185 /app-crypt
parentVersion bump (diff)
downloadgentoo-2-48d84aa2633a48b877ed8ecd38a4990089e4a8b4.tar.gz
gentoo-2-48d84aa2633a48b877ed8ecd38a4990089e4a8b4.tar.bz2
gentoo-2-48d84aa2633a48b877ed8ecd38a4990089e4a8b4.zip
Version bump
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/bestcrypt/ChangeLog7
-rw-r--r--app-crypt/bestcrypt/Manifest4
-rw-r--r--app-crypt/bestcrypt/bestcrypt-1.4_p2.ebuild57
-rw-r--r--app-crypt/bestcrypt/files/digest-bestcrypt-1.4_p22
4 files changed, 67 insertions, 3 deletions
diff --git a/app-crypt/bestcrypt/ChangeLog b/app-crypt/bestcrypt/ChangeLog
index e525a98c429a..3e59d7e093e0 100644
--- a/app-crypt/bestcrypt/ChangeLog
+++ b/app-crypt/bestcrypt/ChangeLog
@@ -1,6 +1,11 @@
# 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.7 2003/10/27 11:01:24 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/ChangeLog,v 1.8 2003/11/25 13:11:43 aliz Exp $
+
+*bestcrypt-1.4_p2 (25 Nov 2003)
+
+ 25 Nov 2003; Daniel Ahlberg <aliz@gentoo.org> bestcrypt-1.4_p2.ebuild:
+ Version bump
27 Oct 2003; Daniel Ahlberg <aliz@gentoo.org> files/bcrypt :
Closing #26749.
diff --git a/app-crypt/bestcrypt/Manifest b/app-crypt/bestcrypt/Manifest
index 3bfd9d7a732b..4dcac7a2b381 100644
--- a/app-crypt/bestcrypt/Manifest
+++ b/app-crypt/bestcrypt/Manifest
@@ -1,6 +1,6 @@
MD5 fea3f03f0befb615db757d9eb03410cf bestcrypt-1.2_p6.ebuild 1536
-MD5 fea3f03f0befb615db757d9eb03410cf bestcrypt-1.4_p2.ebuild 1536
-MD5 bc7c40fb48f0ec062232e85d841e8219 ChangeLog 1120
+MD5 8cab59ed2e08fea933ff474cefda37b7 bestcrypt-1.4_p2.ebuild 1511
+MD5 60de384c7d300eeb38fd684236aa5d72 ChangeLog 1242
MD5 c5fbab81816aa1d6f319f8434d2db2b2 files/bcrypt 3113
MD5 b5ae61d268ca5193409bca7a29068e50 files/digest-bestcrypt-1.2_p6 129
MD5 0be707b33dfef75b40338f1306af5258 files/digest-bestcrypt-1.4_p2 129
diff --git a/app-crypt/bestcrypt/bestcrypt-1.4_p2.ebuild b/app-crypt/bestcrypt/bestcrypt-1.4_p2.ebuild
new file mode 100644
index 000000000000..6061e87644ed
--- /dev/null
+++ b/app-crypt/bestcrypt/bestcrypt-1.4_p2.ebuild
@@ -0,0 +1,57 @@
+# 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.4_p2.ebuild,v 1.1 2003/11/25 13:11:43 aliz Exp $
+
+MY_PN="bcrypt"
+DESCRIPTION="commercially licensed transparent filesystem encryption"
+HOMEPAGE="http://www.jetico.com/"
+SRC_URI="http://www.jetico.com/linux/BestCrypt-${PV/_p/-}.tar.gz
+ http://www.jetico.com/linux/BestCrypt.doc.tgz"
+
+LICENSE="bestcrypt"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="virtual/linux-sources"
+
+S=${WORKDIR}/bcrypt
+
+src_unpack() {
+ unpack ${A}
+ for file in `find . -type f -iname Makefile*`;do
+ sed -i -e "s:-O[0-9]:${CFLAGS}:" \
+ -e 's%KVER =.*%KVER = $(shell readlink /usr/src/linux|sed -e "s:linux-\\([0-9]\\+\.[0-9]\\+\\)\..*:\\1:")%' \
+ -e "s%uname -r%readlink /usr/src/linux|sed -e 's:linux-::'%" \
+ ${file}
+
+ done
+}
+
+src_compile() {
+ emake -j1 || die
+}
+
+src_install() {
+ #Install docs
+ dohtml ${WORKDIR}/bchelp/*
+ dodir /usr/share/doc/${PF}/html/img
+ insinto /usr/share/doc/${PF}/html/img
+ doins ${WORKDIR}/bchelp/img/*
+
+ exeinto /etc/rc.d/init.d
+ doexe ${FILESDIR}/bcrypt
+ dodir \
+ /usr/bin \
+ /etc/init.d \
+ /etc/rc.d/rc{0,1,2,3,4,5,6}.d \
+ /etc/rc{0,1,2,3,4,5,6}.d \
+ /usr/share/man/man8 \
+ /lib/modules/${KV}/kernel/drivers/block
+ einstall MAN_PATH="/usr/share/man" \
+ root="${D}" \
+ MOD_PATH=/lib/modules/${KV}/kernel/drivers/block
+ exeinto /etc/init.d
+ doexe ${FILESDIR}/bcrypt
+ rm -rf ${D}/etc/rc*.d
+ dodoc README LICENSE
+}
diff --git a/app-crypt/bestcrypt/files/digest-bestcrypt-1.4_p2 b/app-crypt/bestcrypt/files/digest-bestcrypt-1.4_p2
new file mode 100644
index 000000000000..a279b987a52b
--- /dev/null
+++ b/app-crypt/bestcrypt/files/digest-bestcrypt-1.4_p2
@@ -0,0 +1,2 @@
+MD5 f333b05b732579ea2ad0740fb35006c9 BestCrypt-1.4-2.tar.gz 161696
+MD5 657f778dc5113b359d788cef4507928e BestCrypt.doc.tgz 134173