diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-03-12 12:01:52 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-03-12 12:14:34 -0500 |
commit | fdf73449193ebf08c9db98a2546e6aefbb16a018 (patch) | |
tree | ee90fb74a7fc939f518e309d7edc0d6cc81bae55 /sys-fs/sshfs | |
parent | profiles: drop mask for removed package media-libs/gluon (diff) | |
download | gentoo-fdf73449193ebf08c9db98a2546e6aefbb16a018.tar.gz gentoo-fdf73449193ebf08c9db98a2546e6aefbb16a018.tar.bz2 gentoo-fdf73449193ebf08c9db98a2546e6aefbb16a018.zip |
sys-fs/sshfs-fuse: rename to sys-fs/sshfs following upstream
Diffstat (limited to 'sys-fs/sshfs')
-rw-r--r-- | sys-fs/sshfs/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/sshfs/metadata.xml | 11 | ||||
-rw-r--r-- | sys-fs/sshfs/sshfs-2.5.ebuild | 32 |
3 files changed, 44 insertions, 0 deletions
diff --git a/sys-fs/sshfs/Manifest b/sys-fs/sshfs/Manifest new file mode 100644 index 000000000000..8cef2df8e5aa --- /dev/null +++ b/sys-fs/sshfs/Manifest @@ -0,0 +1 @@ +DIST sshfs-fuse-2.5.tar.gz 136378 SHA256 e9171452e5d0150b9c6a2158fd2e2dcefb5d5d03ba4d208949e00a3a46c6e63e SHA512 48ae4008d10fe66b843ff1e891627f8262e00d064fec048c8c1189507e757994e81e4fa2deb4d8d56cff0d1818efe4a692494b9c48a01c6c79c626acefa1b53e WHIRLPOOL 00086691d287a770ce04ed068250841fe9fd8ec054a9f86f2ffd388c5c519b4f6bc559990724d25895065d6ab8618eb07129801c32a68eb9bfefb8fa952a412f diff --git a/sys-fs/sshfs/metadata.xml b/sys-fs/sshfs/metadata.xml new file mode 100644 index 000000000000..1dde05c3d522 --- /dev/null +++ b/sys-fs/sshfs/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>radhermit@gentoo.org</email> + <name>Tim Harder</name> + </maintainer> + <upstream> + <remote-id type="github">libfuse/sshfs</remote-id> + </upstream> +</pkgmetadata> diff --git a/sys-fs/sshfs/sshfs-2.5.ebuild b/sys-fs/sshfs/sshfs-2.5.ebuild new file mode 100644 index 000000000000..6f3f9d6cec98 --- /dev/null +++ b/sys-fs/sshfs/sshfs-2.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +MY_PN=sshfs-fuse +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Fuse-filesystem utilizing the sftp service" +HOMEPAGE="https://github.com/libfuse/sshfs" +SRC_URI="https://github.com/libfuse/sshfs/releases/download/sshfs-${PV//./_}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="amd64 arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +SLOT="0" + +CDEPEND=">=sys-fs/fuse-2.6.0_pre3 + >=dev-libs/glib-2.4.2" +RDEPEND="${CDEPEND} + >=net-misc/openssh-4.3" +DEPEND="${CDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +DOCS=( README NEWS ChangeLog AUTHORS FAQ.txt ) + +src_configure() { + # hack not needed with >=net-misc/openssh-4.3 + econf --disable-sshnodelay +} |