blob: e34ebc8d1ba95ccb84212e2a1dacc98058a320cf (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/smbnetfs/smbnetfs-0.5.2.ebuild,v 1.2 2010/06/26 12:50:19 slyfox Exp $
EAPI=2
inherit eutils
DESCRIPTION="FUSE filesystem for SMB shares"
HOMEPAGE="http://sourceforge.net/projects/smbnetfs"
SRC_URI="mirror://sourceforge/smbnetfs/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND=">=sys-fs/fuse-2.3
>=net-fs/samba-3.2[smbclient]"
DEPEND="${RDEPEND}
sys-devel/make"
src_install() {
emake install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS ChangeLog
}
pkg_postinst() {
elog
elog "For quick usage, exec:"
elog "'modprobe fuse'"
elog "'smbnetfs -oallow_other /mnt/samba'"
elog
}
|