Gentoo Archives: gentoo-commits

From: "Peter Weller (welp)" <welp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/tea: ChangeLog tea-17.5.0.ebuild
Date: Wed, 02 Jan 2008 11:07:50
Message-Id: E1JA1Rm-0003Qt-9X@stork.gentoo.org
1 welp 08/01/02 11:07:42
2
3 Modified: ChangeLog
4 Added: tea-17.5.0.ebuild
5 Log:
6 Bump
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.28 app-editors/tea/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 30 Dec 2007 12:19:24 -0000 1.27
23 +++ ChangeLog 2 Jan 2008 11:07:41 -0000 1.28
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-editors/tea
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.27 2007/12/30 12:19:24 drac Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.28 2008/01/02 11:07:41 welp Exp $
30 +
31 +*tea-17.5.0 (02 Jan 2008)
32 +
33 + 02 Jan 2008; Peter Weller <welp@g.o> +tea-17.5.0.ebuild:
34 + Bump
35
36 30 Dec 2007; Samuli Suominen <drac@g.o> -files/tea_icon_v2.png,
37 -tea-16.1.1.ebuild, -tea-16.1.1-r1.ebuild, -tea-17.0.0.ebuild,
38
39
40
41 1.1 app-editors/tea/tea-17.5.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/tea-17.5.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/tea-17.5.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tea-17.5.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-editors/tea/tea-17.5.0.ebuild,v 1.1 2008/01/02 11:07:41 welp Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Small, lightweight GTK+ text editor"
55 HOMEPAGE="http://tea-editor.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/tea-editor/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
61 IUSE="enchant gnome hacking ipv6 spell"
62
63 RDEPEND="x11-libs/gtk+
64 x11-libs/libX11
65 gnome? ( =x11-libs/gtksourceview-1*
66 gnome-base/gnome-vfs )"
67 DEPEND="${RDEPEND}
68 spell? ( app-text/aspell )
69 enchant? ( app-text/enchant )
70 dev-util/pkgconfig"
71
72 src_compile() {
73 local myconf
74
75 if use hacking; then
76 myconf="${myconf} --enable-hacking"
77 fi
78 if ! use gnome; then
79 myconf="${myconf} --enable-legacy"
80 fi
81 if use enchant; then
82 myconf="${myconf} --enable-enchant"
83 fi
84
85 econf \
86 $(use_enable ipv6) \
87 ${myconf} || die "econf failed!"
88
89 emake || die "emake failed!"
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed!"
94
95 make_desktop_entry tea Tea /usr/share/tea/pixmaps/tea_icon_v2.png Development
96
97 # insinto /usr/share/doc/tea/
98 # doins AUTHORS COPYING NEWS README TODO ChangeLog doc/*
99
100 # insinto /usr/share/pixmaps/
101 # doins pixmaps/*
102 }
103
104 pkg_postinst() {
105 if use spell ; then
106 elog "To get full spellchecking functuality, ensure that you install"
107 elog "the relevant language pack(s)"
108 fi
109 }
110
111
112
113 --
114 gentoo-commits@g.o mailing list