summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Smee <strerror@gentoo.org>2006-05-31 09:11:44 +0000
committerBenjamin Smee <strerror@gentoo.org>2006-05-31 09:11:44 +0000
commit2d05abf9da541cf97833d602500fef4d3d53d65f (patch)
tree3292e6da20192f900ca086173b122dda739d2842 /sys-fs/cryptsetup-luks
parentFix for bug #132126 and added pic USE flag (diff)
downloadhistorical-2d05abf9da541cf97833d602500fef4d3d53d65f.tar.gz
historical-2d05abf9da541cf97833d602500fef4d3d53d65f.tar.bz2
historical-2d05abf9da541cf97833d602500fef4d3d53d65f.zip
Removed older ebuild for 1.0.3
Package-Manager: portage-2.0.54-r2
Diffstat (limited to 'sys-fs/cryptsetup-luks')
-rw-r--r--sys-fs/cryptsetup-luks/Manifest2
-rw-r--r--sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.3.ebuild70
-rw-r--r--sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.33
3 files changed, 0 insertions, 75 deletions
diff --git a/sys-fs/cryptsetup-luks/Manifest b/sys-fs/cryptsetup-luks/Manifest
index 065691947cc3..eb4a3903b8a9 100644
--- a/sys-fs/cryptsetup-luks/Manifest
+++ b/sys-fs/cryptsetup-luks/Manifest
@@ -2,14 +2,12 @@ MD5 6adef771f97c3193e3defbb715f183fd ChangeLog 3957
MD5 e9db29331962729c373695ee3d7e8fed cryptsetup-luks-1.0.1-r1.ebuild 2043
MD5 06345bb64c18f0ab5857556a8bd52de0 cryptsetup-luks-1.0.1-r2.ebuild 2113
MD5 37d175ab74fa667692d33cd505ccbaa0 cryptsetup-luks-1.0.3-r1.ebuild 2206
-MD5 ae53dfd047c0b226edb1bd3b03b4d4a7 cryptsetup-luks-1.0.3.ebuild 1934
MD5 6d86b15e07cd0cdf96d8a363b1d778cd files/cryptfs.confd 1548
MD5 906131d3cdd20ac94109052236e469b9 files/cryptsetup-luks-1.0.1-libmapper.patch 534
MD5 c66058fc1ba9f980485e2b9e3b66df52 files/cryptsetup-luks-1.0.1-no-nls.patch 597
MD5 8e76b60d4e94130170c49c7f32bb2ee6 files/cryptsetup-luks-1.0.3-selinux.patch 418
MD5 1c0c01504919b985fca8352924530b59 files/digest-cryptsetup-luks-1.0.1-r1 268
MD5 1c0c01504919b985fca8352924530b59 files/digest-cryptsetup-luks-1.0.1-r2 268
-MD5 27723e8b4ff24b9ba390777aaa73fbf0 files/digest-cryptsetup-luks-1.0.3 268
MD5 1af32c51e65cb0cc90ccf7cb90192283 files/digest-cryptsetup-luks-1.0.3-r1 74
MD5 c653a0b4ace27569ccc659b7cb43b4a9 files/dm-crypt-start.sh 4306
MD5 a3bb6598f67c8922ccb6576ff256ced0 files/dm-crypt-stop.sh 1297
diff --git a/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.3.ebuild b/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.3.ebuild
deleted file mode 100644
index edcb015075ae..000000000000
--- a/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.3.ebuild,v 1.3 2006/05/03 14:40:02 strerror Exp $
-
-inherit linux-info eutils flag-o-matic
-
-DESCRIPTION="Tool to setup encrypted devices with dm-crypt"
-HOMEPAGE="http://luks.endorphin.org/"
-SRC_URI="http://luks.endorphin.org/source/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
-IUSE="dynamic nls"
-
-DEPEND=">=sys-fs/device-mapper-1.00.07-r1
- >=dev-libs/libgcrypt-1.1.42
- >=dev-libs/libgpg-error-1.0-r1
- !sys-fs/cryptsetup"
-
-dm-crypt_check() {
- ebegin "Checking for dm-crypt support"
- linux_chkconfig_present DM_CRYPT
- eend $?
-
- if [[ $? -ne 0 ]] ; then
- ewarn "cryptsetup requires dm-crypt support!"
- ewarn "Please enable dm-crypt support in your kernel config, found at:"
- ewarn "(for 2.6 kernels)"
- ewarn
- ewarn " Device Drivers"
- ewarn " Multi-Device Support"
- ewarn " Device mapper support"
- ewarn " [*] Crypt Target Support"
- ewarn
- ewarn "and recompile your kernel if you want this package to work with this kernel"
- epause 5
- fi
-}
-
-pkg_setup() {
- linux-info_pkg_setup
- dm-crypt_check;
-}
-
-src_compile() {
- if use dynamic ; then
- ewarn "If you need cryptsetup for an initrd or initramfs then you"
- ewarn "should NOT use the dynamic USE flag"
- epause 5
- econf --sbindir=/bin --disable-static $(use_enable nls) || die
- else
- econf --sbindir=/bin --enable-static $(use_enable nls) || die
- fi
-
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "install failed"
- rmdir "${D}/usr/lib/cryptsetup"
- insinto /lib/rcscripts/addons
- newconfd ${FILESDIR}/cryptfs.confd cryptfs
- doins "${FILESDIR}"/dm-crypt-{start,stop}.sh
-}
-
-pkg_postinst() {
- einfo "Please see the example for configuring a LUKS mountpoint"
- einfo "in /etc/conf.d/cryptfs"
-}
diff --git a/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.3 b/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.3
deleted file mode 100644
index 6db9da8a6e8b..000000000000
--- a/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 e134b82b4706a28ba1d73b9176d5ad0c cryptsetup-luks-1.0.3.tar.bz2 304836
-RMD160 302304c28bbda40cbb19dd4fd31f3684ef2e6ba1 cryptsetup-luks-1.0.3.tar.bz2 304836
-SHA256 f8b7e9b410a581decd948cd0b4efcd3eea3bfeb729e01ad11eb24ddec54ac45b cryptsetup-luks-1.0.3.tar.bz2 304836