blob: 40e52a0481b59977efb225e1bf33a7f67bf7295f (
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
49
50
51
52
53
54
55
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.5_p20090914.ebuild,v 1.3 2009/10/30 19:07:13 grobian Exp $
EAPI=2
inherit toolchain-funcs eutils
DESCRIPTION="Multi-purpose text editor for the X Window System"
HOMEPAGE="http://nedit.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="spell"
RDEPEND="spell? ( virtual/aspell-dict )
x11-libs/openmotif
x11-libs/libXp
x11-libs/libXpm"
DEPEND="${RDEPEND}
|| ( dev-util/yacc sys-devel/bison )
dev-lang/perl"
S="${WORKDIR}/${PN}"
src_prepare() {
#respecting LDFLAGS, bug #208189
epatch "${FILESDIR}"/${P}-ldflags.patch
}
src_configure() {
sed -i -e "s:CFLAGS=-O:CFLAGS=${CFLAGS}:" -e "s:check_tif_rule::" \
makefiles/Makefile.linux || die
}
src_compile() {
emake CC="$(tc-getCC)" linux || die
cd doc; emake doc man || die
}
src_install() {
into /usr
dobin source/nedit || die
exeinto /usr/bin
newexe source/nc neditc || die
newman doc/nedit.man nedit.1 || die
newman doc/nc.man neditc.1 || die
dodoc README ReleaseNotes ChangeLog
cd doc
dodoc nedit.doc NEdit.ad faq.txt
dohtml nedit.html
}
|