summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2007-12-17 22:40:57 +0000
committerStefan Schweizer <genstef@gentoo.org>2007-12-17 22:40:57 +0000
commite8a794dbf43e0041b9b5f16e8cd60f863d64a8da (patch)
tree8034518eb4bf57694125cfaaa4645d00f06fa6bb /sys-fs
parentversion bump (diff)
downloadgentoo-2-e8a794dbf43e0041b9b5f16e8cd60f863d64a8da.tar.gz
gentoo-2-e8a794dbf43e0041b9b5f16e8cd60f863d64a8da.tar.bz2
gentoo-2-e8a794dbf43e0041b9b5f16e8cd60f863d64a8da.zip
version bump
(Portage version: 2.1.4_rc10)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/sshfs-fuse/ChangeLog7
-rw-r--r--sys-fs/sshfs-fuse/files/digest-sshfs-fuse-1.93
-rw-r--r--sys-fs/sshfs-fuse/sshfs-fuse-1.9.ebuild28
3 files changed, 37 insertions, 1 deletions
diff --git a/sys-fs/sshfs-fuse/ChangeLog b/sys-fs/sshfs-fuse/ChangeLog
index e0018456de90..11dc1590bb57 100644
--- a/sys-fs/sshfs-fuse/ChangeLog
+++ b/sys-fs/sshfs-fuse/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-fs/sshfs-fuse
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/ChangeLog,v 1.36 2007/10/15 14:59:18 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/ChangeLog,v 1.37 2007/12/17 22:40:57 genstef Exp $
+
+*sshfs-fuse-1.9 (17 Dec 2007)
+
+ 17 Dec 2007; Stefan Schweizer <genstef@gentoo.org> +sshfs-fuse-1.9.ebuild:
+ version bump
15 Oct 2007; Markus Rothe <corsair@gentoo.org> sshfs-fuse-1.8.ebuild:
Stable on ppc64
diff --git a/sys-fs/sshfs-fuse/files/digest-sshfs-fuse-1.9 b/sys-fs/sshfs-fuse/files/digest-sshfs-fuse-1.9
new file mode 100644
index 000000000000..bb6d0aaec385
--- /dev/null
+++ b/sys-fs/sshfs-fuse/files/digest-sshfs-fuse-1.9
@@ -0,0 +1,3 @@
+MD5 05c3da4fa0f673f7ce5f480b3023af61 sshfs-fuse-1.9.tar.gz 109206
+RMD160 9a495f16cdd60b0eeccf8f20626f6370714c6848 sshfs-fuse-1.9.tar.gz 109206
+SHA256 ea374874ded639a037e2ea68c94d43df4076b111f799d15850a6f1069f863a82 sshfs-fuse-1.9.tar.gz 109206
diff --git a/sys-fs/sshfs-fuse/sshfs-fuse-1.9.ebuild b/sys-fs/sshfs-fuse/sshfs-fuse-1.9.ebuild
new file mode 100644
index 000000000000..11149e915733
--- /dev/null
+++ b/sys-fs/sshfs-fuse/sshfs-fuse-1.9.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/sshfs-fuse-1.9.ebuild,v 1.1 2007/12/17 22:40:57 genstef Exp $
+
+inherit eutils
+
+DESCRIPTION="Fuse-filesystem utilizing the sftp service."
+SRC_URI="mirror://sourceforge/fuse/${P}.tar.gz"
+HOMEPAGE="http://fuse.sourceforge.net/sshfs.html"
+LICENSE="GPL-2"
+DEPEND=">=sys-fs/fuse-2.6.0_pre3
+ >=dev-libs/glib-2.4.2"
+RDEPEND="${DEPEND}
+ >=net-misc/openssh-4.3"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+SLOT="0"
+IUSE=""
+
+src_compile() {
+ # hack not needed with >=net-misc/openssh-4.3
+ econf --disable-sshnodelay || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc README NEWS ChangeLog AUTHORS
+}