mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
43 lines
784 B
Bash
43 lines
784 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="Music Player Daemon (mpd) panel plugin"
|
|
HOMEPAGE="
|
|
https://docs.xfce.org/panel-plugins/xfce4-mpc-plugin/start
|
|
https://gitlab.xfce.org/panel-plugins/xfce4-mpc-plugin/
|
|
"
|
|
SRC_URI="
|
|
https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.xz
|
|
"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~ppc64 ~riscv x86"
|
|
|
|
DEPEND="
|
|
>=dev-libs/glib-2.60.0
|
|
media-libs/libmpd:=
|
|
>=x11-libs/gtk+-3.22.0:3
|
|
>=xfce-base/libxfce4ui-4.16.0:=[gtk3(+)]
|
|
>=xfce-base/xfce4-panel-4.16.0:=
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
BDEPEND="
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dlibmpd=enabled
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|