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