summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-04-08 18:47:07 +0200
committerPatrice Clement <monsieurp@gentoo.org>2018-04-09 00:41:45 +0200
commite4574b8c0c1f95780b4bb9e3a9d2ce463eafbe3b (patch)
treea4eee8892aed687baf8add3757efd7446b4277b4 /app-editors/ne
parentapp-cdr/cdck: remove old. (diff)
downloadgentoo-e4574b8c0c1f95780b4bb9e3a9d2ce463eafbe3b.tar.gz
gentoo-e4574b8c0c1f95780b4bb9e3a9d2ce463eafbe3b.tar.bz2
gentoo-e4574b8c0c1f95780b4bb9e3a9d2ce463eafbe3b.zip
app-editors/ne: remove old.
Diffstat (limited to 'app-editors/ne')
-rw-r--r--app-editors/ne/ne-3.0.1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/app-editors/ne/ne-3.0.1.ebuild b/app-editors/ne/ne-3.0.1.ebuild
deleted file mode 100644
index 3641ef3cf258..000000000000
--- a/app-editors/ne/ne-3.0.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils 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="${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() {
- append-cflags -std=c11
- 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.md NEWS doc/*.{txt,pdf,texinfo} doc/default.*
-}