Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-apps/xedit: ChangeLog xedit-1.1.2.ebuild
Date: Tue, 13 Jan 2009 02:47:51
Message-Id: E1LMZJk-0008Gq-H7@stork.gentoo.org
1 dberkholz 09/01/13 02:47:48
2
3 Modified: ChangeLog
4 Added: xedit-1.1.2.ebuild
5 Log:
6 Bump. Way too many changes for a package that should be dead. Make ispell interface work correctly again. Add perl and "auto tools" modes. Add python mode. Assorted bugfixes.
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)
8
9 Revision Changes Path
10 1.22 x11-apps/xedit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xedit/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xedit/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xedit/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-apps/xedit/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 24 Mar 2008 14:03:05 -0000 1.21
23 +++ ChangeLog 13 Jan 2009 02:47:48 -0000 1.22
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-apps/xedit
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xedit/ChangeLog,v 1.21 2008/03/24 14:03:05 maekke Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xedit/ChangeLog,v 1.22 2009/01/13 02:47:48 dberkholz Exp $
30 +
31 +*xedit-1.1.2 (13 Jan 2009)
32 +
33 + 13 Jan 2009; Donnie Berkholz <dberkholz@g.o>; +xedit-1.1.2.ebuild:
34 + Bump. Way too many changes for a package that should be dead. Make ispell
35 + interface work correctly again. Add perl and "auto tools" modes. Add
36 + python mode. Assorted bugfixes.
37
38 24 Mar 2008; Markus Meier <maekke@g.o> xedit-1.0.2.ebuild:
39 amd64 stable, bug #202087
40
41
42
43 1.1 x11-apps/xedit/xedit-1.1.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xedit/xedit-1.1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xedit/xedit-1.1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xedit-1.1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-apps/xedit/xedit-1.1.2.ebuild,v 1.1 2009/01/13 02:47:48 dberkholz Exp $
53
54 # Must be before x-modular eclass is inherited
55 #SNAPSHOT="yes"
56
57 inherit x-modular
58
59 DESCRIPTION="simple text editor for X"
60 KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="xprint"
62 RDEPEND="x11-libs/libXprintUtil
63 x11-libs/libXaw
64 xprint? ( x11-libs/libXprintUtil )"
65 DEPEND="${RDEPEND}"
66
67 CONFIGURE_OPTIONS="$(use_enable xprint)"
68
69 pkg_setup() {
70 if use xprint && ! built_with_use x11-libs/libXaw xprint; then
71 die "Build x11-libs/libXaw with USE=xprint."
72 fi
73 }
74
75 #src_compile() {
76 # x-modular_src_configure
77 # emake -j1 || die "emake failed"
78 #}