commit: 8a65a36fd6655f65e3bd0926495964315fbe51b1 Author: Chris Mayo <aklhfex <AT> gmail <DOT> com> AuthorDate: Tue Jun 20 18:16:33 2017 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Sat Jun 24 03:47:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a65a36f
app-text/kchmviewer: Fix icon and desktop entry not installed Add missing eutils eclass. Also: - Update HOMEPAGE - Remove sed of desktop entry, trailing semi-colons now optional - Use xdg-utils instead of fdo-mime Package-Manager: Portage-2.3.6, Repoman-2.3.2 app-text/kchmviewer/kchmviewer-7.7-r1.ebuild | 53 ++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/app-text/kchmviewer/kchmviewer-7.7-r1.ebuild b/app-text/kchmviewer/kchmviewer-7.7-r1.ebuild new file mode 100644 index 00000000000..571fac8797d --- /dev/null +++ b/app-text/kchmviewer/kchmviewer-7.7-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils qmake-utils xdg-utils + +DESCRIPTION="Feature rich chm file viewer, based on Qt" +HOMEPAGE="https://www.ulduzsoft.com/kchmviewer/" +SRC_URI="mirror://sourceforge/kchmviewer/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-libs/chmlib + dev-libs/libzip:= + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtprintsupport:5 + dev-qt/qtwebkit:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-force-qtwebkit.patch" + "${FILESDIR}/${P}-underlinking.patch" +) + +src_configure() { + eqmake5 +} + +src_install() { + dodoc ChangeLog DBUS-bindings FAQ README + doicon packages/kchmviewer.png + dobin bin/kchmviewer + domenu packages/kchmviewer.desktop +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}
