1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-05 05:14:14 +01:00

initial import

This commit is contained in:
root
2010-02-09 21:25:29 +01:00
commit b2719dc011
1080 changed files with 41656 additions and 0 deletions

8
sys-fs/loop-aes/Manifest Normal file
View File

@@ -0,0 +1,8 @@
DIST loop-AES-v3.1e.tar.bz2 169664 RMD160 78a54330a343103900cc479d58645ec77563ded0 SHA1 10535c8279e55555686af9e39945ccff2434e44f SHA256 6b1d671a9e3cadeef7a8f391cda4b5b883d0d1bf91d08d2746af8e4780fdff9d
EBUILD loop-aes-3.1e.ebuild 1637 RMD160 7d0ea2de03b040b14ef42fb6ec844f5aedbc0c77 SHA1 2db871ff5b9e82ef25b2413ed6ad24cbb88d727c SHA256 e890c9d925c53de8ae87358c596151e5e8e43ae69bfd0ed6429cf002c7619dfd
MD5 12cbf962f3c94c5589e1871439006bc7 loop-aes-3.1e.ebuild 1637
RMD160 7d0ea2de03b040b14ef42fb6ec844f5aedbc0c77 loop-aes-3.1e.ebuild 1637
SHA256 e890c9d925c53de8ae87358c596151e5e8e43ae69bfd0ed6429cf002c7619dfd loop-aes-3.1e.ebuild 1637
MD5 da55984d097e89c17d48d5c8f34257f2 files/digest-loop-aes-3.1e 247
RMD160 f733a91211bfe7c4503d3b72db9e7808d0a581aa files/digest-loop-aes-3.1e 247
SHA256 639f282c3e471b9838ad6abbcf5fb73648d86ac97aa99f4667f685a5d15cb863 files/digest-loop-aes-3.1e 247

View File

@@ -0,0 +1,3 @@
MD5 021d6a83e05a13ad84cd601d5e5ecefb loop-AES-v3.1e.tar.bz2 169664
RMD160 78a54330a343103900cc479d58645ec77563ded0 loop-AES-v3.1e.tar.bz2 169664
SHA256 6b1d671a9e3cadeef7a8f391cda4b5b883d0d1bf91d08d2746af8e4780fdff9d loop-AES-v3.1e.tar.bz2 169664

View File

@@ -0,0 +1,65 @@
# Copyright 1999-2006 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.1d.ebuild,v 1.4 2006/10/04 15:51:53 genstef Exp $
inherit linux-mod eutils
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="keyscrub padlock"
KEYWORDS="~amd64 ~hppa ~ppc x86"
S="${WORKDIR}/${MY_P}"
CONFIG_CHECK="!BLK_DEV_LOOP"
MODULE_NAMES="loop(block:)"
BUILD_TARGETS="all"
RDEPEND=">=sys-apps/util-linux-2.12r"
pkg_setup() {
if ! built_with_use sys-apps/util-linux crypt; then
eerror "loop-aes needs >=util-linux-2.12q-r1 compiled with crypt use-flag enabled!"
die "util-linux without crypt detected"
fi
linux-mod_pkg_setup
if ! linux_chkconfig_present KMOD && \
! linux_chkconfig_present KERNELD
then
ewarn ""
ewarn "It is recommended to have Automatic kernel module loading"
ewarn "(CONFIG_KERNELD in kernels 2.0 or CONFIG_KMOD in newer)"
ewarn ""
fi
BUILD_PARAMS="LINUX_SOURCE=${KV_DIR} MODINST=n RUNDM=n"
use keyscrub && BUILD_PARAMS="${BUILD_PARAMS} KEYSCRUB=y"
use padlock && BUILD_PARAMS="${BUILD_PARAMS} PADLOCK=y"
}
src_unpack () {
unpack ${A}
convert_to_m ${S}/Makefile
}
src_install() {
linux-mod_src_install
dodoc README
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo ""
einfo "For more instructions take a look at examples in"
einfo "/usr/share/doc/${PF}/README.gz"
einfo ""
}