commit: dd5c2cdaa5f882be9ce5f1566523b9a8a4adf7b0 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de> AuthorDate: Fri Apr 3 11:04:17 2015 +0000 Commit: Guillaume Horel <guillaume.horel <AT> gmail <DOT> com> CommitDate: Fri Apr 3 11:04:17 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=dd5c2cda
sci-electronics/stage: Bump to EAPI=5 Package-Manager: portage-2.2.14 sci-electronics/stage/ChangeLog | 5 ++++- sci-electronics/stage/stage-2.0.3.ebuild | 16 ++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/sci-electronics/stage/ChangeLog b/sci-electronics/stage/ChangeLog index d03723f..d99de0a 100644 --- a/sci-electronics/stage/ChangeLog +++ b/sci-electronics/stage/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-electronics/stage -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 03 Apr 2015; Marius Brehler <[email protected]> stage-2.0.3.ebuild: + Bump to EAPI=5 + 07 Mar 2011; Justin Lecher <[email protected]> stage-2.0.3.ebuild: Correct Slots for gtk 3 introduction to tree diff --git a/sci-electronics/stage/stage-2.0.3.ebuild b/sci-electronics/stage/stage-2.0.3.ebuild index 9ed0b53..b293697 100644 --- a/sci-electronics/stage/stage-2.0.3.ebuild +++ b/sci-electronics/stage/stage-2.0.3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="3" +EAPI=5 inherit autotools eutils @@ -37,25 +37,25 @@ src_configure() { } src_compile() { - emake || die "emake failed" + emake if use doc; then pushd docsrc doxygen -u stage.dox || die "doxygen failed" - touch header.html - emake "doc" || die "emake doc failed" + touch header.html || die + emake "doc" popd fi } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + emake DESTDIR="${D}" install if use doc; then pushd docsrc - emake DESTDIR="${D}" "doc-install" || die "emake doc-install failed" + emake DESTDIR="${D}" "doc-install" popd fi - dodoc AUTHORS ChangeLog NEWS README || die + dodoc AUTHORS ChangeLog NEWS README }
