blob: 665fb13908eae1422d82f6da952b57d0405e5a99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# 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-r2.ebuild,v 1.5 2006/07/02 18:24:36 pylon Exp $
inherit autotools linux-info eutils flag-o-matic multilib
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 pic selinux"
DEPEND=">=sys-fs/device-mapper-1.00.07-r1
>=dev-libs/libgcrypt-1.1.42
>=dev-libs/libgpg-error-1.0-r1
selinux? ( sys-libs/libselinux )
!sys-fs/cryptsetup"
RESTRICT="confcache"
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_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/"${PN}-${PV}-selinux.patch"
eautoreconf
}
src_compile() {
local PIC_FLAG=""
if use pic ; then
PIC_FLAG="--with-pic"
fi
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 --libdir=/usr/$(get_libdir) "${PIC_FLAG}" \
$(use_enable nls) \
$(use_enable selinux) \
|| die
else
econf --sbindir=/bin --enable-static --libdir=/usr/$(get_libdir) "${PIC_FLAG}" \
$(use_enable nls) \
$(use_enable selinux) \
|| die
fi
emake || die
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
rmdir "${D}/usr/$(get_libdir)/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"
}
|