summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-06-26 16:51:27 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-06-26 16:51:27 +0000
commit018d3eedb0ac3158acb397231bccd5f99f67b114 (patch)
tree5146a9201058541726dfc7bb3de82b3e3fd607b4 /media-sound/mpc
parentInitial commit. Closing Bug #26744 (Manifest recommit) (diff)
downloadgentoo-2-018d3eedb0ac3158acb397231bccd5f99f67b114.tar.gz
gentoo-2-018d3eedb0ac3158acb397231bccd5f99f67b114.tar.bz2
gentoo-2-018d3eedb0ac3158acb397231bccd5f99f67b114.zip
Version bumped.
Diffstat (limited to 'media-sound/mpc')
-rw-r--r--media-sound/mpc/ChangeLog7
-rw-r--r--media-sound/mpc/Manifest8
-rw-r--r--media-sound/mpc/files/digest-mpc-0.11.01
-rw-r--r--media-sound/mpc/mpc-0.11.0.ebuild30
4 files changed, 42 insertions, 4 deletions
diff --git a/media-sound/mpc/ChangeLog b/media-sound/mpc/ChangeLog
index 57fe9e91e5af..2f750509501a 100644
--- a/media-sound/mpc/ChangeLog
+++ b/media-sound/mpc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/mpc
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpc/ChangeLog,v 1.16 2004/06/25 00:13:20 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpc/ChangeLog,v 1.17 2004/06/26 16:51:27 mholzer Exp $
+
+*mpc-0.11.0 (26 Jun 2004)
+
+ 26 Jun 2004; Martin Holzer <mholzer@gentoo.org> mpc-0.11.0.ebuild:
+ Version bumped.
25 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org> mpc-0.10.2.ebuild,
mpc-0.10.3.ebuild:
diff --git a/media-sound/mpc/Manifest b/media-sound/mpc/Manifest
index c3b94ee55545..272f1429362a 100644
--- a/media-sound/mpc/Manifest
+++ b/media-sound/mpc/Manifest
@@ -1,6 +1,8 @@
-MD5 819d21efaefb01e5be2f2079b8ba808f mpc-0.9.2.ebuild 756
-MD5 3935025254201eee4424f927a913bfd0 mpc-0.10.3.ebuild 757
MD5 9727021a3ecccf30580e82e6daad9a19 ChangeLog 1999
MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158
-MD5 bd42c6d451b267508a45ec123512208a files/digest-mpc-0.10.3 62
+MD5 819d21efaefb01e5be2f2079b8ba808f mpc-0.9.2.ebuild 756
+MD5 3935025254201eee4424f927a913bfd0 mpc-0.11.0.ebuild 757
+MD5 3935025254201eee4424f927a913bfd0 mpc-0.10.3.ebuild 757
+MD5 00db07f9d5f6f7b4b898e92a82e7937e files/digest-mpc-0.11.0 62
MD5 4903d2b80e98c9092f1ff4ebe6d9bac0 files/digest-mpc-0.9.2 61
+MD5 bd42c6d451b267508a45ec123512208a files/digest-mpc-0.10.3 62
diff --git a/media-sound/mpc/files/digest-mpc-0.11.0 b/media-sound/mpc/files/digest-mpc-0.11.0
new file mode 100644
index 000000000000..70a2f7d22df9
--- /dev/null
+++ b/media-sound/mpc/files/digest-mpc-0.11.0
@@ -0,0 +1 @@
+MD5 7b58088f3ceba47b6466d1226993ad99 mpc-0.11.0.tar.gz 163502
diff --git a/media-sound/mpc/mpc-0.11.0.ebuild b/media-sound/mpc/mpc-0.11.0.ebuild
new file mode 100644
index 000000000000..a6b6bce3deff
--- /dev/null
+++ b/media-sound/mpc/mpc-0.11.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpc/mpc-0.11.0.ebuild,v 1.1 2004/06/26 16:51:27 mholzer Exp $
+
+IUSE=""
+
+DESCRIPTION="A commandline client for Music Player Daemon (media-sound/mpd)"
+SRC_URI="mirror://sourceforge/musicpd/${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
+}