blob: 03f8eb990c4566971618edff3f4bd5c319f18c4b (
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
33
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/rioutil/rioutil-1.4.4.ebuild,v 1.10 2005/04/21 19:40:15 blubb Exp $
inherit eutils
DESCRIPTION="Command line tool for transfering mp3s to and from a Rio 600, 800, Rio Riot, and Nike PSA/Play"
HOMEPAGE="http://rioutil.sourceforge.net/"
SRC_URI="mirror://sourceforge/rioutil/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND="sys-libs/zlib
virtual/libc"
src_unpack() {
unpack ${A} || die 'Failed to unpack!'
cd "${S}"
epatch "${FILESDIR}/${P}-26headers.patch"
}
src_compile() {
econf --with-usbdevfs || die
emake || die "emake failure"
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}
|