# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit cmake xdg-utils 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="Lomiri desktop session definition." HOMEPAGE="https://gitlab.com/ubports/development/core/${PN}" LICENSE="LGPL-3" SLOT="0" RESTRICT="test" DEPEND="" RDEPEND=" ${DEPEND} lomiri-base/lomiri sys-fs/inotify-tools " BDEPEND=" dev-build/cmake dev-build/cmake-extras dev-build/samurai " PATCHES=( "${FILESDIR}"/001-cmake_fix_quality.patch ) src_configure() { local mycmakeargs=( -DENABLE_TOUCH_SESSION="OFF" ) cmake_src_configure } pkg_postinst() { xdg_desktop_database_update } pkg_postrm() { xdg_desktop_database_update }