summaryrefslogtreecommitdiff
path: root/media-sound/spotify-tray/spotify-tray-1.3.2.ebuild
blob: 5de180e44e4e9df4b1bde23fbbd1cd5bedcaafbb (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
# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools xdg

DESCRIPTION="Wrapper around the Spotify client that adds a tray icon"
HOMEPAGE="https://github.com/tsmetana/spotify-tray"
SRC_URI="https://github.com/tsmetana/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

KEYWORDS="~amd64"
LICENSE="GPL-3"
SLOT="0"

DEPEND="
	x11-libs/gtk+:3[X]
"
RDEPEND="${DEPEND}
	media-sound/spotify
"

src_prepare() {
	default
	# Fix error: AM_INIT_AUTOMAKE expanded multiple times
	sed -i -e '/^AM_INIT_AUTOMAKE$/d' configure.ac || die

	# Fix the name of the icon
	sed -i -e 's/Icon=spotify/Icon=spotify-client/g' spotify-tray.desktop.in || die
	eautoreconf
}