mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 13:44:38 +02:00
23 lines
655 B
Bash
23 lines
655 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MATE_BRANCH="$(ver_cut 1-2)"
|
|
MINOR=$(($(ver_cut 2) % 2))
|
|
if [[ ${MINOR} -eq 0 ]]; then
|
|
KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86"
|
|
fi
|
|
|
|
DESCRIPTION="Meta package for MATE panel applets"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
|
|
|
|
LICENSE="metapackage"
|
|
SLOT="0"
|
|
IUSE="appindicator networkmanager sensors"
|
|
|
|
RDEPEND="=mate-base/mate-applets-${MATE_BRANCH}*
|
|
appindicator? ( =mate-extra/mate-indicator-applet-${MATE_BRANCH}* )
|
|
networkmanager? ( gnome-extra/nm-applet )
|
|
sensors? ( =mate-extra/mate-sensors-applet-${MATE_BRANCH}* )
|
|
"
|