summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-11-05 11:28:53 +0000
committerJeroen Roovers <jer@gentoo.org>2014-11-05 11:28:53 +0000
commit60a79dad99f580954cbec0c18884a89cfe70c6a4 (patch)
tree2aa3c4b3913192826ca6a85df5e027bba7e9a1a8 /app-editors
parentOld. (diff)
downloadgentoo-2-60a79dad99f580954cbec0c18884a89cfe70c6a4.tar.gz
gentoo-2-60a79dad99f580954cbec0c18884a89cfe70c6a4.tar.bz2
gentoo-2-60a79dad99f580954cbec0c18884a89cfe70c6a4.zip
Old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/ne/ChangeLog6
-rw-r--r--app-editors/ne/files/ne-2.1-asneeded.patch13
-rw-r--r--app-editors/ne/ne-2.3.ebuild47
3 files changed, 5 insertions, 61 deletions
diff --git a/app-editors/ne/ChangeLog b/app-editors/ne/ChangeLog
index bad2f96f235c..b917e129c781 100644
--- a/app-editors/ne/ChangeLog
+++ b/app-editors/ne/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-editors/ne
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ChangeLog,v 1.56 2014/11/01 17:50:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ChangeLog,v 1.57 2014/11/05 11:28:53 jer Exp $
+
+ 05 Nov 2014; Jeroen Roovers <jer@gentoo.org> -ne-2.3.ebuild,
+ -files/ne-2.1-asneeded.patch:
+ Old.
01 Nov 2014; Agostino Sarubbo <ago@gentoo.org> ne-2.5.ebuild:
Stable for ppc, wrt bug #527284
diff --git a/app-editors/ne/files/ne-2.1-asneeded.patch b/app-editors/ne/files/ne-2.1-asneeded.patch
deleted file mode 100644
index 8483d15b70f9..000000000000
--- a/app-editors/ne/files/ne-2.1-asneeded.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-http://bugs.gentoo.org/323595
-
---- src/makefile
-+++ src/makefile
-@@ -104,7 +104,7 @@
- LIBS=$(if $(NE_TERMCAP)$(NE_ANSI),,-lcurses)
-
- ne: $(OBJS) $(if $(NE_TERMCAP)$(NE_ANSI),$(TERMCAPOBJS),)
-- $(CC) -lm $(OPTS) $(LDFLAGS) $^ $(LIBS) -o $(PROGRAM)
-+ $(CC) $(OPTS) $(LDFLAGS) $^ -lm $(LIBS) -o $(PROGRAM)
-
- clean:
- rm -f *.o core
diff --git a/app-editors/ne/ne-2.3.ebuild b/app-editors/ne/ne-2.3.ebuild
deleted file mode 100644
index b71835dd3615..000000000000
--- a/app-editors/ne/ne-2.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ne-2.3.ebuild,v 1.6 2014/10/28 22:43:09 jer Exp $
-
-EAPI="2"
-
-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="http://ne.di.unimi.it/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND=">=sys-libs/ncurses-5.2"
-DEPEND="${RDEPEND}
- dev-lang/perl"
-
-src_prepare() {
- sed -i -e 's/-O3//' src/makefile || die
- epatch "${FILESDIR}"/${PN}-2.1-asneeded.patch
-}
-
-src_compile() {
- emake \
- -j1 \
- -C src \
- ne \
- OPTS="${CFLAGS}" \
- CC="$(tc-getCC)" \
- NE_GLOBAL_DIR="/usr/share/ne" \
- || die "emake failed"
-}
-
-src_install() {
- dobin src/ne || die "dobin failed"
-
- insinto /usr/share/ne/syntax
- doins syntax/*.jsf || die "doins failed"
-
- doman doc/ne.1 || die "doman failed"
- dohtml -r doc/html/. || die "dohtml failed"
- dodoc CHANGES README doc/*.{txt,pdf,texinfo} doc/default.* || die "dodoc failed"
-}