diff options
author | 2013-06-11 17:23:51 +0000 | |
---|---|---|
committer | 2013-06-11 17:23:51 +0000 | |
commit | f480f9ac46f60b08d5db9d68e1b16b83be8cf08c (patch) | |
tree | dc648f65b4afe444952d94db7f3ca03ddf55bd69 /sys-fs/fatsort/fatsort-1.1.1.ebuild | |
parent | Bump LeechCraft suite to 0.5.97, thanks to 0xd34df00d. (diff) | |
download | gentoo-2-f480f9ac46f60b08d5db9d68e1b16b83be8cf08c.tar.gz gentoo-2-f480f9ac46f60b08d5db9d68e1b16b83be8cf08c.tar.bz2 gentoo-2-f480f9ac46f60b08d5db9d68e1b16b83be8cf08c.zip |
Version bump. Remove old.
(Portage version: 2.1.12.2/cvs/Linux i686, signed Manifest commit with key 215AD14D)
Diffstat (limited to 'sys-fs/fatsort/fatsort-1.1.1.ebuild')
-rw-r--r-- | sys-fs/fatsort/fatsort-1.1.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sys-fs/fatsort/fatsort-1.1.1.ebuild b/sys-fs/fatsort/fatsort-1.1.1.ebuild new file mode 100644 index 000000000000..514b4eaece94 --- /dev/null +++ b/sys-fs/fatsort/fatsort-1.1.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/fatsort-1.1.1.ebuild,v 1.1 2013/06/11 17:23:51 billie Exp $ + +EAPI=5 + +inherit toolchain-funcs + +SVN_REV=336 +MY_P=${P}.${SVN_REV} + +DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players." +HOMEPAGE="http://fatsort.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-util/bbe sys-fs/dosfstools )" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i -e '/^\(MANDIR=\|SBINDIR=\)/s|/usr/local|/usr|' \ + $(find ./ -name Makefile) || die +} + +src_compile() { + emake CC=$(tc-getCC) LD=$(tc-getCC) \ + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + DESTDIR="${D}" +} + +src_test() { + make tests +} |