diff options
author | Johannes Huber <johu@gentoo.org> | 2012-01-21 22:08:26 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-01-21 22:08:26 +0000 |
commit | 12800578917508e6a960b072a203e12dfc83e778 (patch) | |
tree | e89b60f1cc42ed48bab2d65cbb12357d2fa79453 /app-editors | |
parent | Version bump (bug #398481), EAPI 4. (diff) | |
download | gentoo-2-12800578917508e6a960b072a203e12dfc83e778.tar.gz gentoo-2-12800578917508e6a960b072a203e12dfc83e778.tar.bz2 gentoo-2-12800578917508e6a960b072a203e12dfc83e778.zip |
Version bump wrt bug #399399. Thanks to kensington <gentoo@scribeofthenile.com>. Fixes also bug #370113.
(Portage version: 2.2.0_alpha84/cvs/Linux i686)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/tea/ChangeLog | 11 | ||||
-rw-r--r-- | app-editors/tea/tea-28.1.2.ebuild | 48 | ||||
-rw-r--r-- | app-editors/tea/tea-31.2.0.ebuild (renamed from app-editors/tea/tea-27.0.0.ebuild) | 20 |
3 files changed, 19 insertions, 60 deletions
diff --git a/app-editors/tea/ChangeLog b/app-editors/tea/ChangeLog index a700af36ad77..5aa1578fbc39 100644 --- a/app-editors/tea/ChangeLog +++ b/app-editors/tea/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-editors/tea -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.50 2010/10/06 20:02:57 chiiph Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.51 2012/01/21 22:08:26 johu Exp $ + +*tea-31.2.0 (21 Jan 2012) + + 21 Jan 2012; Johannes Huber <johu@gentoo.org> +tea-31.2.0.ebuild, + -tea-27.0.0.ebuild, -tea-28.1.2.ebuild: + Version bump wrt bug #399399. Thanks to kensington + <gentoo@scribeofthenile.com>. Fixes also bug #370113. *tea-28.1.2 (06 Oct 2010) diff --git a/app-editors/tea/tea-28.1.2.ebuild b/app-editors/tea/tea-28.1.2.ebuild deleted file mode 100644 index 8a303e71cce3..000000000000 --- a/app-editors/tea/tea-28.1.2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-28.1.2.ebuild,v 1.1 2010/10/06 20:02:57 chiiph Exp $ - -EAPI="2" -inherit eutils qt4-r2 - -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 - dodoc AUTHORS ChangeLog NEWS NEWS-RU TODO || die - doicon icons/tea_icon_v2.png || die - - make_desktop_entry tea Tea tea_icon_v2 Utility -} diff --git a/app-editors/tea/tea-27.0.0.ebuild b/app-editors/tea/tea-31.2.0.ebuild index 502cfcb8fc76..89d701898dd5 100644 --- a/app-editors/tea/tea-27.0.0.ebuild +++ b/app-editors/tea/tea-31.2.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-27.0.0.ebuild,v 1.1 2010/02/27 19:52:06 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-31.2.0.ebuild,v 1.1 2012/01/21 22:08:26 johu Exp $ -EAPI="2" +EAPI=4 inherit eutils qt4-r2 DESCRIPTION="Small, lightweight Qt text editor" @@ -14,13 +14,13 @@ SLOT="0" KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd" IUSE="aspell hunspell" -DEPEND="x11-libs/qt-core:4 +RDEPEND="sys-libs/zlib + 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 )" +DEPEND="${RDEPEND} + hunspell? ( dev-util/pkgconfig )" src_configure() { local myopts @@ -40,9 +40,9 @@ src_configure() { } src_install() { - dobin bin/tea || die - dodoc AUTHORS ChangeLog NEWS NEWS-RU TODO || die - doicon icons/tea_icon_v2.png || die + dobin bin/tea + dodoc AUTHORS ChangeLog NEWS NEWS-RU TODO + doicon icons/tea_icon_v2.png make_desktop_entry tea Tea tea_icon_v2 Utility } |