summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-07-29 08:56:16 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-07-29 08:56:16 +0000
commit1c602de22666edfa200a632c335543aa47c4338e (patch)
treefe436aa4b23d1a288ba4475e8a6af767e708f594 /media-sound/mpdscribble
parentversion bumps fixing bug #279319, removed old versions (diff)
downloadgentoo-2-1c602de22666edfa200a632c335543aa47c4338e.tar.gz
gentoo-2-1c602de22666edfa200a632c335543aa47c4338e.tar.bz2
gentoo-2-1c602de22666edfa200a632c335543aa47c4338e.zip
Version bump. Change libsoup dep. to curl since it's apparently preferred by the upstream configure.ac.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/mpdscribble')
-rw-r--r--media-sound/mpdscribble/ChangeLog9
-rw-r--r--media-sound/mpdscribble/mpdscribble-0.18.ebuild34
2 files changed, 42 insertions, 1 deletions
diff --git a/media-sound/mpdscribble/ChangeLog b/media-sound/mpdscribble/ChangeLog
index 70750ec4f2a9..6485e5257080 100644
--- a/media-sound/mpdscribble/ChangeLog
+++ b/media-sound/mpdscribble/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-sound/mpdscribble
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/ChangeLog,v 1.27 2009/07/01 20:57:10 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/ChangeLog,v 1.28 2009/07/29 08:56:16 ssuominen Exp $
+
+*mpdscribble-0.18 (29 Jul 2009)
+
+ 29 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
+ +mpdscribble-0.18.ebuild:
+ Version bump. Change libsoup dep. to curl since it's apparently preferred
+ by the upstream configure.ac.
01 Jul 2009; Markus Meier <maekke@gentoo.org> mpdscribble-0.17.ebuild:
amd64 stable, bug #272350
diff --git a/media-sound/mpdscribble/mpdscribble-0.18.ebuild b/media-sound/mpdscribble/mpdscribble-0.18.ebuild
new file mode 100644
index 000000000000..e5992f8df9a0
--- /dev/null
+++ b/media-sound/mpdscribble/mpdscribble-0.18.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/mpdscribble-0.18.ebuild,v 1.1 2009/07/29 08:56:16 ssuominen Exp $
+
+EAPI=2
+
+DESCRIPTION="An MPD client that submits information to Audioscrobbler"
+HOMEPAGE="http://mpd.wikia.com/wiki/Client:Mpdscribble"
+SRC_URI="mirror://sourceforge/musicpd/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=dev-libs/glib-2.16:2
+ net-misc/curl"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_configure() {
+ econf \
+ --disable-dependency-tracking
+
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ newinitd "${FILESDIR}/mpdscribble.rc" mpdscribble
+ chmod 600 "${D}"/etc/mpdscribble.conf
+ dodoc AUTHORS NEWS README
+ rm -r -f "${D}"/usr/share/doc/${PN}
+ dodir /var/cache/mpdscribble
+}