Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/zile/
Date: Sat, 01 Jul 2017 08:36:42
Message-Id: 1498898110.2877a158f82d6c58ff83160b7b099ae5f78d8e47.ulm@gentoo
1 commit: 2877a158f82d6c58ff83160b7b099ae5f78d8e47
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 1 07:48:40 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 1 08:35:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2877a158
7
8 app-editors/zile: Version bump.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-editors/zile/Manifest | 1 +
13 app-editors/zile/zile-2.4.13.ebuild | 38 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/app-editors/zile/Manifest b/app-editors/zile/Manifest
17 index 039675d7d34..f738f84a11e 100644
18 --- a/app-editors/zile/Manifest
19 +++ b/app-editors/zile/Manifest
20 @@ -1,2 +1,3 @@
21 DIST zile-2.3.24.tar.gz 953962 SHA256 218bb2af414c6a168101656631a5b2da92f20a965895e1006658cc658b0b7e89 SHA512 8361f42436ae9ca150f09d830096b7a3fb0089d58bffe5ad7538b5ec5cd4e0e50085213e938db1a95e2922db845d1d2f36841a65fe1b9b72f60cd930dd8f09b9 WHIRLPOOL 37aae22305abdc2c2b86c8f6b43dcb7621464213ac375ec2fde767d99f79ddba08216c392c5500a71175f30762fe57e786f94305ff03947e413d5291cfafa934
22 DIST zile-2.4.11.tar.gz 1293707 SHA256 1fd27bbddc61491b1fbb29a345d0d344734aa9e80cfa07b02892eedf831fa9cc SHA512 dbcbae98d8b9fc7ea71abc8ad0c4248edf1498a731172e800dd4b1fd598597924cc61e24fbfce5eb44dd2b3a0b2aea416c6373843a450e19cc8c98aa83d6ae0e WHIRLPOOL c39cafe9b4409580656c29df78e8a4aeb37487b93bb01e357c964866f27207ef2811672967c7da7e2ad9bdfb2d47ea09168c611d89757b000530dbb60d5785d9
23 +DIST zile-2.4.13.tar.gz 1296379 SHA256 c795f369ea432219c21bf59ffc9322fd5f221217021a8fbaa6f9fed91778ac0e SHA512 ada0eabe6285894ab4c25fa71c3ca6f07f0df2d36ad64f92037cb1b02d7b898dbd64fa47ef96800b7d995a5958ddec525e0d849a427e1f9bf14da944a4c30e88 WHIRLPOOL a23e3a68f7895a15ef19480c2c6f30330f7b4ee719fdc8523fed16e6a387b965ccdca5afb5c17cf4bd63b5c935c53ef2c320f083598bd75bfbf9c9721851cf98
24
25 diff --git a/app-editors/zile/zile-2.4.13.ebuild b/app-editors/zile/zile-2.4.13.ebuild
26 new file mode 100644
27 index 00000000000..a7de10e0675
28 --- /dev/null
29 +++ b/app-editors/zile/zile-2.4.13.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="Zile is a small Emacs clone"
37 +HOMEPAGE="https://www.gnu.org/software/zile/"
38 +SRC_URI="mirror://gnu/zile/${P}.tar.gz"
39 +
40 +LICENSE="GPL-3+"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
43 +IUSE="acl test"
44 +
45 +RDEPEND=">=dev-libs/boehm-gc-7.2
46 + sys-libs/ncurses:0
47 + acl? ( virtual/acl )"
48 +
49 +DEPEND="${RDEPEND}
50 + test? ( dev-lang/perl )"
51 +
52 +QA_AM_MAINTAINER_MODE=".*help2man.*" #450278
53 +
54 +src_configure() {
55 + econf \
56 + --docdir="${EPREFIX}"/usr/share/doc/${PF} \
57 + $(use_enable acl)
58 +}
59 +
60 +src_install() {
61 + emake DESTDIR="${D}" install
62 +
63 + # AUTHORS, FAQ, and NEWS are installed by the build system
64 + dodoc README THANKS
65 +
66 + # Zile should never install charset.alias (even on non-glibc arches)
67 + rm -f "${ED}"/usr/lib/charset.alias
68 +}