Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/zile: ChangeLog zile-2.3.20.ebuild zile-2.3.18.ebuild
Date: Sat, 09 Oct 2010 17:03:24
Message-Id: 20101009160713.C0F582004C@flycatcher.gentoo.org
1 ulm 10/10/09 16:07:13
2
3 Modified: ChangeLog
4 Added: zile-2.3.20.ebuild
5 Removed: zile-2.3.18.ebuild
6 Log:
7 Version bump. Remove intermediate version.
8
9 (Portage version: 2.1.9.14/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.128 app-editors/zile/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/ChangeLog?rev=1.128&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/ChangeLog?rev=1.128&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/ChangeLog?r1=1.127&r2=1.128
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v
21 retrieving revision 1.127
22 retrieving revision 1.128
23 diff -u -r1.127 -r1.128
24 --- ChangeLog 30 Sep 2010 20:11:16 -0000 1.127
25 +++ ChangeLog 9 Oct 2010 16:06:46 -0000 1.128
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-editors/zile
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.127 2010/09/30 20:11:16 maekke Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.128 2010/10/09 16:06:46 ulm Exp $
31 +
32 +*zile-2.3.20 (09 Oct 2010)
33 +
34 + 09 Oct 2010; Ulrich Mueller <ulm@g.o> -zile-2.3.18.ebuild,
35 + +zile-2.3.20.ebuild:
36 + Version bump. Remove intermediate version.
37
38 30 Sep 2010; Markus Meier <maekke@g.o> zile-2.3.19.ebuild:
39 x86 stable, bug #338725
40
41
42
43 1.1 app-editors/zile/zile-2.3.20.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/zile-2.3.20.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/zile-2.3.20.ebuild?rev=1.1&content-type=text/plain
47
48 Index: zile-2.3.20.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.3.20.ebuild,v 1.1 2010/10/09 16:06:56 ulm Exp $
53
54 EAPI=3
55
56 DESCRIPTION="Zile is a small Emacs clone"
57 HOMEPAGE="http://www.gnu.org/software/zile/"
58 SRC_URI="mirror://gnu/zile/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
63 IUSE="livecd test valgrind"
64
65 RDEPEND="sys-libs/ncurses"
66 DEPEND="${RDEPEND}
67 dev-lang/perl
68 sys-apps/help2man
69 test? ( valgrind? ( dev-util/valgrind ) )"
70
71 src_configure() {
72 econf $(use test && use_with valgrind || echo "--without-valgrind")
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die
77
78 # FAQ is installed by the build system in /usr/share/zile
79 dodoc AUTHORS BUGS NEWS README THANKS || die
80
81 # Zile should never install charset.alias (even on non-glibc arches)
82 rm -f "${ED}"/usr/lib/charset.alias
83 }
84
85 pkg_postinst() {
86 if use livecd; then
87 [ -e "${EROOT}"/usr/bin/emacs ] || ln -s zile "${EROOT}"/usr/bin/emacs
88 fi
89 }