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.4.3.ebuild
Date: Thu, 22 Dec 2011 11:11:03
Message-Id: 20111222111049.77C3E2004B@flycatcher.gentoo.org
1 ulm 11/12/22 11:10:49
2
3 Modified: ChangeLog
4 Added: zile-2.4.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.160 app-editors/zile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/ChangeLog?rev=1.160&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/ChangeLog?rev=1.160&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/ChangeLog?r1=1.159&r2=1.160
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v
20 retrieving revision 1.159
21 retrieving revision 1.160
22 diff -u -r1.159 -r1.160
23 --- ChangeLog 7 Dec 2011 07:36:33 -0000 1.159
24 +++ ChangeLog 22 Dec 2011 11:10:49 -0000 1.160
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-editors/zile
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.159 2011/12/07 07:36:33 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.160 2011/12/22 11:10:49 ulm Exp $
30 +
31 +*zile-2.4.3 (22 Dec 2011)
32 +
33 + 22 Dec 2011; Ulrich Mueller <ulm@g.o> +zile-2.4.3.ebuild:
34 + Version bump.
35
36 07 Dec 2011; Pawel Hajdan jr <phajdan.jr@g.o> zile-2.4.2.ebuild:
37 x86 stable wrt bug #391699
38
39
40
41 1.1 app-editors/zile/zile-2.4.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/zile-2.4.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zile/zile-2.4.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: zile-2.4.3.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.3.ebuild,v 1.1 2011/12/22 11:10:49 ulm Exp $
51
52 EAPI=4
53
54 DESCRIPTION="Zile is a small Emacs clone"
55 HOMEPAGE="http://www.gnu.org/software/zile/"
56 SRC_URI="mirror://gnu/zile/${P}.tar.gz"
57
58 LICENSE="GPL-3"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
61 IUSE="acl test"
62
63 RDEPEND="dev-libs/boehm-gc
64 sys-libs/ncurses
65 acl? ( virtual/acl )"
66
67 DEPEND="${RDEPEND}"
68
69 src_configure() {
70 econf \
71 --docdir="${EPREFIX}"/usr/share/doc/${PF} \
72 --disable-silent-rules \
73 $(use_enable acl)
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install
78
79 # AUTHORS, FAQ, and NEWS are installed by the build system
80 dodoc README THANKS
81
82 # Zile should never install charset.alias (even on non-glibc arches)
83 rm -f "${ED}"/usr/lib/charset.alias
84 }