Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/wily/
Date: Mon, 14 Jan 2019 00:05:03
Message-Id: 1547424293.c03057f4e7641edfdb493ffcae3c451ab153a77d.jer@gentoo
1 commit: c03057f4e7641edfdb493ffcae3c451ab153a77d
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 14 00:04:20 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 14 00:04:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c03057f4
7
8 app-editors/wily: EAPI=7
9
10 Package-Manager: Portage-2.3.55, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 app-editors/wily/wily-1.0-r2.ebuild | 41 +++++++++++++++++++++++++++++++++++++
14 1 file changed, 41 insertions(+)
15
16 diff --git a/app-editors/wily/wily-1.0-r2.ebuild b/app-editors/wily/wily-1.0-r2.ebuild
17 new file mode 100644
18 index 00000000000..0266f79b98e
19 --- /dev/null
20 +++ b/app-editors/wily/wily-1.0-r2.ebuild
21 @@ -0,0 +1,41 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit multilib toolchain-funcs
27 +
28 +MY_P="${P/1.0/9libs}"
29 +
30 +DESCRIPTION="An emulation of ACME, Plan9's hybrid window system, shell and editor"
31 +HOMEPAGE="https://www.netlib.org/research/9libs/"
32 +SRC_URI="${HOMEPAGE}${MY_P}.tar.gz"
33 +
34 +LICENSE="Artistic"
35 +SLOT="0"
36 +KEYWORDS="~x86"
37 +
38 +DEPEND="
39 + dev-libs/9libs[X]
40 +"
41 +RDEPEND="
42 + ${DEPEND}
43 +"
44 +DOCS=(
45 + README
46 +)
47 +S=${WORKDIR}/${MY_P}
48 +
49 +src_configure() {
50 + tc-export CC
51 +
52 + mhw_cv_mod_9libs_lib_path=/usr/$(get_libdir) \
53 + mhw_cv_mod_9libs_inc_path=/usr/include/9libs \
54 + econf
55 +}
56 +
57 +src_install() {
58 + default
59 +
60 + insinto /usr/share/${PN}
61 + doins "${S}"/misc/*
62 +}