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.6.0.ebuild
Date: Mon, 17 Mar 2008 07:30:09
Message-Id: E1Jb9nK-0006fO-59@stork.gentoo.org
1 welp 08/03/17 07:30:06
2
3 Modified: ChangeLog
4 Added: tea-17.6.0.ebuild
5 Log:
6 Bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.33 app-editors/tea/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 1 Mar 2008 19:03:07 -0000 1.32
23 +++ ChangeLog 17 Mar 2008 07:30:05 -0000 1.33
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.32 2008/03/01 19:03:07 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/tea/ChangeLog,v 1.33 2008/03/17 07:30:05 welp Exp $
29 +
30 +*tea-17.6.0 (17 Mar 2008)
31 +
32 + 17 Mar 2008; Peter Weller <welp@g.o> +tea-17.6.0.ebuild:
33 + Bump
34
35 01 Mar 2008; Raúl Porcel <armin76@g.o> tea-17.5.4.ebuild:
36 x86 stable
37
38
39
40 1.1 app-editors/tea/tea-17.6.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/tea-17.6.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/tea/tea-17.6.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tea-17.6.0.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.6.0.ebuild,v 1.1 2008/03/17 07:30:05 welp Exp $
50
51 inherit autotools 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+-2
63 x11-libs/libX11
64 gnome? ( >=x11-libs/gtksourceview-2
65 gnome-base/gnome-vfs )"
66 DEPEND="${RDEPEND}
67 net-misc/curl
68 spell? ( app-text/aspell )
69 enchant? ( app-text/enchant )
70 dev-util/pkgconfig"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${P}-forced-cflags-and-compiler-warnings.patch
76 eautoconf
77 }
78
79 src_compile() {
80 local myconf
81
82 if use hacking; then
83 myconf="${myconf} --enable-hacking"
84 fi
85 if ! use gnome; then
86 myconf="${myconf} --enable-legacy"
87 fi
88 if use enchant; then
89 myconf="${myconf} --enable-enchant"
90 fi
91
92 econf \
93 $(use_enable ipv6) \
94 ${myconf} || die "econf failed!"
95
96 emake || die "emake failed!"
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die "emake install failed!"
101
102 make_desktop_entry tea Tea /usr/share/tea/pixmaps/tea_icon_v2.png Development
103
104 # insinto /usr/share/doc/tea/
105 # doins AUTHORS COPYING NEWS README TODO ChangeLog doc/*
106
107 # insinto /usr/share/pixmaps/
108 # doins pixmaps/*
109 }
110
111 pkg_postinst() {
112 if use spell ; then
113 elog "To get full spellchecking functuality, ensure that you install"
114 elog "the relevant language pack(s)"
115 fi
116 }
117
118
119
120 --
121 gentoo-commits@l.g.o mailing list