diff options
author | John J. Ellis <jje@gentoo.org> | 2003-08-10 05:30:08 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-08-10 05:30:08 +0000 |
commit | 5158dfb718903526b409335a15c93710bbc7590a (patch) | |
tree | bd23d77e6bd91933607de2862cc273e1386918ba | |
parent | New pacakge, ~x86 masked. Closes #25161. (diff) | |
download | historical-5158dfb718903526b409335a15c93710bbc7590a.tar.gz historical-5158dfb718903526b409335a15c93710bbc7590a.tar.bz2 historical-5158dfb718903526b409335a15c93710bbc7590a.zip |
New pacakge, ~x86 masked. Closes #25161.
-rw-r--r-- | media-sound/mpc/Manifest | 3 | ||||
-rw-r--r-- | media-sound/mpc/files/digest-mpc-0.8.0 | 1 | ||||
-rw-r--r-- | media-sound/mpc/mpc-0.8.0.ebuild | 30 |
3 files changed, 33 insertions, 1 deletions
diff --git a/media-sound/mpc/Manifest b/media-sound/mpc/Manifest index 443d5a1d7c65..6b878a089d7b 100644 --- a/media-sound/mpc/Manifest +++ b/media-sound/mpc/Manifest @@ -1,2 +1,3 @@ -MD5 d46ca1be8543849b5e5d1d53ec30bd47 mpc-0.8.0.ebuild 716 +MD5 4addd7d5a7df3d5f0b1aa7dd2f506cfd mpc-0.8.0.ebuild 693 +MD5 4770bdf83998b7fc5c2bac2f3a0bc68a ChangeLog 349 MD5 7fc16b864e05439382933d91fe71b942 files/digest-mpc-0.8.0 61 diff --git a/media-sound/mpc/files/digest-mpc-0.8.0 b/media-sound/mpc/files/digest-mpc-0.8.0 new file mode 100644 index 000000000000..3c63861fba12 --- /dev/null +++ b/media-sound/mpc/files/digest-mpc-0.8.0 @@ -0,0 +1 @@ +MD5 3e9bb2603ed9f23558759824a05e5780 mpc-0.8.0.tar.gz 187994 diff --git a/media-sound/mpc/mpc-0.8.0.ebuild b/media-sound/mpc/mpc-0.8.0.ebuild new file mode 100644 index 000000000000..06a4d147d765 --- /dev/null +++ b/media-sound/mpc/mpc-0.8.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.8.0.ebuild,v 1.1 2003/08/10 05:29:56 jje Exp $ + +DESCRIPTION="mpc is a client for Music Player Daemon (mpd)" +SRC_URI="http://mercury.chem.pitt.edu/~shank/${P}.tar.gz" +HOMEPAGE="http://musicpd.sourceforge.net/" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="" +RDEPEND=">=media-sound/mpd-0.8.2" + +src_compile() { + local myconf + myconf="--with-gnu-ld" + + econf ${myconf} || die "could not configure" + emake || die "emake failed" +} + +src_install() { + cd ${S} + dobin mpc + doman mpc.1 + dodoc AUTHORS COPYING INSTALL README +} + |