summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Marineau <marineam@gentoo.org>2007-03-15 03:02:29 +0000
committerMichael Marineau <marineam@gentoo.org>2007-03-15 03:02:29 +0000
commit37b7e4a855e3fa515ab85d9f2ad949d9af07f59b (patch)
tree5d11ddb996fd057873a8e332336c88bc18049e69 /media-sound/mpdscribble
parentadded ~ppc64 (diff)
downloadgentoo-2-37b7e4a855e3fa515ab85d9f2ad949d9af07f59b.tar.gz
gentoo-2-37b7e4a855e3fa515ab85d9f2ad949d9af07f59b.tar.bz2
gentoo-2-37b7e4a855e3fa515ab85d9f2ad949d9af07f59b.zip
Version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'media-sound/mpdscribble')
-rw-r--r--media-sound/mpdscribble/ChangeLog10
-rw-r--r--media-sound/mpdscribble/files/digest-mpdscribble-0.2.123
-rw-r--r--media-sound/mpdscribble/mpdscribble-0.2.12.ebuild39
3 files changed, 50 insertions, 2 deletions
diff --git a/media-sound/mpdscribble/ChangeLog b/media-sound/mpdscribble/ChangeLog
index 978b39cdba79..930ca64cc08c 100644
--- a/media-sound/mpdscribble/ChangeLog
+++ b/media-sound/mpdscribble/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-sound/mpdscribble
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/ChangeLog,v 1.12 2006/06/22 20:47:20 slarti Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/ChangeLog,v 1.13 2007/03/15 03:02:29 marineam Exp $
+
+*mpdscribble-0.2.12 (15 Mar 2007)
+
+ 15 Mar 2007; Michael Marineau <marineam@gentoo.org>
+ +mpdscribble-0.2.12.ebuild:
+ Version bump to 0.2.12
22 Jun 2006; Tom Martin <slarti@gentoo.org> files/mpdscribble.rc:
Add 'use mpd' to depend() part of initscript. Resolves bug #135129.
diff --git a/media-sound/mpdscribble/files/digest-mpdscribble-0.2.12 b/media-sound/mpdscribble/files/digest-mpdscribble-0.2.12
new file mode 100644
index 000000000000..70c423e52a95
--- /dev/null
+++ b/media-sound/mpdscribble/files/digest-mpdscribble-0.2.12
@@ -0,0 +1,3 @@
+MD5 7f0e976e7a066df0ddf21f3f4041ef6a mpdscribble-0.2.12.tar.gz 140039
+RMD160 33a39e990f5f167cb58985d9836d21e7a91e0394 mpdscribble-0.2.12.tar.gz 140039
+SHA256 bc15d633abca93d245c013e2f9ce40bc69a01c45da0a63423c437d891f404768 mpdscribble-0.2.12.tar.gz 140039
diff --git a/media-sound/mpdscribble/mpdscribble-0.2.12.ebuild b/media-sound/mpdscribble/mpdscribble-0.2.12.ebuild
new file mode 100644
index 000000000000..207d262c5629
--- /dev/null
+++ b/media-sound/mpdscribble/mpdscribble-0.2.12.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/mpdscribble-0.2.12.ebuild,v 1.1 2007/03/15 03:02:29 marineam Exp $
+
+DESCRIPTION="An MPD client that submits information to audioscrobbler."
+HOMEPAGE="http://www.frob.nl/scribble.html"
+SRC_URI="http://www.frob.nl/projects/scribble/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+DEPEND=">=net-libs/libsoup-2.2"
+
+src_install() {
+ make DESTDIR=${D} install || die
+
+ exeinto /usr/share/mpdscribble
+ doexe setup.sh
+
+ doman mpdscribble.1
+ newinitd ${FILESDIR}/mpdscribble.rc mpdscribble
+
+ dodoc AUTHORS ChangeLog NEWS README TODO
+
+ dodir /var/cache/mpdscribble
+}
+
+pkg_postinst() {
+ einfo ""
+ einfo "Please run:"
+ einfo " /usr/share/mpdscribble/setup.sh"
+ einfo "in order to configure mpdscribble. If you do this as root, a"
+ einfo "system-wide configuration will be created. Otherwise, a per-user"
+ einfo "configuration file will be created."
+ einfo ""
+ einfo "To start mpdscribble:"
+ einfo " /etc/init.d/mpdscribble start"
+ einfo ""
+}