Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/joe/
Date: Mon, 05 Sep 2016 11:31:25
Message-Id: 1473075072.a00d6eae0d7cce010cd969c6dfc54462b4364bb2.polynomial-c@gentoo
1 commit: a00d6eae0d7cce010cd969c6dfc54462b4364bb2
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 11:30:59 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 11:31:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a00d6eae
7
8 app-editors/joe: Bump to version 4.3
9
10 with kind permission from Amynka.
11
12 Package-Manager: portage-2.3.0
13 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
14
15 app-editors/joe/Manifest | 1 +
16 app-editors/joe/joe-4.3.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
17 2 files changed, 40 insertions(+)
18
19 diff --git a/app-editors/joe/Manifest b/app-editors/joe/Manifest
20 index 394e3d9..a1c9c24 100644
21 --- a/app-editors/joe/Manifest
22 +++ b/app-editors/joe/Manifest
23 @@ -1 +1,2 @@
24 DIST joe-4.2.tar.gz 1341048 SHA256 bc5da64bc5683ab7b2962a33214b3537ea17ff6528a3c60ba170359e31e86974 SHA512 7c34f4467d89330ac195cfa76481d9ede4ee3764d0b1b24d091d1e6325bff451d2a9bc9f86a73404c9909587bcbe3e0c14511b739ec121edb7595ea1fcba028f WHIRLPOOL 9dd996e266d96894d8e8b17ab9cadd5eef02568b4778245c9af82f745b288fc1dbb7ee401da2a148a6f5afaf627b91638fad25adafb8c5671576fa38ff31aedc
25 +DIST joe-4.3.tar.gz 1270523 SHA256 985d6a8f943a06e64165996c24d7fecaeae8c59efb52998a49b3fb4b8a3e26e1 SHA512 a711ce129518863856b8f581ac7acdd7661f5e571cb77c5411317e0db0344c9ba44e73ec2ca9a307e639170a7914d53352eebcd00a33c9270809551f12376e69 WHIRLPOOL a09bb8170942c470b7e9d1d43fbba003d7fa3c25f47ee8a6902a249b7cc253d1b7d7a1431b447b0729c51102cb49e241625c7d30bb7b11fc1d30a5e6c9c11cd1
26
27 diff --git a/app-editors/joe/joe-4.3.ebuild b/app-editors/joe/joe-4.3.ebuild
28 new file mode 100644
29 index 00000000..7025172
30 --- /dev/null
31 +++ b/app-editors/joe/joe-4.3.ebuild
32 @@ -0,0 +1,39 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +DESCRIPTION="A free ASCII-Text Screen Editor for UNIX"
40 +HOMEPAGE="https://sourceforge.net/projects/joe-editor/"
41 +SRC_URI="mirror://sourceforge/joe-editor/${P}.tar.gz"
42 +
43 +LICENSE="GPL-1+ CC-BY-3.0"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
46 +IUSE="xterm"
47 +
48 +DEPEND=">=sys-libs/ncurses-5.2-r2"
49 +RDEPEND="xterm? ( >=x11-terms/xterm-239 )"
50 +
51 +DOCS=( README.md NEWS.md docs/hacking.md docs/man.md )
52 +
53 +src_prepare() {
54 + default
55 + # Enable xterm mouse support in the rc files
56 + if use xterm; then
57 + cd "${S}"/rc
58 + for i in *rc*.in; do
59 + sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die "sed failed"
60 + done
61 + fi
62 +}
63 +
64 +pkg_postinst() {
65 + if use xterm; then
66 + elog "To enable full xterm clipboard you need to set the allowWindowOps"
67 + elog "resources to true. This is usually found in /etc/X11/app-defaults/XTerm"
68 + elog "This is false by default due to potential security problems on some"
69 + elog "architectures (see bug #91453)."
70 + fi
71 +}