diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-17 04:05:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-17 04:05:19 +0000 |
commit | faa6d815e4552e05f4cfb068743b9ef4fc1ab027 (patch) | |
tree | 74cd60be5208588e0ce226a23f5aaead06423b45 /app-misc/rioutil/rioutil-1.4.4.ebuild | |
parent | clean older versions (Manifest recommit) (diff) | |
download | gentoo-2-faa6d815e4552e05f4cfb068743b9ef4fc1ab027.tar.gz gentoo-2-faa6d815e4552e05f4cfb068743b9ef4fc1ab027.tar.bz2 gentoo-2-faa6d815e4552e05f4cfb068743b9ef4fc1ab027.zip |
fix bug #71460 and tidy
Diffstat (limited to 'app-misc/rioutil/rioutil-1.4.4.ebuild')
-rw-r--r-- | app-misc/rioutil/rioutil-1.4.4.ebuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/app-misc/rioutil/rioutil-1.4.4.ebuild b/app-misc/rioutil/rioutil-1.4.4.ebuild index 44583ee68381..05aa3db47f08 100644 --- a/app-misc/rioutil/rioutil-1.4.4.ebuild +++ b/app-misc/rioutil/rioutil-1.4.4.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 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.7 2004/07/20 17:08:52 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rioutil/rioutil-1.4.4.ebuild,v 1.8 2004/11/17 04:05:19 mr_bones_ 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/" @@ -14,19 +16,15 @@ IUSE="" DEPEND="sys-libs/zlib virtual/libc" -inherit eutils - src_unpack() { unpack ${A} || die 'Failed to unpack!' - cd ${S} - epatch ${FILESDIR}/${P}-26headers.patch || die 'Failed to apply 2.6 headers patch!' + cd "${S}" + epatch "${FILESDIR}/${P}-26headers.patch" } src_compile() { - local myconf="--with-usbdevfs" - - econf ${myconf} || die "econf failed" - emake || die "compile failure" + econf --with-usbdevfs || die + emake || die "emake failure" } src_install() { |