# 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 }