blob: 9fd30e8fefa04a0c0e170b560be1dd4f62a84187 [file] [log] [blame]
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_P="pencil-${PV}"
inherit fdo-mime
DESCRIPTION="A simple GUI prototyping tool to create mockups"
HOMEPAGE="http://pencil.evolus.vn/"
SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="|| ( www-client/firefox www-client/firefox-bin )"
S=${WORKDIR}/${MY_P}
src_prepare() {
# avoid file collisions with media-gfx/pencil
mv usr/bin/{pencil,${PN}} || die
mv usr/share/{pencil,${PN}} || die
mv usr/share/applications/{pencil,${PN}}.desktop || die
sed -e "s/pencil/${PN}/" -i usr/bin/${PN} \
-i usr/share/applications/${PN}.desktop || die
}
src_install() {
insinto /
doins -r usr
newbin "${FILESDIR}"/launcher ${PN}
}
pkg_postinst() {
fdo-mime_desktop_database_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
}