diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-07-14 18:52:34 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-07-14 18:52:34 +0000 |
commit | 0fb49f3ffd1418ab1293a6aef9cf71d0ac4bb28b (patch) | |
tree | 61cd0cbca52a28ed94ae37b7f0e36bcc1d178dff | |
parent | Version bump. (diff) | |
download | gentoo-2-0fb49f3ffd1418ab1293a6aef9cf71d0ac4bb28b.tar.gz gentoo-2-0fb49f3ffd1418ab1293a6aef9cf71d0ac4bb28b.tar.bz2 gentoo-2-0fb49f3ffd1418ab1293a6aef9cf71d0ac4bb28b.zip |
Version bump. Update to EAPI 4.
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
-rw-r--r-- | sys-fs/sshfs-fuse/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/sshfs-fuse/sshfs-fuse-2.3.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/sys-fs/sshfs-fuse/ChangeLog b/sys-fs/sshfs-fuse/ChangeLog index 46a329bfe020..83f3cd5df41c 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-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/ChangeLog,v 1.51 2011/02/09 19:18:55 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/ChangeLog,v 1.52 2011/07/14 18:52:34 radhermit Exp $ + +*sshfs-fuse-2.3 (14 Jul 2011) + + 14 Jul 2011; Tim Harder <radhermit@gentoo.org> +sshfs-fuse-2.3.ebuild: + Version bump. Update to EAPI 4. 09 Feb 2011; Jeremy Olexa <darkside@gentoo.org> sshfs-fuse-2.2.ebuild: add ~arm, tested by myself diff --git a/sys-fs/sshfs-fuse/sshfs-fuse-2.3.ebuild b/sys-fs/sshfs-fuse/sshfs-fuse-2.3.ebuild new file mode 100644 index 000000000000..938b5c96b1b2 --- /dev/null +++ b/sys-fs/sshfs-fuse/sshfs-fuse-2.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/sshfs-fuse/sshfs-fuse-2.3.ebuild,v 1.1 2011/07/14 18:52:34 radhermit Exp $ + +EAPI="4" + +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" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +SLOT="0" +IUSE="" + +DEPEND=">=sys-fs/fuse-2.6.0_pre3 + >=dev-libs/glib-2.4.2" +RDEPEND="${DEPEND} + >=net-misc/openssh-4.3" + +DOCS=( README NEWS ChangeLog AUTHORS FAQ.txt ) + +src_configure() { + # hack not needed with >=net-misc/openssh-4.3 + econf --disable-sshnodelay +} |