vapier 14/11/21 09:58:26 Modified: crystalspace-2.0.ebuild ChangeLog Log: Use makeopts_jobs instead of parsing MAKEOPTS by hand. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.3 dev-games/crystalspace/crystalspace-2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/crystalspace/crystalspace-2.0.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/crystalspace/crystalspace-2.0.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/crystalspace/crystalspace-2.0.ebuild?r1=1.2&r2=1.3 Index: crystalspace-2.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-games/crystalspace/crystalspace-2.0.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- crystalspace-2.0.ebuild 16 Nov 2013 06:47:45 -0000 1.2 +++ crystalspace-2.0.ebuild 21 Nov 2014 09:58:26 -0000 1.3 @@ -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_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() { 1.61 dev-games/crystalspace/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/crystalspace/ChangeLog?rev=1.61&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/crystalspace/ChangeLog?rev=1.61&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/crystalspace/ChangeLog?r1=1.60&r2=1.61 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-games/crystalspace/ChangeLog,v retrieving revision 1.60 retrieving revision 1.61 diff -u -r1.60 -r1.61 --- ChangeLog 16 Nov 2013 06:47:45 -0000 1.60 +++ ChangeLog 21 Nov 2014 09:58:26 -0000 1.61 @@ -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 <[email protected]> crystalspace-2.0.ebuild: + Use makeopts_jobs instead of parsing MAKEOPTS by hand. 16 Nov 2013; Ryan Hill <[email protected]> crystalspace-2.0.ebuild: Drop deprecated use of "gtk2" wxGTK profile.
