diff options
author | Paul de Vrieze <pauldv@gentoo.org> | 2003-04-24 09:07:00 +0000 |
---|---|---|
committer | Paul de Vrieze <pauldv@gentoo.org> | 2003-04-24 09:07:00 +0000 |
commit | 62f5d576e3131f4c688c339a05f6bd04a850ea24 (patch) | |
tree | 8abc198b080b973dfff802fbcc2c7d02306b1817 /app-misc/rio500 | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-62f5d576e3131f4c688c339a05f6bd04a850ea24.tar.gz gentoo-2-62f5d576e3131f4c688c339a05f6bd04a850ea24.tar.bz2 gentoo-2-62f5d576e3131f4c688c339a05f6bd04a850ea24.zip |
A fix to a file conflict with glibc
Diffstat (limited to 'app-misc/rio500')
-rw-r--r-- | app-misc/rio500/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/rio500/Manifest | 5 | ||||
-rw-r--r-- | app-misc/rio500/files/digest-rio500-0.7-r2 | 1 | ||||
-rw-r--r-- | app-misc/rio500/rio500-0.7-r2.ebuild | 35 |
4 files changed, 48 insertions, 1 deletions
diff --git a/app-misc/rio500/ChangeLog b/app-misc/rio500/ChangeLog index 9a144d008dbc..567a02d23201 100644 --- a/app-misc/rio500/ChangeLog +++ b/app-misc/rio500/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/rio500 # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/rio500/ChangeLog,v 1.5 2003/02/12 05:05:38 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rio500/ChangeLog,v 1.6 2003/04/24 09:06:52 pauldv Exp $ + +*rio500-0.7-r2 (24 Apr 2003) + + 24 Apr 2003; Paul de Vrieze pauldv@gentoo.org rio500-0.7-r2.ebuild: + Removed /usr/include/getopt.h from the installed files as it is part of glibc. + This bug was signalled by Aurélien Gouny <aurelien@gouny.org> on gentoo-user *rio500-0.7-r1 (12 Apr 2002) diff --git a/app-misc/rio500/Manifest b/app-misc/rio500/Manifest new file mode 100644 index 000000000000..967e24318c32 --- /dev/null +++ b/app-misc/rio500/Manifest @@ -0,0 +1,5 @@ +MD5 4a518a2d9f6090fb7b09bda124104615 ChangeLog 1248 +MD5 6c15efd23d3b1c185b6fe652bafb21f6 rio500-0.7-r2.ebuild 961 +MD5 10b2c098a1e32c6009a4dcbc7a8ec976 rio500-0.7-r1.ebuild 822 +MD5 fb73c696618bd1e2417425c450669ddc files/digest-rio500-0.7-r1 62 +MD5 fb73c696618bd1e2417425c450669ddc files/digest-rio500-0.7-r2 62 diff --git a/app-misc/rio500/files/digest-rio500-0.7-r2 b/app-misc/rio500/files/digest-rio500-0.7-r2 new file mode 100644 index 000000000000..5905d403d6ea --- /dev/null +++ b/app-misc/rio500/files/digest-rio500-0.7-r2 @@ -0,0 +1 @@ +MD5 f624c255d6a538205a63a9bada4e5d89 rio500-0.7.tar.gz 169143 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 +} |