diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2010-01-12 18:30:47 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2010-01-12 18:30:47 +0000 |
commit | 3a406546968a952df0751fceba9b786098a5db07 (patch) | |
tree | 8ce845e562f58ccd5832961d82e8320b0c7fefb7 /sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild | |
parent | ppc stable #299012 (diff) | |
download | historical-3a406546968a952df0751fceba9b786098a5db07.tar.gz historical-3a406546968a952df0751fceba9b786098a5db07.tar.bz2 historical-3a406546968a952df0751fceba9b786098a5db07.zip |
Version bump. Remove old.
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild')
-rw-r--r-- | sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild b/sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild new file mode 100644 index 000000000000..f452a1640c83 --- /dev/null +++ b/sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/fatsort-0.9.13.1.206.ebuild,v 1.1 2010/01/12 18:30:47 billie Exp $ + +EAPI="2" + +inherit toolchain-funcs versionator + +MY_PV=$(replace_version_separator 4 '-') + +DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players." +HOMEPAGE="http://fatsort.berlios.de/" +SRC_URI="mirror://berlios/${PN}/${PN}-${MY_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S=${WORKDIR}/${PN}-${MY_PV} + +src_prepare() { + sed -i -e "/^\(MANDIR=\|SBINDIR=\)/s|usr/local|/usr|" $(find ./ -name Makefile) +} + +src_compile() { + emake CC=$(tc-getCC) LD=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + DESTDIR="${D}" || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc CHANGES README TODO || die "dodoc failed" +} |