diff options
author | 2008-06-07 22:18:26 +0000 | |
---|---|---|
committer | 2008-06-07 22:18:26 +0000 | |
commit | 88543e48231738a7a395b1bd87e6260698dd556c (patch) | |
tree | 8142b4f27f5059261a443755f45719e177b85522 /app-editors/ne/ne-1.43.ebuild | |
parent | Add patch to fix -c with binary files, bug #182417. (diff) | |
download | gentoo-2-88543e48231738a7a395b1bd87e6260698dd556c.tar.gz gentoo-2-88543e48231738a7a395b1bd87e6260698dd556c.tar.bz2 gentoo-2-88543e48231738a7a395b1bd87e6260698dd556c.zip |
Version bump.
(Portage version: 2.1.5.4)
Diffstat (limited to 'app-editors/ne/ne-1.43.ebuild')
-rw-r--r-- | app-editors/ne/ne-1.43.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-editors/ne/ne-1.43.ebuild b/app-editors/ne/ne-1.43.ebuild new file mode 100644 index 000000000000..7df347a50533 --- /dev/null +++ b/app-editors/ne/ne-1.43.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ne-1.43.ebuild,v 1.1 2008/06/07 22:18:26 swegener Exp $ + +inherit toolchain-funcs + +DESCRIPTION="the nice editor, easy to use for the beginner and powerful for the wizard" +HOMEPAGE="http://ne.dsi.unimi.it/" +SRC_URI="http://ne.dsi.unimi.it/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND=">=sys-libs/ncurses-5.2" +DEPEND="${RDEPEND} + dev-lang/perl" + +src_unpack() { + unpack ${A} + sed -i s/-O3// "${S}"/src/makefile +} + +src_compile() { + emake -j1 -C src ne OPTS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed" +} + +src_install() { + dobin src/ne || die "dobin failed" + doman doc/ne.1 || die "doman failed" + dohtml -r doc/ne || die "dohtml failed" + dodoc CHANGES README doc/*.{txt,ps,pdf,texinfo} doc/default.* || die "dodoc failed" +} |