Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/ne/
Date: Sun, 27 Jan 2019 10:15:50
Message-Id: 1548584114.7f57e3925928301e92120846c1e60d55c91b0fc8.pacho@gentoo
1 commit: 7f57e3925928301e92120846c1e60d55c91b0fc8
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 09:30:43 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 10:15:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f57e392
7
8 app-editors/ne: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 app-editors/ne/Manifest | 1 -
14 app-editors/ne/ne-3.0.1-r1.ebuild | 53 ---------------------------------------
15 2 files changed, 54 deletions(-)
16
17 diff --git a/app-editors/ne/Manifest b/app-editors/ne/Manifest
18 index 17f01c327f2..e47314c3bf5 100644
19 --- a/app-editors/ne/Manifest
20 +++ b/app-editors/ne/Manifest
21 @@ -1,2 +1 @@
22 -DIST ne-3.0.1.tar.gz 1193311 BLAKE2B a58afd00660a7266a37fb0626ddd326fa3366eede6d44cfdd3a002fa3c90db3cbfd852a414c9e8f091e1eac0786cb4d296d1b26144d8afd1d5118da29823603f SHA512 3750140a49c7424e92e509137d5f31d305b81d41939a2578f6a26065216ebd1aa444b0e8d7e79dd09cc525e1055cda4d756f21ec810f860063d2eec861ea8273
23 DIST ne-3.1.1.tar.gz 1219488 BLAKE2B 6d778c1b2e9e18154322a6b327cc4a2711619c353eb82073ad00f3e40b3b8e61f7ee7ce6fee3f0e02b38d001dc26365f44b63f70ddd6089f186a52bdf4c69a17 SHA512 e572ca2a0cd39a59adaea911c80e083872103d90a586117efcabbc3881cf1a48d0c3d06f20eebcd9254177afafef15fd581778cd251b1b25b64ad68a5f8afc37
24
25 diff --git a/app-editors/ne/ne-3.0.1-r1.ebuild b/app-editors/ne/ne-3.0.1-r1.ebuild
26 deleted file mode 100644
27 index 9d68adc0f1a..00000000000
28 --- a/app-editors/ne/ne-3.0.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,53 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit flag-o-matic toolchain-funcs
37 -
38 -DESCRIPTION="the nice editor, easy to use for the beginner and powerful for the wizard"
39 -HOMEPAGE="http://ne.di.unimi.it/"
40 -SRC_URI="${HOMEPAGE}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
45 -IUSE="tinfo"
46 -
47 -DEPEND="sys-libs/ncurses:0=[tinfo?]"
48 -
49 -RDEPEND="
50 - ${DEPEND}
51 - dev-lang/perl
52 -"
53 -
54 -HTML_DOCS=( doc/html/. )
55 -
56 -src_prepare() {
57 - default
58 - sed -i -e 's/-O3//' src/makefile || die
59 -}
60 -
61 -src_configure() {
62 - local sedflags="s|-lcurses|-lncurses|g"
63 - use tinfo && sedflags="s|-lcurses|-ltinfo|g"
64 - sed -i -e "${sedflags}" src/makefile || die
65 -}
66 -
67 -src_compile() {
68 - append-cflags -std=c11
69 - emake -C src CC="$(tc-getCC)" \
70 - NE_GLOBAL_DIR="/usr/share/${PN}" \
71 - OPTS="${CFLAGS}" \
72 - "${PN}"
73 -}
74 -
75 -src_install() {
76 - dobin "src/${PN}"
77 -
78 - insinto "/usr/share/${PN}/syntax"
79 - doins syntax/*.jsf
80 -
81 - doman "doc/${PN}.1"
82 - dodoc CHANGES README.md NEWS doc/*.{txt,pdf,texinfo} doc/default.*
83 -}