diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2005-06-25 11:22:21 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2005-06-25 11:22:21 +0000 |
commit | ca3b3c636d7247fe4aab4d813d05f21cb6b2c36e (patch) | |
tree | c84c9b12833dc55acdfb704f5103091661c849da /app-editors/lpe/lpe-1.2.6.12.ebuild | |
parent | Added to ~ppc (diff) | |
download | gentoo-2-ca3b3c636d7247fe4aab4d813d05f21cb6b2c36e.tar.gz gentoo-2-ca3b3c636d7247fe4aab4d813d05f21cb6b2c36e.tar.bz2 gentoo-2-ca3b3c636d7247fe4aab4d813d05f21cb6b2c36e.zip |
Version bump. See bug #80398 for details (debian took maintainership).
(Portage version: 2.0.51.22-r1)
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 +} |