blob: 365cdbe757abe72bae95c52eddc51c2598e8a7be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="XMMS2 AudioScrobbler client"
HOMEPAGE="https://code-monkey.de/pages/xmms2-scrobbler"
SRC_URI="ftp://ftp.code-monkey.de/pub/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="media-sound/xmms2
net-misc/curl"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-ldflags.patch
"${FILESDIR}"/${P}-libs.patch
"${FILESDIR}"/${P}-ld-order.patch
"${FILESDIR}"/${P}-gcc-7.patch
"${FILESDIR}"/${P}-no-XPTR.patch
)
src_compile() {
emake CC="$(tc-getCC)" VERBOSE=1
}
src_install() {
emake PREFIX="${EPREFIX}/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"
}
|