| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-0.9.5.ebuild,v 1.1 2011/06/14 14:03:57 ssuominen Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
inherit scons-utils toolchain-funcs
|
| 7 |
|
| 8 |
DESCRIPTION="exFAT filesystem FUSE module"
|
| 9 |
HOMEPAGE="http://code.google.com/p/exfat/"
|
| 10 |
SRC_URI="http://exfat.googlecode.com/files/${P}.tar.gz"
|
| 11 |
|
| 12 |
LICENSE="GPL-3"
|
| 13 |
SLOT="0"
|
| 14 |
KEYWORDS="~amd64 ~x86"
|
| 15 |
IUSE=""
|
| 16 |
|
| 17 |
RDEPEND="sys-fs/fuse"
|
| 18 |
DEPEND="${RDEPEND}"
|
| 19 |
|
| 20 |
src_compile() {
|
| 21 |
tc-export CC
|
| 22 |
escons CCFLAGS="${CFLAGS}" || die
|
| 23 |
}
|
| 24 |
|
| 25 |
src_install() {
|
| 26 |
dosbin fuse/mount.exfat-fuse
|
| 27 |
dosym mount.exfat-fuse /usr/sbin/mount.exfat
|
| 28 |
|
| 29 |
doman */*.8
|
| 30 |
dodoc ChangeLog
|
| 31 |
}
|