Gentoo Archives: gentoo-commits

From: "TomAs Touceda (chiiph)" <chiiph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/tea: ChangeLog tea-28.1.2.ebuild tea-26.0.1.ebuild tea-17.6.3.ebuild
Date: Wed, 06 Oct 2010 20:04:49
Message-Id: 20101006200257.9DE1D20051@flycatcher.gentoo.org
1 chiiph 10/10/06 20:02:57
2
3 Modified: ChangeLog
4 Added: tea-28.1.2.ebuild
5 Removed: tea-26.0.1.ebuild tea-17.6.3.ebuild
6 Log:
7 Version bump, and old version cleanup
8
9 (Portage version: 2.2_rc88/cvs/Linux i686)
10
11 Revision Changes Path
12 1.50 app-editors/tea/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/ChangeLog?rev=1.50&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/ChangeLog?rev=1.50&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/ChangeLog?r1=1.49&r2=1.50
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v
21 retrieving revision 1.49
22 retrieving revision 1.50
23 diff -u -r1.49 -r1.50
24 --- ChangeLog 9 Mar 2010 11:56:06 -0000 1.49
25 +++ ChangeLog 6 Oct 2010 20:02:57 -0000 1.50
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-editors/tea
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.49 2010/03/09 11:56:06 abcd Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.50 2010/10/06 20:02:57 chiiph Exp $
31 +
32 +*tea-28.1.2 (06 Oct 2010)
33 +
34 + 06 Oct 2010; Tomas Touceda <chiiph@g.o> -tea-17.6.3.ebuild,
35 + -tea-26.0.1.ebuild, +tea-28.1.2.ebuild:
36 + Version bump, and old version cleanup
37
38 09 Mar 2010; Jonathan Callen <abcd@g.o> tea-26.0.1.ebuild:
39 QA: When not using an absolute path, you MUST NOT use a file extension
40
41
42
43 1.1 app-editors/tea/tea-28.1.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/tea-28.1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/tea/tea-28.1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tea-28.1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-28.1.2.ebuild,v 1.1 2010/10/06 20:02:57 chiiph Exp $
53
54 EAPI="2"
55 inherit eutils qt4-r2
56
57 DESCRIPTION="Small, lightweight Qt text editor"
58 HOMEPAGE="http://tea-editor.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/tea-editor/${P}.tar.bz2"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
64 IUSE="aspell hunspell"
65
66 DEPEND="x11-libs/qt-core:4
67 x11-libs/qt-gui:4
68 x11-libs/qt-svg:4
69 x11-libs/qt-script:4"
70 RDEPEND="${DEPEND}
71 aspell? ( app-text/aspell )
72 hunspell? ( app-text/hunspell )"
73
74 src_configure() {
75 local myopts
76 if use aspell ; then
77 myopts="USE_ASPELL=true"
78 else
79 myopts="USE_ASPELL=false"
80 fi
81
82 if use hunspell ; then
83 myopts="${myopts} USE_HUNSPELL=true"
84 else
85 myopts="${myopts} USE_HUNSPELL=false"
86 fi
87
88 eqmake4 src.pro PREFIX="/usr/bin" ${myopts}
89 }
90
91 src_install() {
92 dobin bin/tea || die
93 dodoc AUTHORS ChangeLog NEWS NEWS-RU TODO || die
94 doicon icons/tea_icon_v2.png || die
95
96 make_desktop_entry tea Tea tea_icon_v2 Utility
97 }