# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit rpm xdg-utils DESCRIPTION="Insync extends Google Drive & OneDrive's web functionality to your desktop by integrating tightly with Linux so you can get work done" HOMEPAGE="https://www.insynchq.com/" SRC_URI="http://s.insynchq.com/builds/insync-${PV}-fc30.x86_64.rpm" RESTRICT="strip" LICENSE="as-is" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND=" >=sys-libs/glibc-2.29 " RDEPEND="${DEPEND}" BDEPEND="" PATCHES=( "${FILESDIR}/insync-3-fix-ca-path.patch" "${FILESDIR}/insync-3-lib64.patch" ) src_unpack() { rpm_src_unpack mkdir -p "${S}" mv "${WORKDIR}"/usr "${S}"/ } src_install() { cp -pPR "${WORKDIR}"/"${P}"/usr/ "${D}"/ || die "Installation failed" mv "${D}"/usr/lib "${D}"/usr/lib64 rm -Rf "${D}"/usr/lib64/.build-id gunzip "${D}"/usr/share/man/man1/insync.1.gz echo "SEARCH_DIRS_MASK=\"/usr/lib*/insync\"" > "${T}/70-${PN}" || die insinto "/etc/revdep-rebuild" && doins "${T}/70-${PN}" || die } pkg_postinst() { xdg_desktop_database_update xdg_mimeinfo_database_update xdg_icon_cache_update } pkg_postrm() { xdg_desktop_database_update xdg_mimeinfo_database_update xdg_icon_cache_update }