# Copyright 2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit savedconfig if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://gitee.com/guyuming76/rfm" inherit git-r3 fi DESCRIPTION="suckless style file manager" HOMEPAGE="https://gitee.com/guyuming76/rfm/" LICENSE="MIT" KEYWORDS="amd64" SLOT="0" IUSE="+wayland +locate" EGIT_SUBMODULES=() RDEPEND=" >=dev-libs/glib-2.74 " DEPEND="${RDEPEND}" BDEPEND=" virtual/pkgconfig x11-libs/gtk+:3[wayland?] app-text/cmark " RDEPEND=" locate? ( sys-apps/plocate ) dev-vcs/git " src_prepare() { restore_config config.h default } src_configure() { sed -i "s:/local::g" config.mk || die } src_install() { export CalledByEbuild="YES" default save_config config.h insinto /usr/share/applications doins rfm.desktop } pkg_postinst() { update-desktop-database } pkg_postrm() { update-desktop-database }