blob: b36208e04b8cf58949d8fcf63359e2e997763f32 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop optfeature pax-utils unpacker xdg
DESCRIPTION="Spotify is a social music platform"
HOMEPAGE="https://www.spotify.com/download/linux/"
SRC_BASE="http://repository.spotify.com/pool/non-free/s/${PN}-client/"
BUILD_ID_AMD64="439.gc253025e"
SRC_URI="${SRC_BASE}${PN}-client_${PV}.${BUILD_ID_AMD64}_amd64.deb"
LICENSE="Spotify"
SLOT="0"
KEYWORDS="~amd64"
IUSE="libnotify local-playback pax-kernel pulseaudio"
RESTRICT="mirror strip"
BDEPEND=">=dev-util/patchelf-0.10"
RDEPEND="
dev-libs/nss
dev-python/dbus-python
libnotify? ( x11-libs/libnotify )
dev-libs/openssl:0=
media-libs/alsa-lib
media-libs/fontconfig
media-libs/harfbuzz
media-libs/mesa[X(+)]
net-misc/curl[ssl]
net-print/cups[ssl]
pulseaudio? ( media-sound/pulseaudio )
!pulseaudio? ( media-sound/apulse )
local-playback? ( media-video/ffmpeg:0/56.58.58 )
x11-libs/gtk+:3
app-accessibility/at-spi2-atk
x11-libs/libxkbcommon
x11-libs/libXScrnSaver
x11-libs/libXtst
x11-libs/libSM
x11-libs/libICE
"
#sys-libs/glibc
S="${WORKDIR}/"
QA_PREBUILT="
opt/spotify/spotify-client/spotify
opt/spotify/spotify-client/libEGL.so
opt/spotify/spotify-client/libGLESv2.so
opt/spotify/spotify-client/libcef.so
opt/spotify/spotify-client/libvk_swiftshader.so
opt/spotify/spotify-client/libvulkan.so.1
opt/spotify/spotify-client/swiftshader/libEGL.so
opt/spotify/spotify-client/swiftshader/libGLESv2.so
"
src_prepare() {
default
# Spotify links against libcurl-gnutls.so.4, which does not exist in Gentoo.
patchelf --replace-needed libcurl-gnutls.so.4 libcurl.so.4 usr/bin/spotify \
|| die "failed to patch libcurl library dependency"
}
src_install() {
gunzip usr/share/doc/spotify-client/changelog.gz || die
dodoc usr/share/doc/spotify-client/changelog
SPOTIFY_PKG_HOME=usr/share/spotify
insinto /usr/share/pixmaps
doins ${SPOTIFY_PKG_HOME}/icons/*.png
# install in /opt/spotify
SPOTIFY_HOME=/opt/spotify/spotify-client
insinto ${SPOTIFY_HOME}
doins -r ${SPOTIFY_PKG_HOME}/*
fperms +x ${SPOTIFY_HOME}/spotify
dodir /usr/bin
cat <<EOF >"${D}"/usr/bin/spotify || die
#! /bin/sh
if command -v spotify-dbus.py &> /dev/null; then
echo "Launching spotify with Gnome systray integration"
LD_LIBRARY_PATH="/usr/$(get_libdir)/apulse" \\
spotify-dbus.py "\$@"
elif command -v spotify-tray &> /dev/null; then
echo "Launching spotify with generic systray integration"
TRAY_ARGS=" --client-path=${SPOTIFY_HOME}/spotify --toggle "
# seperate out the --minimized argument, parse it to spotify-tray
# propagate the rest to the spotify client itself
if [[ "\$@" == *"--minimized"* ]]; then
TRAY_ARGS+=" --minimized "
fi
LD_LIBRARY_PATH="/usr/$(get_libdir)/apulse" \\
spotify-tray \${TRAY_ARGS} -- "\$@"
else
echo "Neither gnome-integration-spotify or spotify-tray installed"
echo "Launching spotify without systray integration"
LD_LIBRARY_PATH="/usr/$(get_libdir)/apulse" \\
exec ${SPOTIFY_HOME}/spotify "\$@"
fi
EOF
fperms +x /usr/bin/spotify
local size
for size in 16 22 24 32 48 64 128 256 512; do
newicon -s ${size} "${S}${SPOTIFY_PKG_HOME}/icons/spotify-linux-${size}.png" \
"spotify-client.png"
done
domenu "${S}${SPOTIFY_PKG_HOME}/spotify.desktop"
if use pax-kernel; then
#create the headers, reset them to default, then paxmark -m them
pax-mark C "${ED}${SPOTIFY_HOME}/${PN}" || die
pax-mark z "${ED}${SPOTIFY_HOME}/${PN}" || die
pax-mark m "${ED}${SPOTIFY_HOME}/${PN}" || die
eqawarn "You have set USE=pax-kernel meaning that you intend to run"
eqawarn "${PN} under a PaX enabled kernel. To do so, we must modify"
eqawarn "the ${PN} binary itself and this *may* lead to breakage! If"
eqawarn "you suspect that ${PN} is being broken by this modification,"
eqawarn "please open a bug."
fi
}
pkg_postinst() {
xdg_pkg_postinst
ewarn "If Spotify crashes after an upgrade its cache may be corrupt."
ewarn "To remove the cache:"
ewarn "rm -rf ~/.cache/spotify"
optfeature "Gnome specific systray integration" gnome-extra/gnome-integration-spotify
optfeature "systray integration on non-Gnome DEs" media-sound/spotify-tray
}
|