blob: 7603091e78b4566d72ea8c0f24d647a49ba708ef (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org>
# $Header: /var/cvsroot/gentoo-x86/app-misc/rio500/rio500-0.7-r1.ebuild,v 1.10 2003/09/05 12:10:36 msterret Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Command line tools for transfering mp3s to and from a Rio500"
SRC_URI="mirror://sourceforge/rio500/${P}.tar.gz"
HOMEPAGE="http://rio500.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="=dev-libs/glib-1.2*"
src_compile() {
econf \
--with-fontpath=/usr/share/rio500/ \
--with-id3support || die
# --with-usbdevfs
make || die
}
src_install () {
einstall \
datadir=${D}/usr/share/rio500 || die
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
dodoc fonts/Readme.txt
}
|