diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-12-17 22:40:57 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-12-17 22:40:57 +0000 |
commit | f4183191c6e572f8de3409fd419627ca86d2f838 (patch) | |
tree | 683be0eb944e18b82f529c72c57f9e747c6bd181 /sys-fs/sshfs-fuse | |
parent | fix /-prefix install (diff) | |
download | historical-f4183191c6e572f8de3409fd419627ca86d2f838.tar.gz historical-f4183191c6e572f8de3409fd419627ca86d2f838.tar.bz2 historical-f4183191c6e572f8de3409fd419627ca86d2f838.zip |
version bump
Package-Manager: portage-2.1.4_rc10
Diffstat (limited to 'sys-fs/sshfs-fuse')
-rw-r--r-- | sys-fs/sshfs-fuse/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/sshfs-fuse/files/digest-sshfs-fuse-1.9 | 3 | ||||
-rw-r--r-- | sys-fs/sshfs-fuse/sshfs-fuse-1.9.ebuild | 28 |
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 +} |