summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-03-16 17:03:41 +0000
committerSam James <sam@gentoo.org>2021-03-16 19:22:15 +0000
commit057db5c8d6e2968a26b646ce92631fc0af81e13b (patch)
tree2d508cf8f512a6207f831062f4f8cff6cf8eb68f /app-editors/ne
parentapp-editors/kakoune: drop 2020.01.16-r1 (diff)
downloadgentoo-057db5c8d6e2968a26b646ce92631fc0af81e13b.tar.gz
gentoo-057db5c8d6e2968a26b646ce92631fc0af81e13b.tar.bz2
gentoo-057db5c8d6e2968a26b646ce92631fc0af81e13b.zip
app-editors/ne: drop 3.3.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors/ne')
-rw-r--r--app-editors/ne/Manifest1
-rw-r--r--app-editors/ne/ne-3.3.0.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/app-editors/ne/Manifest b/app-editors/ne/Manifest
index ea7378b4b8ce..e47314c3bf58 100644
--- a/app-editors/ne/Manifest
+++ b/app-editors/ne/Manifest
@@ -1,2 +1 @@
DIST ne-3.1.1.tar.gz 1219488 BLAKE2B 6d778c1b2e9e18154322a6b327cc4a2711619c353eb82073ad00f3e40b3b8e61f7ee7ce6fee3f0e02b38d001dc26365f44b63f70ddd6089f186a52bdf4c69a17 SHA512 e572ca2a0cd39a59adaea911c80e083872103d90a586117efcabbc3881cf1a48d0c3d06f20eebcd9254177afafef15fd581778cd251b1b25b64ad68a5f8afc37
-DIST ne-3.3.0.tar.gz 1173159 BLAKE2B a4be3fd37a0a79b440290846184bc50551cfb9b73dc50c0376110f3603233879b396f67a87e2f9defe9c0cbc42c963e66bc43ab5396f8ccb27e5b6182c429006 SHA512 73a1bbc5a9f62354834288e25b8f4bf2b0d2ff6faf3408108b217305e2c9d8fed768b5a3c3fd21df7b3bf75a3f9c71ea899a8b3f528b560a8e5e66accd442919
diff --git a/app-editors/ne/ne-3.3.0.ebuild b/app-editors/ne/ne-3.3.0.ebuild
deleted file mode 100644
index c1c60d57ba1e..000000000000
--- a/app-editors/ne/ne-3.3.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="the nice editor, easy to use for the beginner and powerful for the wizard"
-HOMEPAGE="http://ne.di.unimi.it/"
-SRC_URI="http://ne.di.unimi.it/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND="sys-libs/ncurses:0=[tinfo]"
-
-RDEPEND="
- ${DEPEND}
- dev-lang/perl
-"
-
-HTML_DOCS=( doc/html/. )
-
-src_prepare() {
- default
- #sed -i -e 's/-O3//' src/makefile || die
- sed -i -e "s|-lcurses|-ltinfo|g" src/makefile || die
-}
-
-src_compile() {
- append-cflags -std=c11
- emake -C src CC="$(tc-getCC)" \
- NE_GLOBAL_DIR="/usr/share/${PN}" \
- OPTS="${CFLAGS}" \
- "${PN}"
-}
-
-src_install() {
- dobin "src/${PN}"
-
- insinto "/usr/share/${PN}/syntax"
- doins syntax/*.jsf
-
- doman "doc/${PN}.1"
- dodoc CHANGES README.md NEWS doc/*.{txt,pdf,texinfo} doc/default.*
-}