43 lines
874 B
Bash
43 lines
874 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 meson
|
|
|
|
DESCRIPTION="Global Menu for Vala Panel (and xfce4-panel and mate-panel)"
|
|
HOMEPAGE="gitlab.com/vala-panel-project/vala-panel-appmenu"
|
|
EGIT_REPO_URI="https://gitlab.com/vala-panel-project/vala-panel-appmenu.git"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
IUSE="+valapanel xfce mate budgie dbus gtk jayatana"
|
|
REQUIRED_USE=""
|
|
|
|
|
|
RDEPEND="
|
|
x11-libs/libwnck
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
# S="${S}/lib/astal/io"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_feature valapanel)
|
|
$(meson_feature xfce)
|
|
$(meson_feature mate)
|
|
$(meson_feature budgie)
|
|
$(meson_feature dbus registrar)
|
|
$(meson_feature gtk appmenu-gtk-module)
|
|
$(meson_feature jayatana)
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
rm -r ${D}/usr/share/doc/vala-panel-appmenu
|
|
}
|