# Copyright 1999-2025 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" RESTRICT="test" src_install() { insinto /usr/share/icons doins -r suru } # update the icon cache after installing a new icon pkg_postinst() { xdg_icon_cache_update } pkg_postrm() { xdg_icon_cache_update }