blob: 5d5cfb4c399035ba747f060274851bc2f7b41023 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/lpe/lpe-1.2.6.12.ebuild,v 1.5 2008/01/25 18:38:46 fmccor Exp $
inherit eutils multilib
DESCRIPTION="Lightweight Programmers Editor"
HOMEPAGE="http://cdsmith.twu.net/professional/opensource/lpe.html"
SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc sparc x86"
IUSE="nls"
DEPEND="=sys-libs/slang-1*"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-slang.patch
}
src_compile() {
econf `use_enable nls` || die
emake || die
}
src_install() {
emake \
prefix="${D}/usr" \
datadir="${D}/usr/share" \
mandir="${D}/usr/share/man" \
infodir="${D}/usr/share/info" \
docdir="${D}/usr/share/doc/${PF}" \
exdir="${D}/usr/share/doc/${PF}/examples" \
libdir="${D}/usr/$(get_libdir)" \
install || die "emake install failed."
prepalldocs
}
|