summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2010-10-11 17:03:25 +0000
committerTim Harder <radhermit@gentoo.org>2010-10-11 17:03:25 +0000
commitda294f480bbbc5bfe7436e59d710b69dcc5f0031 (patch)
tree9e6c0fc530f6c032e0bd85f931f7aaa12f323b06 /media-sound/mpdscribble
parentVersion bump. (diff)
downloadgentoo-2-da294f480bbbc5bfe7436e59d710b69dcc5f0031.tar.gz
gentoo-2-da294f480bbbc5bfe7436e59d710b69dcc5f0031.tar.bz2
gentoo-2-da294f480bbbc5bfe7436e59d710b69dcc5f0031.zip
Version bump to new bugfix release (fixes bug #339499, thanks to Mr. B <tenebrarum@gmail.com> for reporting) and remove old.
(Portage version: 2.2_rc90/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/mpdscribble')
-rw-r--r--media-sound/mpdscribble/ChangeLog10
-rw-r--r--media-sound/mpdscribble/mpdscribble-0.17.ebuild30
-rw-r--r--media-sound/mpdscribble/mpdscribble-0.18.ebuild43
-rw-r--r--media-sound/mpdscribble/mpdscribble-0.20.ebuild (renamed from media-sound/mpdscribble/mpdscribble-0.18.1.ebuild)6
4 files changed, 13 insertions, 76 deletions
diff --git a/media-sound/mpdscribble/ChangeLog b/media-sound/mpdscribble/ChangeLog
index 15e815de1bb6..1fd901dd7523 100644
--- a/media-sound/mpdscribble/ChangeLog
+++ b/media-sound/mpdscribble/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for media-sound/mpdscribble
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/ChangeLog,v 1.38 2010/09/11 06:23:50 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/ChangeLog,v 1.39 2010/10/11 17:03:25 radhermit Exp $
+
+*mpdscribble-0.20 (11 Oct 2010)
+
+ 11 Oct 2010; Tim Harder <radhermit@gentoo.org> -mpdscribble-0.17.ebuild,
+ -mpdscribble-0.18.ebuild, -mpdscribble-0.18.1.ebuild,
+ +mpdscribble-0.20.ebuild:
+ Version bump to new bugfix release (fixes bug #339499, thanks to Mr. B
+ <tenebrarum@gmail.com> for reporting) and remove old.
06 Sep 2010; <angelos@gentoo.org> mpdscribble-0.19.ebuild,
+files/mpdscribble-0.19-config_path.patch:
diff --git a/media-sound/mpdscribble/mpdscribble-0.17.ebuild b/media-sound/mpdscribble/mpdscribble-0.17.ebuild
deleted file mode 100644
index a59755581f4f..000000000000
--- a/media-sound/mpdscribble/mpdscribble-0.17.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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.17.ebuild,v 1.4 2009/08/17 20:35:18 fauli Exp $
-
-EAPI=1
-
-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
- || ( >=dev-libs/glib-2.16:2
- dev-libs/libgcrypt )
- net-libs/libsoup:2.4"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-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
-}
diff --git a/media-sound/mpdscribble/mpdscribble-0.18.ebuild b/media-sound/mpdscribble/mpdscribble-0.18.ebuild
deleted file mode 100644
index 9ac2e2d6016c..000000000000
--- a/media-sound/mpdscribble/mpdscribble-0.18.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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.2 2009/07/29 09:22:30 ssuominen Exp $
-
-EAPI=2
-inherit autotools eutils
-
-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="+curl"
-
-RDEPEND=">=dev-libs/glib-2.16:2
- curl? ( net-misc/curl )
- !curl? ( net-libs/libsoup:2.4 )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-ldadd_gthread.patch
- eautoreconf
-}
-
-src_configure() {
- local myclient=soup
- use curl && myclient=curl
- econf \
- --disable-dependency-tracking \
- --with-http-client=${myclient}
-}
-
-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
-}
diff --git a/media-sound/mpdscribble/mpdscribble-0.18.1.ebuild b/media-sound/mpdscribble/mpdscribble-0.20.ebuild
index c7b0c5b718e5..a657a3c36dbe 100644
--- a/media-sound/mpdscribble/mpdscribble-0.18.1.ebuild
+++ b/media-sound/mpdscribble/mpdscribble-0.20.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/mpdscribble-0.18.1.ebuild,v 1.1 2009/10/31 21:49:48 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdscribble/mpdscribble-0.20.ebuild,v 1.1 2010/10/11 17:03:25 radhermit Exp $
EAPI=2
+WANT_AUTOMAKE="1.11"
inherit autotools eutils
DESCRIPTION="An MPD client that submits information to Audioscrobbler"
@@ -15,6 +16,7 @@ KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="+curl"
RDEPEND=">=dev-libs/glib-2.16:2
+ media-libs/libmpdclient
curl? ( net-misc/curl )
!curl? ( net-libs/libsoup:2.4 )"
DEPEND="${RDEPEND}