summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-03-15 03:35:42 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-03-15 03:35:42 +0000
commit021cf984a8f4938351db4d78534aa24b834f6503 (patch)
tree386585f184790204444df88a587be720a4e842f4 /media-libs/libclastfm
parentVersion bump to first released tarball. (diff)
downloadgentoo-2-021cf984a8f4938351db4d78534aa24b834f6503.tar.gz
gentoo-2-021cf984a8f4938351db4d78534aa24b834f6503.tar.bz2
gentoo-2-021cf984a8f4938351db4d78534aa24b834f6503.zip
Version bump (to snapshot from upstream git because it's required by pragha and xfce4-soundmenu-plugin)
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libclastfm')
-rw-r--r--media-libs/libclastfm/ChangeLog9
-rw-r--r--media-libs/libclastfm/libclastfm-0.4_p20120315.ebuild34
2 files changed, 42 insertions, 1 deletions
diff --git a/media-libs/libclastfm/ChangeLog b/media-libs/libclastfm/ChangeLog
index 03d8ca69633c..4091dd05da87 100644
--- a/media-libs/libclastfm/ChangeLog
+++ b/media-libs/libclastfm/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/libclastfm
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libclastfm/ChangeLog,v 1.3 2012/02/10 12:14:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libclastfm/ChangeLog,v 1.4 2012/03/15 03:35:42 ssuominen Exp $
+
+*libclastfm-0.4_p20120315 (15 Mar 2012)
+
+ 15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
+ +libclastfm-0.4_p20120315.ebuild:
+ Version bump (to snapshot from upstream git because it's required by pragha
+ and xfce4-soundmenu-plugin)
10 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> libclastfm-0.4.ebuild:
x86 stable wrt #401417
diff --git a/media-libs/libclastfm/libclastfm-0.4_p20120315.ebuild b/media-libs/libclastfm/libclastfm-0.4_p20120315.ebuild
new file mode 100644
index 000000000000..ee09ead90af9
--- /dev/null
+++ b/media-libs/libclastfm/libclastfm-0.4_p20120315.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libclastfm/libclastfm-0.4_p20120315.ebuild,v 1.1 2012/03/15 03:35:42 ssuominen Exp $
+
+EAPI=4
+inherit autotools
+
+DESCRIPTION="An unofficial C-API to the last.fm web service"
+HOMEPAGE="http://sourceforge.net/projects/liblastfm/"
+SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+RDEPEND="net-misc/curl"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+DOCS="AUTHORS README"
+
+src_prepare() {
+ eautoreconf
+}
+
+src_configure() {
+ econf $(use_enable static-libs static)
+}
+
+src_install() {
+ default
+ rm -f "${ED}"usr/lib*/${PN}.la
+}