List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Daniel Pielmeier (billie)" <billie@g.o>
|
|
Subject:
|
gentoo-x86 commit in app-editors/tea: metadata.xml ChangeLog tea-26.0.1.ebuild tea-23.2.0.ebuild tea-22.0.1.ebuild
|
|
Date:
|
Sat, 07 Nov 2009 22:45:41 +0000
|
|
billie 09/11/07 22:45:41
Modified: metadata.xml ChangeLog
Added: tea-26.0.1.ebuild
Removed: tea-23.2.0.ebuild tea-22.0.1.ebuild
Log:
Version bump. Remove old. This release also fixes fix spell automagic.
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.4 app-editors/tea/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/metadata.xml?r1=1.3&r2=1.4
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml 25 Oct 2009 17:35:58 -0000 1.3
+++ metadata.xml 7 Nov 2009 22:45:40 -0000 1.4
@@ -4,14 +4,16 @@
<herd>no-herd</herd>
<maintainer>
<email>maintainer-needed@g.o</email>
- </maintainer>
- <longdescription>
- This is an very small GTK2 text editor. It has lots of extra features
- including syntax hilighting and a built in file manager as well as a
- built in image viewer. It can also read lots of 'other' filetypes.
+ </maintainer>
+ <longdescription>
+ A very small Qt text editor. It has lots of extra features including syntax
+ highlighting and a built in file manager as well as a built in image viewer.
+ It can also read lots of 'other' filetypes.
</longdescription>
<use>
+ <flag name='aspell'>Enable spell checking using aspell</flag>
<flag name='enchant'>Enable spell checking using enchant</flag>
<flag name='hacking'>Enable hacking support</flag>
+ <flag name='hunspell'>Enable spellchecking using hunspell</flag>
</use>
</pkgmetadata>
1.46 app-editors/tea/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 25 Oct 2009 17:35:58 -0000 1.45
+++ ChangeLog 7 Nov 2009 22:45:40 -0000 1.46
@@ -1,6 +1,12 @@
# ChangeLog for app-editors/tea
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.45 2009/10/25 17:35:58 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.46 2009/11/07 22:45:40 billie Exp $
+
+*tea-26.0.1 (07 Nov 2009)
+
+ 07 Nov 2009; Pielmeier Daniel <billie@g.o> -tea-22.0.1.ebuild,
+ -tea-23.2.0.ebuild, +tea-26.0.1.ebuild, metadata.xml:
+ Version bump. Remove old. This release also fixes fix spell automagic.
25 Oct 2009; Torsten Veller <tove@g.o> metadata.xml:
Remove welp from metadata.xml (#141007)
1.1 app-editors/tea/tea-26.0.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/tea-26.0.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/tea-26.0.1.ebuild?rev=1.1&content-type=text/plain
Index: tea-26.0.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-26.0.1.ebuild,v 1.1 2009/11/07 22:45:40 billie Exp $
EAPI="2"
inherit eutils qt4
DESCRIPTION="Small, lightweight Qt text editor"
HOMEPAGE="http://tea-editor.sourceforge.net"
SRC_URI="mirror://sourceforge/tea-editor/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
IUSE="aspell hunspell"
DEPEND="x11-libs/qt-core:4
x11-libs/qt-gui:4
x11-libs/qt-svg:4
x11-libs/qt-script:4"
RDEPEND="${DEPEND}
aspell? ( app-text/aspell )
hunspell? ( app-text/hunspell )"
src_configure() {
local myopts
if use aspell ; then
myopts="USE_ASPELL=true"
else
myopts="USE_ASPELL=false"
fi
if use hunspell ; then
myopts="${myopts} USE_HUNSPELL=true"
else
myopts="${myopts} USE_HUNSPELL=false"
fi
eqmake4 src.pro PREFIX="/usr/bin" ${myopts}
}
src_install() {
dobin bin/tea || die "Couldn't install tea"
dodoc AUTHORS ChangeLog NEWS NEWS-RU TODO
doicon icons/tea_icon_v2.png
make_desktop_entry tea Tea tea_icon_v2.png Utility
}
pkg_postinst() {
if use aspell || use hunspell ; then
elog "To get full spellchecking functuality, ensure that you install"
elog "the relevant language pack(s)"
fi
}
|
|