| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg
if [[ ${PV} == 9999 ]]; then
KEYWORDS=""
EGIT_REPO_URI="https://gitlab.com/ubports/development/core/${PN}.git"
inherit git-r3
else
KEYWORDS="~amd64"
SRC_URI="https://gitlab.com/ubports/development/core/${PN}/-/archive/${PV}/${P}.tar.gz"
fi
DESCRIPTION="Icon Theme for Lomiri Operating Environment"
HOMEPAGE="https://gitlab.com/ubports/development/core/${PN}"
LICENSE="GPL-3"
SLOT="0"
IUSE="extra"
RESTRICT="binchecks strip test"
RDEPEND="
x11-themes/adwaita-icon-theme
x11-themes/hicolor-icon-theme
extra? ( x11-themes/tangerine-icon-theme )
"
src_install() {
insinto /usr/share/icons
doins -r suru
}
# update the icon cache after installing a new icon
pkg_postinst() {
xdg_pkg_postinst
}
pkg_postrm() {
xdg_pkg_postrm
}
x11-themes/adwaita-icon-theme
x11-themes/hicolor-icon-theme
extra? ( x11-themes/tangerine-icon-theme )