# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit fdo-mime DESCRIPTION="A simple GUI prototyping tool to create mockups" HOMEPAGE="https://github.com/prikhi/pencil" SRC_URI="https://github.com/prikhi/pencil/releases/download/v${PV}/Pencil-${PV}-linux-pkg.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" IUSE="" RDEPEND="|| ( www-client/firefox www-client/firefox-bin )" S=${WORKDIR}/evolus-pencil src_prepare() { mv ${S}/usr/bin/pencil ${S}/usr/bin/${PN} sed -i s/\\/bin\\/pencil/\\/bin\\/${PN}/g ${S}/usr/share/applications/pencil.desktop } src_install() { doins -r usr dobin ${S}/usr/bin/${PN} } pkg_postinst() { fdo-mime_desktop_database_update } pkg_postrm() { fdo-mime_desktop_database_update }