blob: 3bde6a726bb4c1bc0123ddbc2d2b5ceab71f9e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/fatsort-0.9.9.1.ebuild,v 1.1 2008/12/04 18:12:41 darkside Exp $
inherit eutils
DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players."
HOMEPAGE="http://fatsort.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's:/usr/local/sbin:/usr/sbin:g' src/Makefile || die "sed failed!"
}
src_compile() {
emake CC=$(tc-getCC) LD=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
DESTDIR="${D}" || die "compile failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
doman man/fatsort.8 || die "doman failed"
dodoc CHANGES README TODO || die "dodoc failed"
}
|