Gentoo Archives: gentoo-commits

From: "Daniel Black (dragonheart)" <dragonheart@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/loop-aes: ChangeLog loop-aes-3.2e.ebuild
Date: Thu, 06 Nov 2008 08:20:47
Message-Id: E1Ky06f-0002Gm-Bq@stork.gentoo.org
1 dragonheart 08/11/06 08:20:45
2
3 Modified: ChangeLog
4 Added: loop-aes-3.2e.ebuild
5 Log:
6 version bump thanks Alon
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7 x86_64)
8
9 Revision Changes Path
10 1.37 sys-fs/loop-aes/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/loop-aes/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/loop-aes/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 4 Nov 2008 10:29:09 -0000 1.36
23 +++ ChangeLog 6 Nov 2008 08:20:45 -0000 1.37
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/loop-aes
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.36 2008/11/04 10:29:09 dragonheart Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/ChangeLog,v 1.37 2008/11/06 08:20:45 dragonheart Exp $
29 +
30 +*loop-aes-3.2e (06 Nov 2008)
31 +
32 + 06 Nov 2008; Daniel Black <dragonheart@g.o> +loop-aes-3.2e.ebuild:
33 + version bump thanks Alon
34
35 *loop-aes-3.2d (04 Nov 2008)
36
37
38
39
40 1.1 sys-fs/loop-aes/loop-aes-3.2e.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/loop-aes/loop-aes-3.2e.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/loop-aes/loop-aes-3.2e.ebuild?rev=1.1&content-type=text/plain
44
45 Index: loop-aes-3.2e.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.2e.ebuild,v 1.1 2008/11/06 08:20:45 dragonheart Exp $
50
51 inherit linux-mod
52
53 MY_P="${PN/aes/AES}-v${PV}"
54 DESCRIPTION="Linux kernel module to encrypt local file systems and disk partitions with AES cipher."
55 HOMEPAGE="http://loop-aes.sourceforge.net/loop-AES.README"
56 SRC_URI="mirror://sourceforge/loop-aes/${MY_P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 IUSE="keyscrub padlock"
61 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
62
63 RDEPEND=">=sys-apps/util-linux-2.12r"
64 DEPEND=""
65
66 S="${WORKDIR}/${MY_P}"
67
68 pkg_setup() {
69 if ! built_with_use sys-apps/util-linux crypt && \
70 ! built_with_use sys-apps/util-linux loop-aes; then
71 eerror "loop-aes needs >=util-linux-2.12q-r1 compiled with crypt or loop-aes use-flag enabled!"
72 die "util-linux without crypt detected"
73 fi
74
75 linux-mod_pkg_setup
76
77 CONFIG_CHECK="!BLK_DEV_LOOP"
78 MODULE_NAMES="loop(block::tmp-d-kbuild)"
79 BUILD_TARGETS="all"
80
81 BUILD_PARAMS=" \
82 LINUX_SOURCE=\"${KERNEL_DIR}\" \
83 KBUILD_OUTPUT=\"${KBUILD_OUTPUT}\" \
84 USE_KBUILD=y MODINST=n RUNDM=n"
85 use keyscrub && BUILD_PARAMS="${BUILD_PARAMS} KEYSCRUB=y"
86 use padlock && BUILD_PARAMS="${BUILD_PARAMS} PADLOCK=y"
87 }
88
89 src_install() {
90 linux-mod_src_install
91
92 dodoc README
93 dobin loop-aes-keygen
94 doman loop-aes-keygen.1
95 }
96
97 pkg_postinst() {
98 linux-mod_pkg_postinst
99
100 einfo ""
101 einfo "For more instructions take a look at examples in README at:"
102 einfo "/usr/share/doc/${PF}"
103 einfo ""
104 }