blob: dbbedb772bfc3c09c930b051646bc7e598e086a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/curlftpfs/curlftpfs-0.9.2.ebuild,v 1.3 2009/03/07 09:11:54 fauli Exp $
DESCRIPTION="file system for accessing 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=""
RESTRICT="test" # bug 258460
DEPEND=">=net-misc/curl-7.17.0
>=sys-fs/fuse-2.2
>=dev-libs/glib-2.0"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die
dodoc README
}
|