Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/wily/
Date: Tue, 04 Jun 2019 22:00:25
Message-Id: 1559685503.da7ec5f42b0690791b16e085dfd6e039bd483009.asturm@gentoo
1 commit: da7ec5f42b0690791b16e085dfd6e039bd483009
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 4 21:58:23 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 4 21:58:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da7ec5f4
7
8 app-editors/wily: Drop 1.0-r1
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-editors/wily/wily-1.0-r1.ebuild | 38 -------------------------------------
14 1 file changed, 38 deletions(-)
15
16 diff --git a/app-editors/wily/wily-1.0-r1.ebuild b/app-editors/wily/wily-1.0-r1.ebuild
17 deleted file mode 100644
18 index cb3089155b1..00000000000
19 --- a/app-editors/wily/wily-1.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,38 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -inherit toolchain-funcs
28 -
29 -MY_P="${P/1.0/9libs}"
30 -
31 -DESCRIPTION="An emulation of ACME, Plan9's hybrid window system, shell and editor"
32 -HOMEPAGE="https://www.netlib.org/research/9libs/"
33 -SRC_URI="${HOMEPAGE}${MY_P}.tar.gz"
34 -
35 -LICENSE="Artistic"
36 -SLOT="0"
37 -KEYWORDS="x86"
38 -IUSE=""
39 -
40 -DEPEND="dev-libs/9libs
41 - >=x11-libs/libX11-1.0.0
42 - >=x11-libs/libXt-1.0.0
43 - >=x11-libs/libICE-1.0.0
44 - >=x11-libs/libSM-1.0.0"
45 -
46 -S="${WORKDIR}/${MY_P}"
47 -
48 -src_compile() {
49 - export CC="$(tc-getCC)"
50 - econf --includedir="/usr/include/9libs" || die "configure failed."
51 - emake || die "make failed."
52 -}
53 -
54 -src_install() {
55 - make DESTDIR="${D}" install || die "make install failed."
56 - dodoc README
57 - insinto /usr/share/${PN}
58 - doins "${S}"/misc/*
59 -}