blob: 3698a395312898af23a01c7a93283bf3cf2a4389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ne-2.0.3.ebuild,v 1.1 2009/03/25 12:09:44 swegener Exp $
EAPI="2"
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() {
default
sed -i -e s/-O3// "${S}"/src/makefile
}
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/ne/. || die "dohtml failed"
dodoc CHANGES README doc/*.{txt,pdf,texinfo} doc/default.* || die "dodoc failed"
}
|