blob: 85f523404f0db186cf0ef6bf0af319308bb17b83 (
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
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/lufs/lufs-0.9.6.ebuild,v 1.4 2004/06/30 17:11:45 vapier Exp $
DESCRIPTION="User-mode filesystem implementation"
HOMEPAGE="http://lufs.sourceforge.net/lufs/"
SRC_URI="mirror://sourceforge/lufs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="lufsusermount"
DEPEND="virtual/linux-sources"
RDEPEND=""
src_unpack() {
unpack ${A}
# Fix some sandbox failures
cd ${S}/lufsd
mv Makefile.in Makefile.in.orig
sed -e 's/install-exec-hook//' Makefile.in.orig > Makefile.in || die
cd ${S}/util
mv Makefile.in Makefile.in.orig
sed -e 's/install-exec-hook//' Makefile.in.orig > Makefile.in || die
cd ${S}/kernel/Linux/2.4
mv Makefile.in Makefile.in.orig
sed -e 's/install-data-hook//' Makefile.in.orig > Makefile.in || die
cd ${S}/kernel/Linux/2.5
mv Makefile.in Makefile.in.orig
sed -e 's/install-data-hook//' Makefile.in.orig > Makefile.in || die
}
src_install () {
dodoc AUTHORS COPYING ChangeLog Contributors INSTALL \
NEWS README THANKS TODO
dohtml docs/lufs.html
make DESTDIR=${D} install
dosym /usr/bin/auto.sshfs /etc/auto.sshfs
dosym /usr/bin/auto.ftpfs /etc/auto.ftpfs
dodir /sbin
dosym /usr/bin/lufsd /sbin/mount.lufs
use lufsusermount && chmod +s ${D}/usr/bin/lufs{mnt,umount}
}
pkg_postinst() {
/usr/sbin/update-modules
if ! use lufsusermount
then
einfo If you want regular users to be able to mount lufs filesystems,
einfo you need to run the following command as root:
einfo \# chmod +s /usr/bin/lufsmnt /usr/bin/lufsumount
einfo You can also set the lufsusermount USE flag to do this
einfo automatically.
fi
}
pkg_postrm() {
/sbin/modprobe -r lufs
}
|