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

Added nozomi ebuild. Rmoved oboslete ebuilds

This commit is contained in:
root
2010-03-27 10:31:06 +01:00
parent 58e78d874f
commit 1007f22387
84 changed files with 139 additions and 11697 deletions

View File

@@ -1,12 +0,0 @@
AUX fuse-fix-lazy-binding.patch 398 RMD160 e8663cdbf720378839bf3ac786a49a9927b81afe SHA1 59a923f6263e954a7db488021005448cefcc8f5a SHA256 d9733aaece65a0c864edbfebae205cdec096174165e943a569adb216ec73f9e1
MD5 c1ef6366ba5892111ddef08887328663 files/fuse-fix-lazy-binding.patch 398
RMD160 e8663cdbf720378839bf3ac786a49a9927b81afe files/fuse-fix-lazy-binding.patch 398
SHA256 d9733aaece65a0c864edbfebae205cdec096174165e943a569adb216ec73f9e1 files/fuse-fix-lazy-binding.patch 398
DIST fuse-2.6.0.tar.gz 474956 RMD160 a963d7938500d9e7dd5d77c47f935015ea822991 SHA1 3c7782147ae406450e9bd17f12a81f183dbe6550 SHA256 9572530349b2cebbbc76278bfcbda0de3590c022d2dcd439f381ef497988d9b1
EBUILD fuse-2.6.0-r10.ebuild 1807 RMD160 b5c40831e8366038177dfa7d71958938d3999fc2 SHA1 78152a1e09e5cfdd105e7bf9c12128062005d077 SHA256 84b1bf58fba9d9d0810d510b2abdc01a9a2f4795e461ded0c36044eb205b1950
MD5 b2e9064953ffb6320f60404367478873 fuse-2.6.0-r10.ebuild 1807
RMD160 b5c40831e8366038177dfa7d71958938d3999fc2 fuse-2.6.0-r10.ebuild 1807
SHA256 84b1bf58fba9d9d0810d510b2abdc01a9a2f4795e461ded0c36044eb205b1950 fuse-2.6.0-r10.ebuild 1807
MD5 97046bd567f2b300eb03e589fe478be4 files/digest-fuse-2.6.0-r10 232
RMD160 b67749e56a807eaa892f46042bf7f7774a981e5c files/digest-fuse-2.6.0-r10 232
SHA256 2875cbaf4443af074f31092da113c9a1bbdf052391db73e24c71772c99c90c37 files/digest-fuse-2.6.0-r10 232

View File

@@ -1,3 +0,0 @@
MD5 997900fde4462c95ca11972410a0b910 fuse-2.6.0.tar.gz 474956
RMD160 a963d7938500d9e7dd5d77c47f935015ea822991 fuse-2.6.0.tar.gz 474956
SHA256 9572530349b2cebbbc76278bfcbda0de3590c022d2dcd439f381ef497988d9b1 fuse-2.6.0.tar.gz 474956

View File

@@ -1,11 +0,0 @@
diff -pur fuse-1.4.orig/util/Makefile.in fuse-1.4/util/Makefile.in
--- fuse-1.4.orig/util/Makefile.in 2005-01-02 21:09:09.000000000 +0100
+++ fuse-1.4/util/Makefile.in 2005-01-03 08:49:25.333258992 +0100
@@ -36,6 +36,7 @@ NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
ACLOCAL = @ACLOCAL@
+AM_CFLAGS=-Wl,-z,now
AMDEP_FALSE = @AMDEP_FALSE@
AMDEP_TRUE = @AMDEP_TRUE@
AMTAR = @AMTAR@

View File

@@ -1,70 +0,0 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.6.0.ebuild,v 1.1 2006/11/01 15:57:22 genstef Exp $
inherit linux-mod eutils libtool
MY_P=${P/_/-}
DESCRIPTION="An interface for filesystems implemented in userspace."
HOMEPAGE="http://fuse.sourceforge.net"
SRC_URI="mirror://sourceforge/fuse/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="kernel_linux kernel_FreeBSD"
S=${WORKDIR}/${MY_P}
PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"
MODULE_NAMES="fuse(fs:${S}/kernel)"
CONFIG_CHECK="@FUSE_FS:fuse"
BUILD_PARAMS="majver=${KV_MAJOR}.${KV_MINOR}
fusemoduledir=${ROOT}/lib/modules/${KV_FULL}/fs"
BUILD_TARGETS="all"
ECONF_PARAMS="--with-kernel=${KV_OUT_DIR}"
FUSE_FS_ERROR="We have detected FUSE already built into the kernel.
We will continue, but we wont build the module this time."
pkg_setup() {
use kernel_linux && linux-mod_pkg_setup
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/fuse-fix-lazy-binding.patch
elibtoolize
}
src_compile() {
econf \
--disable-kernel-module \
--disable-example \
|| die "econf failed for fuse userland"
emake || die "emake failed"
if use kernel_linux ; then
cd "${S}"
sed -i -e 's/.*depmod.*//g' kernel/Makefile.in
convert_to_m kernel/Makefile.in
linux-mod_src_compile
fi
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog Filesystems README README-2.4 \
README.NFS NEWS doc/how-fuse-works
docinto example
dodoc example/*
if use kernel_linux ; then
linux-mod_src_install
else
insinto /usr/include/fuse
doins include/fuse_kernel.h
fi
}
pkg_postinst() {
use kernel_linux && linux-mod_pkg_postinst
}

View File

@@ -1,8 +0,0 @@
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

@@ -1,3 +0,0 @@
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

@@ -1,65 +0,0 @@
# 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 ""
}