diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-17 15:12:58 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-17 15:12:58 +0000 |
commit | 82177371bd5253118dc3408b2f9fafe23cdda45b (patch) | |
tree | b88826391771fac5c434c08114ff9db1f982de3f /sys-fs/fuse-exfat | |
parent | Version bump. (diff) | |
download | gentoo-2-82177371bd5253118dc3408b2f9fafe23cdda45b.tar.gz gentoo-2-82177371bd5253118dc3408b2f9fafe23cdda45b.tar.bz2 gentoo-2-82177371bd5253118dc3408b2f9fafe23cdda45b.zip |
Version bump wrt #400745 by "teidakankan". Move everything from / to /usr.
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/fuse-exfat')
-rw-r--r-- | sys-fs/fuse-exfat/ChangeLog | 9 | ||||
-rw-r--r-- | sys-fs/fuse-exfat/fuse-exfat-0.9.7.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/sys-fs/fuse-exfat/ChangeLog b/sys-fs/fuse-exfat/ChangeLog index 33ae194b622b..1743db868ea7 100644 --- a/sys-fs/fuse-exfat/ChangeLog +++ b/sys-fs/fuse-exfat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/fuse-exfat -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.1 2011/06/14 14:03:57 ssuominen Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.2 2012/03/17 15:12:58 ssuominen Exp $ + +*fuse-exfat-0.9.7 (17 Mar 2012) + + 17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> +fuse-exfat-0.9.7.ebuild: + Version bump wrt #400745 by "teidakankan". Move everything from / to /usr. *fuse-exfat-0.9.5 (14 Jun 2011) diff --git a/sys-fs/fuse-exfat/fuse-exfat-0.9.7.ebuild b/sys-fs/fuse-exfat/fuse-exfat-0.9.7.ebuild new file mode 100644 index 000000000000..440c68f977b8 --- /dev/null +++ b/sys-fs/fuse-exfat/fuse-exfat-0.9.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-0.9.7.ebuild,v 1.1 2012/03/17 15:12:58 ssuominen Exp $ + +EAPI=4 +inherit scons-utils toolchain-funcs + +DESCRIPTION="exFAT filesystem FUSE module" +HOMEPAGE="http://code.google.com/p/exfat/" +SRC_URI="http://exfat.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-fs/fuse" +DEPEND="${RDEPEND}" + +src_compile() { + tc-export CC + escons CCFLAGS="${CFLAGS}" || die +} + +src_install() { + dosbin fuse/mount.exfat-fuse + dosym mount.exfat-fuse /usr/sbin/mount.exfat + + doman */*.8 + dodoc ChangeLog +} |