diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-09-23 15:53:11 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-09-23 15:53:11 +0000 |
commit | 1a6a8a8354d04f6df890b11551ff7efcc679f3b9 (patch) | |
tree | da500293a163ba1182b06f904cff35b7df91ec0a /app-editors/lpe/lpe-1.2.6.13.ebuild | |
parent | Version bump. This corresponds to Emacs 23.2. (diff) | |
download | gentoo-2-1a6a8a8354d04f6df890b11551ff7efcc679f3b9.tar.gz gentoo-2-1a6a8a8354d04f6df890b11551ff7efcc679f3b9.tar.bz2 gentoo-2-1a6a8a8354d04f6df890b11551ff7efcc679f3b9.zip |
Fix building with make >= 3.82 wrt #335324 by Diego E. Pettenò.
(Portage version: 2.2_rc86/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/lpe/lpe-1.2.6.13.ebuild')
-rw-r--r-- | app-editors/lpe/lpe-1.2.6.13.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app-editors/lpe/lpe-1.2.6.13.ebuild b/app-editors/lpe/lpe-1.2.6.13.ebuild index 3769cbb01b03..a4d387e6bce7 100644 --- a/app-editors/lpe/lpe-1.2.6.13.ebuild +++ b/app-editors/lpe/lpe-1.2.6.13.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2010 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.13.ebuild,v 1.10 2010/04/05 04:10:05 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/lpe/lpe-1.2.6.13.ebuild,v 1.11 2010/09/23 15:53:11 ssuominen Exp $ -EAPI="3" - -inherit multilib +EAPI=3 +inherit eutils multilib DESCRIPTION="a lightweight programmers editor" HOMEPAGE="http://packages.qa.debian.org/l/lpe.html" @@ -19,6 +18,10 @@ RDEPEND=">=sys-libs/slang-2.1.3" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" +src_prepare() { + epatch "${FILESDIR}"/${P}-make-382.patch +} + src_configure() { econf $(use_enable nls) } |