diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-01-21 14:27:43 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-01-21 14:27:43 +0000 |
commit | 62463057206f950ef7bc4207332db889e48c6712 (patch) | |
tree | 09850e1bee1c45f9ef0905745467a984a92c34cd /sys-fs/fuse-exfat | |
parent | Version bump to 0.5.2 and drop older. (diff) | |
download | gentoo-2-62463057206f950ef7bc4207332db889e48c6712.tar.gz gentoo-2-62463057206f950ef7bc4207332db889e48c6712.tar.bz2 gentoo-2-62463057206f950ef7bc4207332db889e48c6712.zip |
Version bump. Thanks to Nikoli for reporting.
(Portage version: 2.2.0_alpha155/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'sys-fs/fuse-exfat')
-rw-r--r-- | sys-fs/fuse-exfat/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/sys-fs/fuse-exfat/ChangeLog b/sys-fs/fuse-exfat/ChangeLog index 2a38dce4d402..b979de01db0e 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-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.9 2013/01/11 16:15:59 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.10 2013/01/21 14:27:43 ssuominen Exp $ + +*fuse-exfat-1.0.0 (21 Jan 2013) + + 21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> +fuse-exfat-1.0.0.ebuild: + Version bump. Thanks to Nikoli for reporting. 11 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> fuse-exfat-0.9.8-r1.ebuild: diff --git a/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild b/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild new file mode 100644 index 000000000000..18a893855560 --- /dev/null +++ b/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-1.0.0.ebuild,v 1.1 2013/01/21 14:27:43 ssuominen Exp $ + +EAPI=5 +inherit scons-utils toolchain-funcs #udev + +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="~arm ~amd64 ~x86" +IUSE="" + +RDEPEND="sys-fs/fuse" +DEPEND=${RDEPEND} + +src_compile() { + tc-export AR CC RANLIB + escons CCFLAGS="${CFLAGS}" +} + +src_install() { + dosbin fuse/mount.exfat-fuse + dosym mount.exfat-fuse /usr/sbin/mount.exfat + + doman */*.8 + dodoc ChangeLog + + #This shouldn't really be required. Comment it out for now. + #udev_dorules "${FILESDIR}"/99-exfat.rules +} + +pkg_postinst() { + echo + elog 'You can install 'exfat-tools' for dump, label, mkfs and fcsk.' + echo +} |