blob: ca01b7d1fa0a037dfd8891453c90a2587d82bb22 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/lufs/lufs-0.8.0-r1.ebuild,v 1.2 2003/02/13 16:03:42 vapier Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="User-mode filesystem implementation"
SRC_URI="mirror://sourceforge/lufs/${P}.tar.gz"
HOMEPAGE="http://lufs.sourceforge.net/lufs/"
LICENSE="GPL-2"
DEPEND="virtual/linux-sources"
#RDEPEND
KEYWORDS="~x86"
SLOT="0"
IUSE=""
src_unpack() {
unpack ${A}
cd ${S}/lufsd
mv Makefile.in Makefile.in.orig
sed -e '497s/install-exec-hook//' Makefile.in.orig > Makefile.in || die
cd ${S}/util
mv Makefile.in Makefile.in.orig
sed -e '429s/install-exec-hook//' Makefile.in.orig > Makefile.in || die
cd ${S}/kernel2.4
mv Makefile.in Makefile.in.orig
sed -e '366s/install-data-hook//' Makefile.in.orig > Makefile.in || die
}
src_install () {
exeinto /etc/init.d
newexe ${FILESDIR}/${P}-init lufs
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
}
pkg_postinst() {
id lufs 2>/dev/null || useradd -g nobody -d /home/lufs -m -s /bin/sh -c "LUFS user" lufs
}
pkg_postrm() {
userdel lufs
}
|