blob: 7e1a625a448cd37391066d60bbed5da0f0fb02dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-1.4.ebuild,v 1.1 2004/11/16 17:21:49 genstef Exp $
inherit kernel-mod
MY_P=${P/_/-}
DESCRIPTION="An interface for filesystems implemented in userspace."
HOMEPAGE="http://sourceforge.net/projects/fuse"
SRC_URI="mirror://sourceforge/fuse/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
S=${WORKDIR}/${MY_P}
DEPEND="virtual/linux-sources"
pkg_setup() {
kernel-mod_check_modules_supported
}
src_compile() {
econf --disable-example --with-kernel="${ROOT}/usr/src/linux" || die "econf failed"
sed -i 's/.*depmod.*//' kernel/Makefile
# http://marc.theaimsgroup.com/?l=gentoo-dev&m=109672618708314&w=2
kernel-mod_getversion
if [ ${KV_MINOR} -gt 5 ] && [ ${KV_PATCH} -gt 5 ]
then
sed -i 's:SUBDIRS=:M=:g' kernel/Makefile
fi
unset ARCH
emake || die "emake failed"
}
src_install() {
unset ARCH
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS BUGS ChangeLog Filesystems README README-2.4 \
README-2.6 README.NFS NEWS doc/how-fuse-works
docinto example
dodoc example/*
}
pkg_postinst() {
einfo "Checking kernel module dependencies"
test -r "${ROOT}/usr/src/linux/System.map" && \
depmod -ae -F "${ROOT}/usr/src/linux/System.map" -b "${ROOT}" -r ${KV}
}
|