blob: 3c619ec913c2597c84a5935539bfac2bc25eb55d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/curlftpfs/curlftpfs-0.9.ebuild,v 1.1 2006/11/10 17:21:43 genstef Exp $
DESCRIPTION="CurlFtpFS is a filesystem for acessing ftp hosts based on FUSE"
HOMEPAGE="http://curlftpfs.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=net-misc/curl-7.15.2
>=sys-fs/fuse-2.2"
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
dodoc README
}
|