diff options
author | Peter Weller <welp@gentoo.org> | 2008-01-02 11:07:42 +0000 |
---|---|---|
committer | Peter Weller <welp@gentoo.org> | 2008-01-02 11:07:42 +0000 |
commit | d166c5c6cb34cb338f00645b5fcdf99bbf02899f (patch) | |
tree | 2b28974f3e028e407d62defc4b087dfac3cda287 /app-editors/tea | |
parent | Re-add ~ia64 (diff) | |
download | gentoo-2-d166c5c6cb34cb338f00645b5fcdf99bbf02899f.tar.gz gentoo-2-d166c5c6cb34cb338f00645b5fcdf99bbf02899f.tar.bz2 gentoo-2-d166c5c6cb34cb338f00645b5fcdf99bbf02899f.zip |
Bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-editors/tea')
-rw-r--r-- | app-editors/tea/ChangeLog | 9 | ||||
-rw-r--r-- | app-editors/tea/files/digest-tea-17.5.0 | 3 | ||||
-rw-r--r-- | app-editors/tea/tea-17.5.0.ebuild | 62 |
3 files changed, 72 insertions, 2 deletions
diff --git a/app-editors/tea/ChangeLog b/app-editors/tea/ChangeLog index 75d77060dcd1..4379e5812359 100644 --- a/app-editors/tea/ChangeLog +++ b/app-editors/tea/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/tea -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.27 2007/12/30 12:19:24 drac Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.28 2008/01/02 11:07:41 welp Exp $ + +*tea-17.5.0 (02 Jan 2008) + + 02 Jan 2008; Peter Weller <welp@gentoo.org> +tea-17.5.0.ebuild: + Bump 30 Dec 2007; Samuli Suominen <drac@gentoo.org> -files/tea_icon_v2.png, -tea-16.1.1.ebuild, -tea-16.1.1-r1.ebuild, -tea-17.0.0.ebuild, diff --git a/app-editors/tea/files/digest-tea-17.5.0 b/app-editors/tea/files/digest-tea-17.5.0 new file mode 100644 index 000000000000..581868cae6c7 --- /dev/null +++ b/app-editors/tea/files/digest-tea-17.5.0 @@ -0,0 +1,3 @@ +MD5 85d74efacdeea678e93fdaa1aa270f0c tea-17.5.0.tar.bz2 453318 +RMD160 6bf9ac483aea02e0678ad8c6a0ed9069f85264bd tea-17.5.0.tar.bz2 453318 +SHA256 52065ec87cbdadeaf0bdc2c0d9d03a9e894e407b024587f2cc92512685826530 tea-17.5.0.tar.bz2 453318 diff --git a/app-editors/tea/tea-17.5.0.ebuild b/app-editors/tea/tea-17.5.0.ebuild new file mode 100644 index 000000000000..81dfbdaa934d --- /dev/null +++ b/app-editors/tea/tea-17.5.0.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-17.5.0.ebuild,v 1.1 2008/01/02 11:07:41 welp Exp $ + +inherit eutils + +DESCRIPTION="Small, lightweight GTK+ text editor" +HOMEPAGE="http://tea-editor.sourceforge.net/" +SRC_URI="mirror://sourceforge/tea-editor/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd" +IUSE="enchant gnome hacking ipv6 spell" + +RDEPEND="x11-libs/gtk+ + x11-libs/libX11 + gnome? ( =x11-libs/gtksourceview-1* + gnome-base/gnome-vfs )" +DEPEND="${RDEPEND} + spell? ( app-text/aspell ) + enchant? ( app-text/enchant ) + dev-util/pkgconfig" + +src_compile() { + local myconf + + if use hacking; then + myconf="${myconf} --enable-hacking" + fi + if ! use gnome; then + myconf="${myconf} --enable-legacy" + fi + if use enchant; then + myconf="${myconf} --enable-enchant" + fi + + econf \ + $(use_enable ipv6) \ + ${myconf} || die "econf failed!" + + emake || die "emake failed!" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed!" + + make_desktop_entry tea Tea /usr/share/tea/pixmaps/tea_icon_v2.png Development + +# insinto /usr/share/doc/tea/ +# doins AUTHORS COPYING NEWS README TODO ChangeLog doc/* + +# insinto /usr/share/pixmaps/ +# doins pixmaps/* +} + +pkg_postinst() { + if use spell ; then + elog "To get full spellchecking functuality, ensure that you install" + elog "the relevant language pack(s)" + fi +} |