diff options
Diffstat (limited to 'app-editors/lpe/lpe-1.2.6.12.ebuild')
-rw-r--r-- | app-editors/lpe/lpe-1.2.6.12.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-editors/lpe/lpe-1.2.6.12.ebuild b/app-editors/lpe/lpe-1.2.6.12.ebuild new file mode 100644 index 000000000000..9e87aa9a93aa --- /dev/null +++ b/app-editors/lpe/lpe-1.2.6.12.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2005 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.1 2005/06/25 11:22:21 pyrania Exp $ + +inherit eutils + +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" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-slang.patch +} + +src_compile() { + econf `use_enable nls` || die + emake || die +} + +src_install() { + make \ + 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 \ + install || die + prepalldocs +} |