diff options
author | Benjamin Smee <strerror@gentoo.org> | 2006-03-04 12:00:48 +0000 |
---|---|---|
committer | Benjamin Smee <strerror@gentoo.org> | 2006-03-04 12:00:48 +0000 |
commit | 42670935ca404993a004f8c7fcfdc4660873c495 (patch) | |
tree | 4de2b92acbe85579fac03a4f256b8f765a050c09 /sys-fs/cryptsetup-luks | |
parent | Back to ~ppc; bug #123374 (diff) | |
download | historical-42670935ca404993a004f8c7fcfdc4660873c495.tar.gz historical-42670935ca404993a004f8c7fcfdc4660873c495.tar.bz2 historical-42670935ca404993a004f8c7fcfdc4660873c495.zip |
removed old ebuilds
Package-Manager: portage-2.0.54
Diffstat (limited to 'sys-fs/cryptsetup-luks')
4 files changed, 0 insertions, 160 deletions
diff --git a/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0-r1.ebuild b/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0-r1.ebuild deleted file mode 100644 index fefbd231d681..000000000000 --- a/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0-r1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2005 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-r1.ebuild,v 1.2 2005/06/16 08:28:53 dholm Exp $ - -inherit linux-info eutils multilib flag-o-matic - -DESCRIPTION="Tool to setup encrypted devices with dm-crypt" -HOMEPAGE="http://clemens.endorphin.org/LUKS/" -SRC_URI="http://luks.endorphin.org/source/${PN}-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~ppc ~x86" - -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" - -IUSE="static" - -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() { - cd ${S} - - if use static ; then - append-ldflags -static - econf --sbindir=/bin --enable-static --disable-nls || die - else - ewarn "If you need cryptsetup for an initrd or initramfs then you" - ewarn "should emerge cryptsetup-luks with USE="static"" - epause 5 - econf --sbindir=/bin --disable-static --disable-nls || die - - sed -i \ - -e "s|-lgcrypt|/usr/$(get_libdir)/libgcrypt.a|" \ - -e "s|-lgpg-error|/usr/$(get_libdir)/libgpg-error.a|" \ - Makefile src/Makefile - sed -i -e "s|-lpopt|/usr/$(get_libdir)/libpopt.a|" src/Makefile - fi - - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - 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/cryptsetup-luks-1.0.1.ebuild b/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.1.ebuild deleted file mode 100644 index cbde8e73d957..000000000000 --- a/sys-fs/cryptsetup-luks/cryptsetup-luks-1.0.1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2005 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.1.ebuild,v 1.10 2005/11/26 04:43:50 tgall Exp $ - -inherit linux-info eutils multilib flag-o-matic - -DESCRIPTION="Tool to setup encrypted devices with dm-crypt" -HOMEPAGE="http://clemens.endorphin.org/LUKS/" -SRC_URI="http://luks.endorphin.org/source/${PN}-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~mips ppc ppc64 sparc x86" - -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" - -IUSE="static" - -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() { - cd ${S} - - if use static ; then - append-ldflags -static - econf --sbindir=/bin --enable-static --disable-nls || die - else - ewarn "If you need cryptsetup for an initrd or initramfs then you" - ewarn "should emerge cryptsetup-luks with USE="static"" - epause 5 - econf --sbindir=/bin --disable-static --disable-nls || die - - sed -i \ - -e "s|-lgcrypt|/usr/$(get_libdir)/libgcrypt.a|" \ - -e "s|-lgpg-error|/usr/$(get_libdir)/libgpg-error.a|" \ - Makefile src/Makefile - sed -i -e "s|-lpopt|/usr/$(get_libdir)/libpopt.a|" src/Makefile - fi - - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - 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-r1 b/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0-r1 deleted file mode 100644 index 0f344f4e1954..000000000000 --- a/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 62c4bff081e470fb2c9a0f2cb890e613 cryptsetup-luks-1.0.tar.bz2 282675 diff --git a/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.1 b/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.1 deleted file mode 100644 index 61c102c0130b..000000000000 --- a/sys-fs/cryptsetup-luks/files/digest-cryptsetup-luks-1.0.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 b2415f67ceed3ad2c7dd2e878cf7787d cryptsetup-luks-1.0.1.tar.bz2 286161 |