1 |
ulm 10/01/31 16:08:08 |
2 |
|
3 |
Modified: ChangeLog |
4 |
Added: zile-2.3.14-r1.ebuild |
5 |
Removed: zile-2.3.9.ebuild |
6 |
Log: |
7 |
Add prefix keywords, change EAPI to 3. Remove old. |
8 |
(Portage version: 2.2_rc62/cvs/Linux i686) |
9 |
|
10 |
Revision Changes Path |
11 |
1.112 app-editors/zile/ChangeLog |
12 |
|
13 |
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/zile/ChangeLog?rev=1.112&view=markup |
14 |
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/zile/ChangeLog?rev=1.112&content-type=text/plain |
15 |
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/zile/ChangeLog?r1=1.111&r2=1.112 |
16 |
|
17 |
Index: ChangeLog |
18 |
=================================================================== |
19 |
RCS file: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v |
20 |
retrieving revision 1.111 |
21 |
retrieving revision 1.112 |
22 |
diff -u -r1.111 -r1.112 |
23 |
--- ChangeLog 27 Dec 2009 16:42:23 -0000 1.111 |
24 |
+++ ChangeLog 31 Jan 2010 16:08:07 -0000 1.112 |
25 |
@@ -1,6 +1,12 @@ |
26 |
# ChangeLog for app-editors/zile |
27 |
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 |
28 |
-# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.111 2009/12/27 16:42:23 ulm Exp $ |
29 |
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 |
30 |
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.112 2010/01/31 16:08:07 ulm Exp $ |
31 |
+ |
32 |
+*zile-2.3.14-r1 (31 Jan 2010) |
33 |
+ |
34 |
+ 31 Jan 2010; Ulrich Mueller <ulm@g.o> -zile-2.3.9.ebuild, |
35 |
+ +zile-2.3.14-r1.ebuild: |
36 |
+ Add prefix keywords, change EAPI to 3. Remove old. |
37 |
|
38 |
27 Dec 2009; Ulrich Mueller <ulm@g.o> zile-2.3.13.ebuild, |
39 |
zile-2.3.14.ebuild: |
40 |
|
41 |
|
42 |
|
43 |
1.1 app-editors/zile/zile-2.3.14-r1.ebuild |
44 |
|
45 |
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/zile/zile-2.3.14-r1.ebuild?rev=1.1&view=markup |
46 |
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/zile/zile-2.3.14-r1.ebuild?rev=1.1&content-type=text/plain |
47 |
|
48 |
Index: zile-2.3.14-r1.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.14-r1.ebuild,v 1.1 2010/01/31 16:08:07 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 |
sys-apps/help2man |
68 |
test? ( valgrind? ( dev-util/valgrind ) )" |
69 |
|
70 |
src_configure() { |
71 |
econf $(use test && use_with valgrind || echo "--without-valgrind") |
72 |
} |
73 |
|
74 |
src_install() { |
75 |
emake DESTDIR="${D}" install || die |
76 |
|
77 |
# FAQ is installed by the build system in /usr/share/zile |
78 |
dodoc AUTHORS BUGS NEWS README THANKS || die |
79 |
|
80 |
# Zile should never install charset.alias (even on non-glibc arches) |
81 |
rm -f "${ED}"/usr/lib/charset.alias |
82 |
} |
83 |
|
84 |
pkg_postinst() { |
85 |
if use livecd; then |
86 |
[ -e "${EROOT}"/usr/bin/emacs ] || ln -s zile "${EROOT}"/usr/bin/emacs |
87 |
fi |
88 |
} |