summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn J. Ellis <jje@gentoo.org>2003-08-10 05:30:08 +0000
committerJohn J. Ellis <jje@gentoo.org>2003-08-10 05:30:08 +0000
commit9ea6739051b86d259f813b5d83e20c890f084c16 (patch)
treef79bd2c7ea865af58658510f95e031f0f3d456d7 /media-sound/mpc
parentNew pacakge, ~x86 masked. Closes #25161. (diff)
downloadgentoo-2-9ea6739051b86d259f813b5d83e20c890f084c16.tar.gz
gentoo-2-9ea6739051b86d259f813b5d83e20c890f084c16.tar.bz2
gentoo-2-9ea6739051b86d259f813b5d83e20c890f084c16.zip
New pacakge, ~x86 masked. Closes #25161.
Diffstat (limited to 'media-sound/mpc')
-rw-r--r--media-sound/mpc/ChangeLog11
-rw-r--r--media-sound/mpc/Manifest3
-rw-r--r--media-sound/mpc/files/digest-mpc-0.8.01
-rw-r--r--media-sound/mpc/mpc-0.8.0.ebuild30
4 files changed, 44 insertions, 1 deletions
diff --git a/media-sound/mpc/ChangeLog b/media-sound/mpc/ChangeLog
new file mode 100644
index 000000000000..4dcb5fff5b2f
--- /dev/null
+++ b/media-sound/mpc/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for media-sound/mpc
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpc/ChangeLog,v 1.1 2003/08/10 05:29:56 jje Exp $
+
+*mpc-0.8.0 (10 Aug 2003)
+
+ 10 Aug 2003; jje <jje@gentoo.org> mpc-0.8.0.ebuild:
+ Initial revision.
+
+ Submitted by: sbh <sbh@xmbox.com>
+
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
+}
+