summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-05-12 16:40:25 +0200
committerPatrice Clement <monsieurp@gentoo.org>2017-05-12 16:54:23 +0200
commit0cf3ae2f457eafd363125051d117da29a9ff03b9 (patch)
treee3d0d91391d9a43069556b351ee1c9236f9e2714
parentapp-editors/ne: EAPI 6 bump. (diff)
downloadgentoo-0cf3ae2f457eafd363125051d117da29a9ff03b9.tar.gz
gentoo-0cf3ae2f457eafd363125051d117da29a9ff03b9.tar.bz2
gentoo-0cf3ae2f457eafd363125051d117da29a9ff03b9.zip
app-editors/ne: clean up old.
Package-Manager: Portage-2.3.5, Repoman-2.3.1
-rw-r--r--app-editors/ne/Manifest1
-rw-r--r--app-editors/ne/ne-2.5.ebuild52
2 files changed, 0 insertions, 53 deletions
diff --git a/app-editors/ne/Manifest b/app-editors/ne/Manifest
index 0d0cab3a3d73..23e3c2dcaf1f 100644
--- a/app-editors/ne/Manifest
+++ b/app-editors/ne/Manifest
@@ -1,2 +1 @@
-DIST ne-2.5.tar.gz 1106020 SHA256 e11581d84ff855c3fab5c2bddc3a4633a3b28bb2ce89508e4568d3c3fc929f58 SHA512 e93b5da33565c8ef0b3263083bacec46f1867f78950e0bed940b2f18d14eb42bfa6323130eabe0f793f427a5bea5e04df6ef8e4a0276a883822b0842cbd8b5ed WHIRLPOOL 8bf3f9bd0d735bfef656713e9485a74f901c212396a691ee7faf01f4afa2918f03ec053d289e7311a7bae8b3a7d44c928cb109fefa6b1df581ae8da9c6a3d453
DIST ne-3.0.1.tar.gz 1193311 SHA256 92b646dd2ba64052e62deaa4239373821050a03e1b7d09d203ce04f2adfbd0e4 SHA512 3750140a49c7424e92e509137d5f31d305b81d41939a2578f6a26065216ebd1aa444b0e8d7e79dd09cc525e1055cda4d756f21ec810f860063d2eec861ea8273 WHIRLPOOL e0630f7e077400393ee5734989327369f2d646c88a32313f193b34e7f44d7962b368a5deb5876cfe997e34295078b44fba1672cfb257ef3dc08a8597a5708a5b
diff --git a/app-editors/ne/ne-2.5.ebuild b/app-editors/ne/ne-2.5.ebuild
deleted file mode 100644
index f53af4337c6c..000000000000
--- a/app-editors/ne/ne-2.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils 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="${HOMEPAGE}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=tinfo
-
-DEPEND="
- >=sys-libs/ncurses-5.2[tinfo?]
-"
-RDEPEND="
- ${DEPEND}
- dev-lang/perl
-"
-
-src_prepare() {
- sed -i -e 's/-O3//' src/makefile || die
-}
-
-src_configure() {
- if use tinfo; then
- sed -i -e 's|-lcurses|-ltinfo|g' src/makefile || die
- else
- sed -i -e 's|-lcurses|-lncurses|g' src/makefile || die
- fi
-}
-
-src_compile() {
- emake -C src CC="$(tc-getCC)" \
- NE_GLOBAL_DIR="/usr/share/ne" \
- OPTS="${CFLAGS}" \
- ne || die
-}
-
-src_install() {
- dobin src/ne
-
- insinto /usr/share/ne/syntax
- doins syntax/*.jsf
-
- doman doc/ne.1
- dohtml -r doc/html/.
- dodoc CHANGES README doc/*.{txt,pdf,texinfo} doc/default.*
-}