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/tea/
Date: Tue, 15 Dec 2015 18:07:10
Message-Id: 1450202809.be2a27a2420611603545bbec64fa2b26ab1034e4.kensington@gentoo
1 commit: be2a27a2420611603545bbec64fa2b26ab1034e4
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 15 18:06:01 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 15 18:06:49 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be2a27a2
7
8 app-editors/tea: version bump
9
10 Gentoo-bug: 561080
11
12 Package-Manager: portage-2.2.26
13
14 app-editors/tea/Manifest | 1 +
15 app-editors/tea/tea-41.1.0.ebuild | 57 +++++++++++++++++++++++++++++++++++++++
16 2 files changed, 58 insertions(+)
17
18 diff --git a/app-editors/tea/Manifest b/app-editors/tea/Manifest
19 index 631584c..8f80d50 100644
20 --- a/app-editors/tea/Manifest
21 +++ b/app-editors/tea/Manifest
22 @@ -1,2 +1,3 @@
23 DIST tea-36.0.2.tar.bz2 315046 SHA256 6541b645451de3f6eefce58b55a302224b925bdbdb9efcfa1491bcf867baad6f SHA512 e04df49e8381c69f0e2fb6900d6f095b0eb15bdc2d8fb935230129b2fef7560fd91936d66a2440d1922a6fc6c2e7d07e40fe1106b5cf22dd495bba667cf5def8 WHIRLPOOL 1da79f26126c98876ff6bfef04c799f476a204294466cbd47834748a12e8c59d10f7c2e36d4ebc089fcef21caca1beeab1293acee13da9af341466c117873e1f
24 DIST tea-41.0.0.tar.bz2 381891 SHA256 b20bfe3235a4f405bcd984adfabde2302a15cf8512e19f8b97bc43ce9911632b SHA512 aff52922be7650a23fcafe5a8106d5955bc7c68a901ad6a3982b71196ac8856939d3bc61236babbed21a749c2fc205510ef081ac35d7d33fcf2d2700ebb5cbaf WHIRLPOOL ed913f3fb424e47fbbecab445ccd9c34c9ad66befdda950fee05958459b87efad67cfea37548c5ab8456b849c860f0cd3ef59e386aaa99c01b5041dae02c1afc
25 +DIST tea-41.1.0.tar.bz2 381370 SHA256 65ea128739802b7626a5a59de12b0e885dcef7a83f7bcd06b6d3aea830ed8717 SHA512 a46e0cdfce5c7d453c7783c59ad98b2b029847ddcc8ce0655c6e1ae45825426ac1b271ca7ad90f0219d8f796f507f6bdba0f2c764c563c8c23503b94be817eb7 WHIRLPOOL a3d00f5e42a145be2a7f3bf846832bf2a7e95e957abf4c928118be7607adb57fddfb906fbedaf7fa51665b25629beae0fe5b4db40886f42dfcf5c166e43717b5
26
27 diff --git a/app-editors/tea/tea-41.1.0.ebuild b/app-editors/tea/tea-41.1.0.ebuild
28 new file mode 100644
29 index 0000000..c1f2497
30 --- /dev/null
31 +++ b/app-editors/tea/tea-41.1.0.ebuild
32 @@ -0,0 +1,57 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +PLOCALES="de fr ru"
39 +
40 +inherit eutils l10n qmake-utils
41 +
42 +DESCRIPTION="Small, lightweight Qt text editor"
43 +HOMEPAGE="http://tea.ourproject.org/ http://semiletov.org/tea/"
44 +SRC_URI="http://tea.ourproject.org/dloads/${P}.tar.bz2"
45 +
46 +LICENSE="GPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
49 +IUSE="aspell hunspell"
50 +
51 +RDEPEND="
52 + dev-qt/qtcore:4
53 + dev-qt/qtgui:4
54 + sys-libs/zlib
55 + aspell? ( app-text/aspell )
56 + hunspell? ( app-text/hunspell )
57 +"
58 +DEPEND="${RDEPEND}
59 + hunspell? ( virtual/pkgconfig )
60 +"
61 +
62 +DOCS=( AUTHORS ChangeLog NEWS TODO )
63 +
64 +src_configure() {
65 + eqmake4 src.pro \
66 + $(use aspell || echo CONFIG+=noaspell) \
67 + $(use hunspell || echo CONFIG+=nohunspell)
68 +}
69 +
70 +src_install() {
71 + dobin bin/tea
72 +
73 + newicon icons/tea-icon-v3-01.png ${PN}.png
74 + make_desktop_entry ${PN} 'Tea Editor'
75 +
76 + # translations
77 + insinto /usr/share/qt4/translations
78 + local lang
79 + for lang in $(l10n_get_locales); do
80 + doins translations/${PN}_${lang}.qm
81 + done
82 +
83 + # docs
84 + dohtml manuals/en.html
85 + if use linguas_ru; then
86 + dodoc NEWS-RU
87 + dohtml manuals/ru.html
88 + fi
89 +}