| 1 |
# Copyright 1999-2010 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-fs/cryptsetup/cryptsetup-1.1.1.ebuild,v 1.1 2010/05/24 18:34:15 robbat2 Exp $
|
| 4 |
|
| 5 |
EAPI=2
|
| 6 |
|
| 7 |
inherit linux-info eutils flag-o-matic multilib autotools
|
| 8 |
|
| 9 |
MY_P=${P/_rc/-rc}
|
| 10 |
DESCRIPTION="Tool to setup encrypted devices with dm-crypt"
|
| 11 |
HOMEPAGE="http://code.google.com/p/cryptsetup/"
|
| 12 |
SRC_URI="http://cryptsetup.googlecode.com/files/${MY_P}.tar.bz2"
|
| 13 |
|
| 14 |
LICENSE="GPL-2"
|
| 15 |
SLOT="0"
|
| 16 |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
| 17 |
IUSE="dynamic nls selinux"
|
| 18 |
|
| 19 |
S=${WORKDIR}/${MY_P}
|
| 20 |
|
| 21 |
DEPEND=">=sys-fs/lvm2-2.02.64
|
| 22 |
>=dev-libs/libgcrypt-1.1.42
|
| 23 |
>=dev-libs/libgpg-error-1.0-r1
|
| 24 |
>=dev-libs/popt-1.7
|
| 25 |
>=sys-fs/udev-124
|
| 26 |
|| ( >=sys-libs/e2fsprogs-libs-1.41 <sys-fs/e2fsprogs-1.41 )
|
| 27 |
selinux? ( sys-libs/libselinux )
|
| 28 |
!sys-fs/cryptsetup-luks"
|
| 29 |
|
| 30 |
pkg_setup() {
|
| 31 |
local CONFIG_CHECK="~DM_CRYPT ~CRYPTO ~CRYPTO_CBC"
|
| 32 |
local WARNING_DM_CRYPT="CONFIG_DM_CRYPT:\tis not set (required for cryptsetup)\n"
|
| 33 |
local WARNING_CRYPTO_CBC="CONFIG_CRYPTO_CBC:\tis not set (required for kernel 2.6.19)\n"
|
| 34 |
local WARNING_CRYPTO="CONFIG_CRYPTO:\tis not set (required for cryptsetup)\n"
|
| 35 |
check_extra_config
|
| 36 |
|
| 37 |
if use dynamic ; then
|
| 38 |
ewarn "If you need cryptsetup for an initrd or initramfs then you"
|
| 39 |
ewarn "should NOT use the dynamic USE flag"
|
| 40 |
epause 5
|
| 41 |
fi
|
| 42 |
}
|
| 43 |
|
| 44 |
src_prepare() {
|
| 45 |
# Both merged upstream
|
| 46 |
#epatch "${FILESDIR}"/1.1.0_rc3-static-no-selinux.patch
|
| 47 |
#epatch "${FILESDIR}"/1.1.0-libudev.patch
|
| 48 |
eautoreconf
|
| 49 |
:
|
| 50 |
}
|
| 51 |
|
| 52 |
src_configure() {
|
| 53 |
econf \
|
| 54 |
--sbindir=/sbin \
|
| 55 |
--enable-shared \
|
| 56 |
$(use_enable !dynamic static) \
|
| 57 |
--libdir=/usr/$(get_libdir) \
|
| 58 |
$(use_enable nls) \
|
| 59 |
$(use_enable selinux) \
|
| 60 |
|| die
|
| 61 |
}
|
| 62 |
|
| 63 |
src_compile() {
|
| 64 |
emake || die
|
| 65 |
}
|
| 66 |
|
| 67 |
src_install() {
|
| 68 |
emake DESTDIR="${D}" install || die "install failed"
|
| 69 |
rmdir "${D}"/usr/$(get_libdir)/cryptsetup
|
| 70 |
insinto /$(get_libdir)/rcscripts/addons
|
| 71 |
newins "${FILESDIR}"/1.0.6-r2-dm-crypt-start.sh dm-crypt-start.sh || die
|
| 72 |
newins "${FILESDIR}"/1.0.5-dm-crypt-stop.sh dm-crypt-stop.sh || die
|
| 73 |
newconfd "${FILESDIR}"/1.0.6-dmcrypt.confd dmcrypt || die
|
| 74 |
newinitd "${FILESDIR}"/1.0.5-dmcrypt.rc dmcrypt || die
|
| 75 |
dodoc TODO ChangeLog # README NEWS # last ones are empty
|
| 76 |
}
|
| 77 |
|
| 78 |
pkg_postinst() {
|
| 79 |
ewarn "This ebuild introduces a new set of scripts and configuration"
|
| 80 |
ewarn "than the last version. If you are currently using /etc/conf.d/cryptfs"
|
| 81 |
ewarn "then you *MUST* copy your old file to:"
|
| 82 |
ewarn "/etc/conf.d/dmcrypt"
|
| 83 |
ewarn "Or your encrypted partitions will *NOT* work."
|
| 84 |
elog "Please see the example for configuring a LUKS mountpoint"
|
| 85 |
elog "in /etc/conf.d/dmcrypt"
|
| 86 |
elog
|
| 87 |
elog "If you are using baselayout-2 then please do:"
|
| 88 |
elog "rc-update add dmcrypt boot"
|
| 89 |
elog "This version introduces a command line arguement 'key_timeout'."
|
| 90 |
elog "If you want the search for the removable key device to timeout"
|
| 91 |
elog "after 10 seconds add the following to your bootloader config:"
|
| 92 |
elog "key_timeout=10"
|
| 93 |
elog "A timeout of 0 will mean it will wait indefinitely."
|
| 94 |
}
|