diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-07-20 12:41:51 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-07-20 12:41:51 +0000 |
commit | 6721798c2495abbf4a75e5515e4020d59c67876e (patch) | |
tree | 329d7fe3bbd6fd6b4a02c97009613b27ed30ffc3 /sys-fs/exfat-utils | |
parent | Version bump (diff) | |
download | gentoo-2-6721798c2495abbf4a75e5515e4020d59c67876e.tar.gz gentoo-2-6721798c2495abbf4a75e5515e4020d59c67876e.tar.bz2 gentoo-2-6721798c2495abbf4a75e5515e4020d59c67876e.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'sys-fs/exfat-utils')
-rw-r--r-- | sys-fs/exfat-utils/ChangeLog | 9 | ||||
-rw-r--r-- | sys-fs/exfat-utils/exfat-utils-1.1.0.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/sys-fs/exfat-utils/ChangeLog b/sys-fs/exfat-utils/ChangeLog index 098e3b0e7a8f..7209b7e8f543 100644 --- a/sys-fs/exfat-utils/ChangeLog +++ b/sys-fs/exfat-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/exfat-utils -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/exfat-utils/ChangeLog,v 1.14 2013/10/25 13:53:28 ssuominen Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/exfat-utils/ChangeLog,v 1.15 2014/07/20 12:41:51 ssuominen Exp $ + +*exfat-utils-1.1.0 (20 Jul 2014) + + 20 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> +exfat-utils-1.1.0.ebuild: + Version bump. 25 Oct 2013; Samuli Suominen <ssuominen@gentoo.org> exfat-utils-1.0.1.ebuild: Synchronize KEYWORDS with sys-fs/fuse-exfat since you really need both in diff --git a/sys-fs/exfat-utils/exfat-utils-1.1.0.ebuild b/sys-fs/exfat-utils/exfat-utils-1.1.0.ebuild new file mode 100644 index 000000000000..ee13482638bf --- /dev/null +++ b/sys-fs/exfat-utils/exfat-utils-1.1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/exfat-utils/exfat-utils-1.1.0.ebuild,v 1.1 2014/07/20 12:41:51 ssuominen Exp $ + +EAPI=5 +inherit scons-utils toolchain-funcs + +DESCRIPTION="exFAT filesystem utilities" +HOMEPAGE="http://code.google.com/p/exfat/" +SRC_URI="http://docs.google.com/uc?export=download&id=0B7CLI-REKbE3bnR2WHowZXNtUVU -> ${P}.tar.gz" + +LICENSE="GPL-2+" # COPYING is GPL-2 but ChangeLog says "Relicensed the project from GPLv3+ to GPLv2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh ~sparc ~x86 ~arm-linux ~x86-linux" +IUSE="" + +src_compile() { + tc-export AR CC RANLIB + escons CCFLAGS="${CFLAGS} -Wall -std=c99" +} + +src_install() { + dobin dump/dumpexfat label/exfatlabel mkfs/mkexfatfs fsck/exfatfsck + dosym mkexfatfs /usr/bin/mkfs.exfat + dosym exfatfsck /usr/bin/fsck.exfat + + doman */*.8 + dodoc ChangeLog +} |