diff options
author | 2017-09-10 01:55:46 +1000 | |
---|---|---|
committer | 2017-09-10 01:55:53 +1000 | |
commit | 0806fa610f37ceec64db97c9fd2be386fede6f0c (patch) | |
tree | 362e8d6511782a3cf066f0251361fc547aeeec33 /app-editors/focuswriter/focuswriter-1.6.7.ebuild | |
parent | profiles: mask app-text/kding for removal (diff) | |
download | gentoo-0806fa610f37ceec64db97c9fd2be386fede6f0c.tar.gz gentoo-0806fa610f37ceec64db97c9fd2be386fede6f0c.tar.bz2 gentoo-0806fa610f37ceec64db97c9fd2be386fede6f0c.zip |
app-editors/focuswriter: version bump 1.6.7
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'app-editors/focuswriter/focuswriter-1.6.7.ebuild')
-rw-r--r-- | app-editors/focuswriter/focuswriter-1.6.7.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app-editors/focuswriter/focuswriter-1.6.7.ebuild b/app-editors/focuswriter/focuswriter-1.6.7.ebuild new file mode 100644 index 000000000000..00b883cea9f2 --- /dev/null +++ b/app-editors/focuswriter/focuswriter-1.6.7.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils qmake-utils xdg-utils + +DESCRIPTION="A fullscreen and distraction-free word processor" +HOMEPAGE="https://gottcode.org/focuswriter/" +SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2" + +LICENSE="LGPL-3 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + app-text/hunspell:= + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5 + dev-qt/qtprintsupport:5 + dev-qt/qtsingleapplication[qt5,X] + dev-qt/qtwidgets:5 + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 + dev-qt/qtconcurrent:5 + virtual/pkgconfig +" + +DOCS=( ChangeLog CREDITS NEWS README ) + +PATCHES=( "${FILESDIR}/${PN}-1.6.0-unbundle-qtsingleapplication.patch" ) + +src_configure() { + eqmake5 PREFIX="${EPREFIX}/usr" +} + +src_install() { + emake INSTALL_ROOT="${D}" install + einstalldocs +} + +pkg_postinst() { + gnome2_icon_cache_update + xdg_desktop_database_update +} + +pkg_postrm() { + gnome2_icon_cache_update + xdg_desktop_database_update +} |