diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-07 17:17:53 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-07 17:17:53 +0000 |
commit | 342f5339a8e937c941efd24c90f3e8606f8223aa (patch) | |
tree | 602d74dfb147203ae635c2dea8a177020990fca2 /media-sound/mpc | |
parent | Version bumped. (diff) | |
download | historical-342f5339a8e937c941efd24c90f3e8606f8223aa.tar.gz historical-342f5339a8e937c941efd24c90f3e8606f8223aa.tar.bz2 historical-342f5339a8e937c941efd24c90f3e8606f8223aa.zip |
Version bumped.
Diffstat (limited to 'media-sound/mpc')
-rw-r--r-- | media-sound/mpc/Manifest | 4 | ||||
-rw-r--r-- | media-sound/mpc/files/digest-mpc-0.9.0 | 1 | ||||
-rw-r--r-- | media-sound/mpc/mpc-0.9.0.ebuild | 30 |
3 files changed, 33 insertions, 2 deletions
diff --git a/media-sound/mpc/Manifest b/media-sound/mpc/Manifest index 9eda8a575779..94f7dfd7d053 100644 --- a/media-sound/mpc/Manifest +++ b/media-sound/mpc/Manifest @@ -1,5 +1,5 @@ -MD5 69db490e70e93ce1e9a1d644992687f5 ChangeLog 687 -MD5 b6a67ad9f1d8a775188f6bf99bad5ce5 mpc-0.9.0.ebuild 640 +MD5 b5615a68389c15bc085b66b7e27110c8 ChangeLog 804 +MD5 15c8a3652fb10567d3cc8892faf0aa7e mpc-0.9.0.ebuild 752 MD5 9014d53768984fe9c489793261cc8d0a mpc-0.8.1.ebuild 682 MD5 dbcc59f44932e3a768a4b845ece1d888 files/digest-mpc-0.9.0 61 MD5 1aa1fcec3a5935a8c0fb8ad35a2607ab files/digest-mpc-0.8.1 61 diff --git a/media-sound/mpc/files/digest-mpc-0.9.0 b/media-sound/mpc/files/digest-mpc-0.9.0 new file mode 100644 index 000000000000..71c47a0ce2af --- /dev/null +++ b/media-sound/mpc/files/digest-mpc-0.9.0 @@ -0,0 +1 @@ +MD5 6d9c24f223b0b01a076130164d641c11 mpc-0.9.0.tar.gz 292778 diff --git a/media-sound/mpc/mpc-0.9.0.ebuild b/media-sound/mpc/mpc-0.9.0.ebuild new file mode 100644 index 000000000000..1ac1d9df3e90 --- /dev/null +++ b/media-sound/mpc/mpc-0.9.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpc/mpc-0.9.0.ebuild,v 1.1 2003/10/07 17:17:48 mholzer Exp $ + +IUSE="" + +DESCRIPTION="A commandline client for Music Player Daemon (media-sound/mpd)" +SRC_URI="http://mercury.chem.pitt.edu/~shank/${P}.tar.gz" +HOMEPAGE="http://www.musicpd.org" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc" + +src_compile() { + local myconf + myconf="--with-gnu-ld" + + econf ${myconf} || die "could not configure" + + emake || die "emake failed" +} + +src_install() { + emake install DESTDIR=${D} || die + rm -rf ${D}/usr/share/doc/mpc/ + dodoc AUTHORS COPYING ChangeLog INSTALL README doc/mpc-bashrc +} |