summaryrefslogtreecommitdiff
blob: 6b44af9c7f926ab8ce5c5202a42b847d4cc7d50a (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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=3

DESCRIPTION="fuse implementation of the exfat filesystem"
HOMEPAGE="http://code.google.com/p/exfat/"
SRC_URI="http://exfat.googlecode.com/files/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND="dev-util/scons
	sys-fs/fuse"
RDEPEND="sys-fs/fuse"

src_prepare() {
	sed -i "s|-O2 -ggdb|$CFLAGS|g" SConstruct || die
}
src_compile() {
	scons ${MAKEOPTS} || die
}

src_install() {
	DESTDIR="${D}"/sbin scons ${MAKEOPTS} install || die
}