diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-08 20:41:32 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-08 20:41:32 +0000 |
commit | 69ef396540e9a8c8a23bbd8fe4df379d8902a38f (patch) | |
tree | fa4f2bf531cc4869268f6afc4cf8648d682aec98 /media-sound/mpc | |
parent | Version bumped. (diff) | |
download | historical-69ef396540e9a8c8a23bbd8fe4df379d8902a38f.tar.gz historical-69ef396540e9a8c8a23bbd8fe4df379d8902a38f.tar.bz2 historical-69ef396540e9a8c8a23bbd8fe4df379d8902a38f.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.1 | 1 | ||||
-rw-r--r-- | media-sound/mpc/mpc-0.9.1.ebuild | 30 |
3 files changed, 33 insertions, 2 deletions
diff --git a/media-sound/mpc/Manifest b/media-sound/mpc/Manifest index fb19b921114e..eee3c7278efe 100644 --- a/media-sound/mpc/Manifest +++ b/media-sound/mpc/Manifest @@ -1,6 +1,6 @@ -MD5 b5615a68389c15bc085b66b7e27110c8 ChangeLog 804 +MD5 6886b806d222ade3471e1fe292d4596b ChangeLog 917 MD5 15c8a3652fb10567d3cc8892faf0aa7e mpc-0.9.0.ebuild 752 -MD5 15c8a3652fb10567d3cc8892faf0aa7e mpc-0.9.1.ebuild 752 +MD5 0f944c897cca82e553211fe6c2255d9a mpc-0.9.1.ebuild 752 MD5 9014d53768984fe9c489793261cc8d0a mpc-0.8.1.ebuild 682 MD5 dbcc59f44932e3a768a4b845ece1d888 files/digest-mpc-0.9.0 61 MD5 f67cb60012cadbd58b66fffe20753f56 files/digest-mpc-0.9.1 61 diff --git a/media-sound/mpc/files/digest-mpc-0.9.1 b/media-sound/mpc/files/digest-mpc-0.9.1 new file mode 100644 index 000000000000..c075d763162a --- /dev/null +++ b/media-sound/mpc/files/digest-mpc-0.9.1 @@ -0,0 +1 @@ +MD5 026ad0e69b06600825de9e5e8954c0a3 mpc-0.9.1.tar.gz 293931 diff --git a/media-sound/mpc/mpc-0.9.1.ebuild b/media-sound/mpc/mpc-0.9.1.ebuild new file mode 100644 index 000000000000..b02b87855532 --- /dev/null +++ b/media-sound/mpc/mpc-0.9.1.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.1.ebuild,v 1.1 2003/10/08 20:41:21 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 +} |