diff options
author | 2016-08-06 04:31:46 +0200 | |
---|---|---|
committer | 2016-08-06 04:31:46 +0200 | |
commit | 93c0401fcbb4e20dfecf72ce255a77e645fa3ba5 (patch) | |
tree | f6258789cb877a3955e69981e9aeb9d421b6337d /app-editors/focuswriter/focuswriter-1.5.7.ebuild | |
parent | www-client/qutebrowser: version bump to 0.8.2 (diff) | |
download | gentoo-93c0401fcbb4e20dfecf72ce255a77e645fa3ba5.tar.gz gentoo-93c0401fcbb4e20dfecf72ce255a77e645fa3ba5.tar.bz2 gentoo-93c0401fcbb4e20dfecf72ce255a77e645fa3ba5.zip |
app-editors/focuswriter: version bump
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-editors/focuswriter/focuswriter-1.5.7.ebuild')
-rw-r--r-- | app-editors/focuswriter/focuswriter-1.5.7.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/app-editors/focuswriter/focuswriter-1.5.7.ebuild b/app-editors/focuswriter/focuswriter-1.5.7.ebuild new file mode 100644 index 000000000000..9a92566fb2a3 --- /dev/null +++ b/app-editors/focuswriter/focuswriter-1.5.7.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit fdo-mime gnome2-utils qmake-utils + +DESCRIPTION="A fullscreen and distraction-free word processor" +HOMEPAGE="http://gottcode.org/focuswriter/" +SRC_URI="http://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/qtconcurrent:5 + virtual/pkgconfig +" + +DOCS=( ChangeLog CREDITS NEWS README ) + +PATCHES=( "${FILESDIR}/${PN}-1.5.6-unbundle-qtsingleapplication.patch" ) + +src_configure() { + eqmake5 PREFIX="${EPREFIX}/usr" +} + +src_install() { + emake INSTALL_ROOT="${D}" install + einstalldocs +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update + fdo-mime_desktop_database_update +} + +pkg_postrm() { + gnome2_icon_cache_update + fdo-mime_desktop_database_update +} |