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