diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-11-21 09:58:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-11-21 09:58:26 +0000 |
commit | f90357a0d12db467c15b225a5b31207dbd048364 (patch) | |
tree | f065e735e947d5a6fd5763401f67c2937b6e2d3a /dev-games | |
parent | Rename zsh-completion to gentoo-zsh-completions. (diff) | |
download | gentoo-2-f90357a0d12db467c15b225a5b31207dbd048364.tar.gz gentoo-2-f90357a0d12db467c15b225a5b31207dbd048364.tar.bz2 gentoo-2-f90357a0d12db467c15b225a5b31207dbd048364.zip |
Use makeopts_jobs instead of parsing MAKEOPTS by hand.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/crystalspace/ChangeLog | 7 | ||||
-rw-r--r-- | dev-games/crystalspace/crystalspace-2.0.ebuild | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/dev-games/crystalspace/ChangeLog b/dev-games/crystalspace/ChangeLog index b56f76b8c8ff..1107ea56eb63 100644 --- a/dev-games/crystalspace/ChangeLog +++ b/dev-games/crystalspace/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-games/crystalspace -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/ChangeLog,v 1.60 2013/11/16 06:47:45 dirtyepic Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/ChangeLog,v 1.61 2014/11/21 09:58:26 vapier Exp $ + + 21 Nov 2014; Mike Frysinger <vapier@gentoo.org> crystalspace-2.0.ebuild: + Use makeopts_jobs instead of parsing MAKEOPTS by hand. 16 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> crystalspace-2.0.ebuild: Drop deprecated use of "gtk2" wxGTK profile. diff --git a/dev-games/crystalspace/crystalspace-2.0.ebuild b/dev-games/crystalspace/crystalspace-2.0.ebuild index e70df049154b..fec668ea4ac1 100644 --- a/dev-games/crystalspace/crystalspace-2.0.ebuild +++ b/dev-games/crystalspace/crystalspace-2.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/crystalspace-2.0.ebuild,v 1.2 2013/11/16 06:47:45 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/crystalspace-2.0.ebuild,v 1.3 2014/11/21 09:58:26 vapier Exp $ EAPI=5 -inherit eutils flag-o-matic multilib java-pkg-opt-2 autotools wxwidgets versionator +inherit eutils flag-o-matic multilib java-pkg-opt-2 autotools wxwidgets versionator multiprocessing MY_P=${PN}-src-${PV} PATH_P=${PN}-$(get_version_component_range 1-2) @@ -100,8 +100,7 @@ src_configure() { } src_compile() { - local jamopts=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[[:space:]]*[0-9]\+\).*/\1/; p }") - jam -q -dx ${jamopts} || die "compile failed" + jam -q -dx -j$(makeopts_jobs) || die "compile failed" } src_install() { |