diff options
author | Michael Palimaka <kensington@gentoo.org> | 2018-06-30 12:11:25 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2018-06-30 12:11:40 +1000 |
commit | c759c5a9f36433e44fec1635e1612d294c5199d1 (patch) | |
tree | abc0c5051871b91dcb76f68a4296a43a213b0eb8 /app-editors/focuswriter | |
parent | net-misc/cmst: remove 2017.09.19 (diff) | |
download | gentoo-c759c5a9f36433e44fec1635e1612d294c5199d1.tar.gz gentoo-c759c5a9f36433e44fec1635e1612d294c5199d1.tar.bz2 gentoo-c759c5a9f36433e44fec1635e1612d294c5199d1.zip |
app-editors/focuswriter: version bump 1.6.13
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-editors/focuswriter')
-rw-r--r-- | app-editors/focuswriter/Manifest | 1 | ||||
-rw-r--r-- | app-editors/focuswriter/focuswriter-1.6.13.ebuild | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/app-editors/focuswriter/Manifest b/app-editors/focuswriter/Manifest index c3ec35a035ab..a66a902870ad 100644 --- a/app-editors/focuswriter/Manifest +++ b/app-editors/focuswriter/Manifest @@ -1 +1,2 @@ DIST focuswriter-1.6.10-src.tar.bz2 10202594 BLAKE2B d7b59dc2c37d87ed0d1e58358906a9fef6f14a339e12a50980d17cdbed043f604bb355edca956af61b5fcaa78f68eb35b54ef85fc08dfa00dfa747893d6c1200 SHA512 8c12481af77fa4353840f22a6aa54c5264041afc141d9746e097e42171a9f274663940fc0c5e5e2c91ef677190c682a195cb775199d4b8cc2b1ad040542e2e61 +DIST focuswriter-1.6.13-src.tar.bz2 10342493 BLAKE2B 11086bf7d35cc392169e7b6de57ea0b65c919bef0d845946893641f705ba0522bdef7244f4035104188d3fdf0dd3b6ad30ed6bf347b5ce8c422d7eea6c6dc714 SHA512 d78719d5a1e25afec8035759d0ebff17728e856fe346d4d8fefd38a15eea3476eb1c6e2aca30955ac148fadd4701a9c4a83399baffe93239a18b93854fab9858 diff --git a/app-editors/focuswriter/focuswriter-1.6.13.ebuild b/app-editors/focuswriter/focuswriter-1.6.13.ebuild new file mode 100644 index 000000000000..f61c59e9ba31 --- /dev/null +++ b/app-editors/focuswriter/focuswriter-1.6.13.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2018 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="" + +# drop qtcore subslot when minimal Qt is 5.10 +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 +} |