blob: 97ccb9923d5d45151ab24b9699bbb4623e24ccb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3fs/s3fs-1.33.ebuild,v 1.1 2011/01/05 01:33:24 xmw Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="Amazon mounting S3 via fuse"
HOMEPAGE="http://s3fs.googlecode.com/"
SRC_URI="http://s3fs.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-libs/libxml2-2.6
dev-libs/openssl
>=net-misc/curl-7.0
>=sys-fs/fuse-2.8.4"
RDEPEND="${DEPEND}
app-misc/mime-types"
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README || die
}
|