diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-12-19 23:02:01 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-12-19 23:02:01 +0000 |
commit | 341d9ef4cb62b566a4e571310bcb87d6af7da5d2 (patch) | |
tree | 7ef8c057ee5dba15543183f0d6bfb1e82d9c323e /x11-libs/qwt/qwt-6.0.0.ebuild | |
parent | Merged zlib fixes from sci-visualization/qtiplot, #395139 (diff) | |
download | gentoo-2-341d9ef4cb62b566a4e571310bcb87d6af7da5d2.tar.gz gentoo-2-341d9ef4cb62b566a4e571310bcb87d6af7da5d2.tar.bz2 gentoo-2-341d9ef4cb62b566a4e571310bcb87d6af7da5d2.zip |
Move to EAPI=4
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/qwt/qwt-6.0.0.ebuild')
-rw-r--r-- | x11-libs/qwt/qwt-6.0.0.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/x11-libs/qwt/qwt-6.0.0.ebuild b/x11-libs/qwt/qwt-6.0.0.ebuild index efaf5d9769d4..2cce62548813 100644 --- a/x11-libs/qwt/qwt-6.0.0.ebuild +++ b/x11-libs/qwt/qwt-6.0.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwt/qwt-6.0.0.ebuild,v 1.1 2011/05/23 09:01:20 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwt/qwt-6.0.0.ebuild,v 1.2 2011/12/19 23:02:01 jlec Exp $ -EAPI="3" +EAPI=4 inherit eutils qt4-r2 @@ -73,17 +73,17 @@ src_prepare() { src_compile() { # split compilation to allow parallel building - emake sub-src || die "emake library failed" - emake || die "emake failed" + emake sub-src + emake } src_install () { qt4-r2_src_install if use doc; then - dohtml -r doc/html/* || die + dohtml -r doc/html/* fi if use examples; then insinto /usr/share/doc/${PF} - doins -r examples || die + doins -r examples fi } |