Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/tea: tea-33.1.0.ebuild ChangeLog tea-32.0.2.ebuild
Date: Fri, 01 Jun 2012 15:44:45
Message-Id: 20120601154430.158A02004B@flycatcher.gentoo.org
1 kensington 12/06/01 15:44:30
2
3 Modified: ChangeLog
4 Added: tea-33.1.0.ebuild
5 Removed: tea-32.0.2.ebuild
6 Log:
7 Version bump, remove old.
8
9 (Portage version: 2.1.10.63/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.57 app-editors/tea/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/ChangeLog?rev=1.57&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/ChangeLog?rev=1.57&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/ChangeLog?r1=1.56&r2=1.57
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v
21 retrieving revision 1.56
22 retrieving revision 1.57
23 diff -u -r1.56 -r1.57
24 --- ChangeLog 2 May 2012 23:25:39 -0000 1.56
25 +++ ChangeLog 1 Jun 2012 15:44:29 -0000 1.57
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-editors/tea
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.56 2012/05/02 23:25:39 pesa Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.57 2012/06/01 15:44:29 kensington Exp $
31 +
32 +*tea-33.1.0 (01 Jun 2012)
33 +
34 + 01 Jun 2012; Michael Palimaka <kensington@g.o> +tea-33.1.0.ebuild,
35 + -tea-32.0.2.ebuild:
36 + Version bump, remove old.
37
38 02 May 2012; Davide Pesavento <pesa@g.o> tea-32.0.2.ebuild:
39 Migrate to virtual/pkgconfig.
40
41
42
43 1.1 app-editors/tea/tea-33.1.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/tea-33.1.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/tea-33.1.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tea-33.1.0.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-33.1.0.ebuild,v 1.1 2012/06/01 15:44:29 kensington Exp $
53
54 EAPI=4
55 LANGS="de fr ru"
56
57 inherit eutils qt4-r2
58
59 DESCRIPTION="Small, lightweight Qt text editor"
60 HOMEPAGE="http://tea-editor.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/tea-editor/${P}.tar.bz2"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
66 IUSE="aspell hunspell"
67
68 RDEPEND="
69 sys-libs/zlib
70 x11-libs/qt-core:4
71 x11-libs/qt-gui:4
72 aspell? ( app-text/aspell )
73 hunspell? ( app-text/hunspell )
74 "
75 DEPEND="${RDEPEND}
76 hunspell? ( virtual/pkgconfig )
77 "
78
79 DOCS="AUTHORS ChangeLog NEWS TODO"
80
81 src_configure() {
82 eqmake4 src.pro \
83 PREFIX="${EPREFIX}/usr/bin" \
84 USE_ASPELL=$(use aspell && echo true || echo false) \
85 USE_HUNSPELL=$(use hunspell && echo true || echo false)
86 }
87
88 src_install() {
89 qt4-r2_src_install
90
91 newicon icons/tea_icon_v2.png ${PN}.png
92 make_desktop_entry ${PN} Tea ${PN}
93
94 # translations
95 insinto /usr/share/qt4/translations
96 local lang
97 for lang in ${LANGS}; do
98 if use linguas_${lang}; then
99 doins translations/${PN}_${lang}.qm
100 fi
101 done
102
103 # docs
104 dohtml manuals/en.html
105 if use linguas_ru; then
106 dodoc NEWS-RU
107 dohtml manuals/ru.html
108 fi
109 }