diff options
Diffstat (limited to 'app-misc/rio500/rio500-0.7-r2.ebuild')
-rw-r--r-- | app-misc/rio500/rio500-0.7-r2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-misc/rio500/rio500-0.7-r2.ebuild b/app-misc/rio500/rio500-0.7-r2.ebuild new file mode 100644 index 000000000000..4245c6bb5970 --- /dev/null +++ b/app-misc/rio500/rio500-0.7-r2.ebuild @@ -0,0 +1,35 @@ +# 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-r2.ebuild,v 1.1 2003/04/24 09:06:52 pauldv 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 + + #delete /usr/include/getopt.h as it is part of glibc, and shouldn't be + #installed with rio500 + rm ${D}/usr/include/getopt.h 2>/dev/null + + dodoc AUTHORS COPYING ChangeLog NEWS README TODO + dodoc fonts/Readme.txt +} |