blob: 8614b3d61f1db5ee1eb5be074da92e95eceb2f10 (
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
30
31
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit base
DESCRIPTION="A FUSE filesystem to access files on box.net accounts"
HOMEPAGE="https://code.google.com/p/boxfs/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="sys-fs/fuse
dev-libs/libxml2
net-misc/curl
dev-libs/libzip
dev-libs/libapp"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PATCHES=( "${FILESDIR}/makefile_fixes.patch" )
src_install() {
dobin ${PN}
dodoc README
}
|