diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 07:31:38 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 07:31:38 +0000 |
commit | e5eb3ec291493c1dd72255ea6d1ed7d3acf4333d (patch) | |
tree | 24469b33169fd079363f09caeb96c40de2c88cc7 /app-misc/rio500 | |
parent | cleanup (diff) | |
download | gentoo-2-e5eb3ec291493c1dd72255ea6d1ed7d3acf4333d.tar.gz gentoo-2-e5eb3ec291493c1dd72255ea6d1ed7d3acf4333d.tar.bz2 gentoo-2-e5eb3ec291493c1dd72255ea6d1ed7d3acf4333d.zip |
cleanup
Diffstat (limited to 'app-misc/rio500')
-rw-r--r-- | app-misc/rio500/rio500-0.7-r1.ebuild | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/app-misc/rio500/rio500-0.7-r1.ebuild b/app-misc/rio500/rio500-0.7-r1.ebuild index 84ee07e07550..fce682afb319 100644 --- a/app-misc/rio500/rio500-0.7-r1.ebuild +++ b/app-misc/rio500/rio500-0.7-r1.ebuild @@ -1,30 +1,33 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org> -# $Header: /var/cvsroot/gentoo-x86/app-misc/rio500/rio500-0.7-r1.ebuild,v 1.2 2002/04/12 19:09:10 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rio500/rio500-0.7-r1.ebuild,v 1.3 2002/04/27 07:31:38 seemant Exp $ -#P= -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Command line tools for transfering mp3s to and from a Rio500" -SRC_URI="http://download.sourceforge.net/rio500/${A}" +SRC_URI="http://download.sourceforge.net/rio500/${P}.tar.gz" HOMEPAGE="http://rio500.sourceforge.net" DEPEND="virtual/glibc =dev-libs/glib-1.2*" src_compile() { - try ./configure --prefix=/usr --host=${CHOST} \ - --with-fontpath=/usr/share/rio500/ --with-id3support -# --with-usbdevfs - try make + ./configure \ + --prefix=/usr \ + --host=${CHOST} \ + --with-fontpath=/usr/share/rio500/ \ + --with-id3support || die +# --with-usbdevfs + make || die } src_install () { - try make prefix=${D}/usr mandir=${D}/usr/share/man \ - datadir=${D}/usr/share/rio500 install + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + datadir=${D}/usr/share/rio500 \ + install || die - dodoc AUTHORS COPYING ChangeLog NEWS README TODO - dodoc fonts/Readme.txt + dodoc AUTHORS COPYING ChangeLog NEWS README TODO + dodoc fonts/Readme.txt } - |