diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-08-27 19:12:54 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-08-27 19:12:54 +0000 |
commit | eafdc4985b9b54cd5bf4d931097987c6e6fc6f52 (patch) | |
tree | 07e05f9e9c64f7e1b469cc7da0e546694fa876e9 /app-editors/fe/fe-1.8.ebuild | |
parent | ia64/sparc stable wrt #379511 (diff) | |
download | gentoo-2-eafdc4985b9b54cd5bf4d931097987c6e6fc6f52.tar.gz gentoo-2-eafdc4985b9b54cd5bf4d931097987c6e6fc6f52.tar.bz2 gentoo-2-eafdc4985b9b54cd5bf4d931097987c6e6fc6f52.zip |
Fix parallel make issue, bug 380865. EAPI bump.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/fe/fe-1.8.ebuild')
-rw-r--r-- | app-editors/fe/fe-1.8.ebuild | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/app-editors/fe/fe-1.8.ebuild b/app-editors/fe/fe-1.8.ebuild index 466c197c7da3..6751bf30a008 100644 --- a/app-editors/fe/fe-1.8.ebuild +++ b/app-editors/fe/fe-1.8.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/fe-1.8.ebuild,v 1.4 2008/02/24 17:17:01 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/fe-1.8.ebuild,v 1.5 2011/08/27 19:12:54 ulm Exp $ + +EAPI=4 inherit eutils @@ -17,15 +19,12 @@ DEPEND="sys-libs/ncurses sendmail? ( virtual/mta )" RDEPEND="${DEPEND}" -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-1.6-nostrip.patch" +src_prepare() { + epatch "${FILESDIR}/${P}-makefile.patch" } -src_compile() { - econf $(use_enable sendmail) || die "econf failed" - emake || die "emake failed" +src_configure() { + econf $(use_enable sendmail) } src_install() { @@ -33,8 +32,8 @@ src_install() { prefix="${D}"/usr \ datadir="${D}"/usr/share \ MANDIR="${D}"/usr/share/man \ - install || die "emake install failed" + install - dodoc NEWS README || die "dodoc failed" - dohtml fe.html || die "dohtml failed" + dodoc NEWS README + dohtml fe.html } |