Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/focuswriter/
Date: Sat, 09 Sep 2017 15:56:05
Message-Id: 1504972553.0806fa610f37ceec64db97c9fd2be386fede6f0c.kensington@gentoo
1 commit: 0806fa610f37ceec64db97c9fd2be386fede6f0c
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 9 15:55:46 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 9 15:55:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0806fa61
7
8 app-editors/focuswriter: version bump 1.6.7
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 app-editors/focuswriter/Manifest | 1 +
13 app-editors/focuswriter/focuswriter-1.6.7.ebuild | 54 ++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/app-editors/focuswriter/Manifest b/app-editors/focuswriter/Manifest
17 index 4a1b9f10637..770181511d7 100644
18 --- a/app-editors/focuswriter/Manifest
19 +++ b/app-editors/focuswriter/Manifest
20 @@ -1,2 +1,3 @@
21 DIST focuswriter-1.6.5-src.tar.bz2 10194695 SHA256 48e949986a65bc51f46f10c075de2904b2e1feb0e1c74c0a8efe99cd8c2de0ce SHA512 a15024bc94f0212db2ec4f8d88b942fc3640b2917f130b1fbfb04ab616ed4d10baa11f9cab8d27a8fc40150bfa3e25d3afe1d76581dbe96a3cd6d62530207e12 WHIRLPOOL acb8fb4cc802a4f12758d02250fb14ef9b1eef4dad5aa98219c3a985f5df56c9fb780f7668a52e4ef7944b5e153386b00aff86c0e8e6161a99aa2bbf818d92b0
22 DIST focuswriter-1.6.6-src.tar.bz2 10195488 SHA256 472e78de5443f52b3fbad0be0096b3eb5425e2719813b75ce28aa2c8d9b6340a SHA512 d4faae8477080e3898bad144e154c4c43232befe0c2ee90643a816cbb847d3eb25ed8f6fe916cafa5d445c4b3483e880f84015f952f4606bc01f595aa01e113a WHIRLPOOL 0570009d2240c42c128ecd35274bd876ff026b6f9a2abb6d56aa686fadc4f1aebd8c2e637ae6574a377e501e406c19c34088667c34cf8c76a37400c28c1ddae7
23 +DIST focuswriter-1.6.7-src.tar.bz2 10196583 SHA256 bf78e596d7ed9de774bef5bbe75f1f0a01d626198fce6c8062a679936dfc3883 SHA512 d33c66881b1065aa9812dae14a5fe2a2850ce1c50f4b38e028bcd3f5a4bb1fd489705b0272e3233f3db468b262daefbd906025126f792d04af41722cde2c7bf5 WHIRLPOOL 32f19b772f069907cfefa69e2d0c1b633392d47a852cda3f811622ef24ec4e4d59270468a87bdc28f022453b3ed7eba86d4749882defae126ccae527ae0926eb
24
25 diff --git a/app-editors/focuswriter/focuswriter-1.6.7.ebuild b/app-editors/focuswriter/focuswriter-1.6.7.ebuild
26 new file mode 100644
27 index 00000000000..00b883cea9f
28 --- /dev/null
29 +++ b/app-editors/focuswriter/focuswriter-1.6.7.ebuild
30 @@ -0,0 +1,54 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit gnome2-utils qmake-utils xdg-utils
37 +
38 +DESCRIPTION="A fullscreen and distraction-free word processor"
39 +HOMEPAGE="https://gottcode.org/focuswriter/"
40 +SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
41 +
42 +LICENSE="LGPL-3 GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + app-text/hunspell:=
49 + dev-qt/qtcore:5
50 + dev-qt/qtgui:5
51 + dev-qt/qtmultimedia:5
52 + dev-qt/qtprintsupport:5
53 + dev-qt/qtsingleapplication[qt5,X]
54 + dev-qt/qtwidgets:5
55 + sys-libs/zlib
56 +"
57 +DEPEND="${RDEPEND}
58 + dev-qt/linguist-tools:5
59 + dev-qt/qtconcurrent:5
60 + virtual/pkgconfig
61 +"
62 +
63 +DOCS=( ChangeLog CREDITS NEWS README )
64 +
65 +PATCHES=( "${FILESDIR}/${PN}-1.6.0-unbundle-qtsingleapplication.patch" )
66 +
67 +src_configure() {
68 + eqmake5 PREFIX="${EPREFIX}/usr"
69 +}
70 +
71 +src_install() {
72 + emake INSTALL_ROOT="${D}" install
73 + einstalldocs
74 +}
75 +
76 +pkg_postinst() {
77 + gnome2_icon_cache_update
78 + xdg_desktop_database_update
79 +}
80 +
81 +pkg_postrm() {
82 + gnome2_icon_cache_update
83 + xdg_desktop_database_update
84 +}