diff options
Diffstat (limited to 'net-fs/fusesmb/fusesmb-0.8.7.ebuild')
-rw-r--r-- | net-fs/fusesmb/fusesmb-0.8.7.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net-fs/fusesmb/fusesmb-0.8.7.ebuild b/net-fs/fusesmb/fusesmb-0.8.7.ebuild new file mode 100644 index 000000000000..93d5a7aab2db --- /dev/null +++ b/net-fs/fusesmb/fusesmb-0.8.7.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/fusesmb/fusesmb-0.8.7.ebuild,v 1.1 2007/09/23 16:27:54 ticho Exp $ + +inherit eutils + +DESCRIPTION="Instead of mounting one Samba share at a time, you mount all workgroups, hosts and shares at once." +HOMEPAGE="http://www.ricardis.tudelft.nl/~vincent/fusesmb/" +SRC_URI="http://www.ricardis.tudelft.nl/~vincent/fusesmb/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=sys-fs/fuse-2.3 + >=net-fs/samba-3.0" + +DEPEND="${RDEPEND} + virtual/libc + sys-devel/libtool + sys-devel/make" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s:\(FUSE_USE_VERSION.\)23:\122:" config* || die "sed failed" +} + +src_install() { + make install DESTDIR=${D} || die "make install failed" + dodoc AUTHORS ChangeLog README fusesmb.conf.ex +} + +pkg_postinst() { + elog + elog "For quick usage, exec:" + elog "'modprobe fuse'" + elog "'fusesmb -oallow_other /mnt/samba'" + elog +} |