diff options
Diffstat (limited to 'sys-fs/exfat-utils/exfat-utils-1.1.1.ebuild')
-rw-r--r-- | sys-fs/exfat-utils/exfat-utils-1.1.1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-fs/exfat-utils/exfat-utils-1.1.1.ebuild b/sys-fs/exfat-utils/exfat-utils-1.1.1.ebuild new file mode 100644 index 000000000000..cf2b9f43c1c0 --- /dev/null +++ b/sys-fs/exfat-utils/exfat-utils-1.1.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit scons-utils toolchain-funcs + +DESCRIPTION="exFAT filesystem utilities" +HOMEPAGE="http://code.google.com/p/exfat/" +SRC_URI="https://docs.google.com/uc?export=download&id=0B7CLI-REKbE3UzNtSkRvdHBpdjQ -> ${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 +} |