diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-03 21:56:08 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-03 21:56:08 +0000 |
commit | fc784332d8f82f462199f601833dd16b767e9ef4 (patch) | |
tree | a8491ee6e225ed0ea6e574f24925ad2bfb26152f /sys-fs | |
parent | Bump to 2.1.5-r2 with fix for bug #298262, drop older 2.1.5 versions. (diff) | |
download | gentoo-2-fc784332d8f82f462199f601833dd16b767e9ef4.tar.gz gentoo-2-fc784332d8f82f462199f601833dd16b767e9ef4.tar.bz2 gentoo-2-fc784332d8f82f462199f601833dd16b767e9ef4.zip |
Delete older ebuild.
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/loop-aes/loop-aes-3.2g.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/sys-fs/loop-aes/loop-aes-3.2g.ebuild b/sys-fs/loop-aes/loop-aes-3.2g.ebuild deleted file mode 100644 index 20ee8ce11581..000000000000 --- a/sys-fs/loop-aes/loop-aes-3.2g.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/loop-aes/loop-aes-3.2g.ebuild,v 1.6 2010/01/23 18:37:42 armin76 Exp $ - -EAPI="2" - -inherit linux-mod - -MY_P="${PN/aes/AES}-v${PV}" -DESCRIPTION="Linux kernel module to encrypt local file systems and disk partitions with AES cipher." -HOMEPAGE="http://loop-aes.sourceforge.net/loop-AES.README" -SRC_URI="mirror://sourceforge/loop-aes/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -IUSE="extra-ciphers keyscrub padlock" -KEYWORDS="amd64 ~arm ~hppa ~ppc ~sparc x86" - -RDEPEND=">=sys-apps/util-linux-2.12r" -RDEPEND="|| ( ${RDEPEND}[crypt] ${RDEPEND}[loop-aes] )" -DEPEND="" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - linux-mod_pkg_setup - - CONFIG_CHECK="!BLK_DEV_LOOP" - MODULE_NAMES="loop(block::tmp-d-kbuild)" - BUILD_TARGETS="all" - - BUILD_PARAMS=" \ - LINUX_SOURCE=\"${KERNEL_DIR}\" \ - KBUILD_OUTPUT=\"${KBUILD_OUTPUT}\" \ - USE_KBUILD=y MODINST=n RUNDM=n" - use keyscrub && BUILD_PARAMS="${BUILD_PARAMS} KEYSCRUB=y" - use padlock && BUILD_PARAMS="${BUILD_PARAMS} PADLOCK=y" - - if use extra-ciphers; then - MODULE_NAMES="${MODULE_NAMES} - loop_blowfish(block::tmp-d-kbuild) - loop_serpent(block::tmp-d-kbuild) - loop_twofish(block::tmp-d-kbuild)" - BUILD_PARAMS="${BUILD_PARAMS} EXTRA_CIPHERS=y" - fi -} - -src_install() { - linux-mod_src_install - - dodoc README || die - dobin loop-aes-keygen - doman loop-aes-keygen.1 -} - -pkg_postinst() { - linux-mod_pkg_postinst - - einfo "" - einfo "For more instructions take a look at examples in README at:" - einfo "/usr/share/doc/${PF}" - einfo "" -} |