summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-03-17 15:19:30 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-03-17 15:19:30 +0000
commit27a01b7b8737882feb313172fa1642e799445e4d (patch)
treeb96325cb6a1fe1d92f5fe44a3a5cc516e81444e6 /sys-fs/exfat-utils
parentVersion bump wrt #400745 by "teidakankan". Move everything from / to /usr. (diff)
downloadgentoo-2-27a01b7b8737882feb313172fa1642e799445e4d.tar.gz
gentoo-2-27a01b7b8737882feb313172fa1642e799445e4d.tar.bz2
gentoo-2-27a01b7b8737882feb313172fa1642e799445e4d.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/exfat-utils')
-rw-r--r--sys-fs/exfat-utils/ChangeLog10
-rw-r--r--sys-fs/exfat-utils/exfat-utils-0.9.7.ebuild29
2 files changed, 37 insertions, 2 deletions
diff --git a/sys-fs/exfat-utils/ChangeLog b/sys-fs/exfat-utils/ChangeLog
index d8e9b26fbbe7..42c2fcf461ee 100644
--- a/sys-fs/exfat-utils/ChangeLog
+++ b/sys-fs/exfat-utils/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-fs/exfat-utils
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/exfat-utils/ChangeLog,v 1.1 2011/06/14 13:49:50 ssuominen Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/exfat-utils/ChangeLog,v 1.2 2012/03/17 15:19:30 ssuominen Exp $
+
+*exfat-utils-0.9.7 (17 Mar 2012)
+
+ 17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
+ +exfat-utils-0.9.7.ebuild:
+ Version bump wrt #400745 by teidakankan. Move everything from / to /usr.
*exfat-utils-0.9.5 (14 Jun 2011)
diff --git a/sys-fs/exfat-utils/exfat-utils-0.9.7.ebuild b/sys-fs/exfat-utils/exfat-utils-0.9.7.ebuild
new file mode 100644
index 000000000000..781f10ca6fc5
--- /dev/null
+++ b/sys-fs/exfat-utils/exfat-utils-0.9.7.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/exfat-utils/exfat-utils-0.9.7.ebuild,v 1.1 2012/03/17 15:19:30 ssuominen Exp $
+
+EAPI=4
+inherit scons-utils toolchain-funcs
+
+DESCRIPTION="exFAT filesystem utilities"
+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=""
+
+src_compile() {
+ tc-export CC
+ escons CCFLAGS="${CFLAGS}" || die
+}
+
+src_install() {
+ dosbin dump/dumpexfat label/exfatlabel mkfs/mkexfatfs fsck/exfatfsck
+ dosym mkexfatfs /usr/sbin/mkfs.exfat
+ dosym exfatfsck /usr/sbin/fsck.exfat
+
+ doman */*.8
+ dodoc ChangeLog
+}