You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms2-scrobbler/xmms2-scrobbler-0.4.0.ebuild,v 1.1 2012/03/03 17:49:34 slyfox Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="XMMS2 AudioScrobbler client"
|
|
HOMEPAGE="http://code-monkey.de/pages/xmms2-scrobbler"
|
|
SRC_URI="ftp://ftp.code-monkey.de/pub/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="as-is"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="media-sound/xmms2
|
|
net-misc/curl"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-ldflags.patch
|
|
epatch "${FILESDIR}"/${P}-libs.patch
|
|
epatch "${FILESDIR}"/${P}-ld-order.patch
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
emake PREFIX="${EROOT}/usr" DESTDIR="${D}" install
|
|
dodoc README AUTHORS
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "xmms2-scrobbler will fail to start until you create a configfile"
|
|
einfo ""
|
|
einfo "mkdir -p ~/.config/xmms2/clients/xmms2-scrobbler/lastfm"
|
|
einfo "echo 'user: foo' >> ~/.config/xmms2/clients/xmms2-scrobbler/lastfm/config"
|
|
einfo "echo 'password: bar' >> ~/.config/xmms2/clients/xmms2-scrobbler/lastfm/config"
|
|
einfo "echo 'handshake_url: http://post.audioscrobbler.com' >> ~/.config/xmms2/clients/xmms2-scrobbler/lastfm/config"
|
|
einfo ""
|
|
einfo "More info and configuration-options can be found in xmms2-scrobbler's README file"
|
|
}
|