1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-31 13:05:54 +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

12
sys-fs/fuse/Manifest Normal file
View File

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

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

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

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