diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-01-04 20:51:10 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-01-04 20:51:10 +0000 |
commit | 3774c87b290bf06cb61e178e66477058bd285f63 (patch) | |
tree | 5c92a6c62d6aaa501d9a8279653e688947205c0c /dev-lang/R | |
parent | refresh the patch to disable terminfo tests for 2.7; #350215 (diff) | |
download | gentoo-2-3774c87b290bf06cb61e178e66477058bd285f63.tar.gz gentoo-2-3774c87b290bf06cb61e178e66477058bd285f63.tar.bz2 gentoo-2-3774c87b290bf06cb61e178e66477058bd285f63.zip |
Profiling is now turn on with a use flag
(Portage version: 2.1.9.28/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/R')
-rw-r--r-- | dev-lang/R/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/R/R-2.12.1.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/dev-lang/R/ChangeLog b/dev-lang/R/ChangeLog index 32624100a962..3d665ed8f520 100644 --- a/dev-lang/R/ChangeLog +++ b/dev-lang/R/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/R -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.181 2010/12/22 17:25:49 bicatali Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.182 2011/01/04 20:51:10 bicatali Exp $ + + 04 Jan 2011; Sébastien Fabbro <bicatali@gentoo.org> R-2.12.1.ebuild: + Profiling is now turn on with a use flag *R-2.12.1 (22 Dec 2010) diff --git a/dev-lang/R/R-2.12.1.ebuild b/dev-lang/R/R-2.12.1.ebuild index 378adb18fde2..0846139cfd57 100644 --- a/dev-lang/R/R-2.12.1.ebuild +++ b/dev-lang/R/R-2.12.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-2.12.1.ebuild,v 1.1 2010/12/22 17:25:49 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-2.12.1.ebuild,v 1.2 2011/01/04 20:51:10 bicatali Exp $ EAPI=2 inherit eutils flag-o-matic bash-completion versionator @@ -14,7 +14,7 @@ LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="doc java jpeg lapack minimal nls perl png readline static-libs threads tk X cairo" +IUSE="doc java jpeg lapack minimal nls perl png profile readline static-libs threads tk X cairo" # common depends CDEPEND="dev-libs/libpcre @@ -87,8 +87,6 @@ src_prepare() { src_configure() { econf \ - --enable-R-profiling \ - --enable-memory-profiling \ --enable-R-shlib \ --with-system-zlib \ --with-system-bzlib \ @@ -97,6 +95,8 @@ src_configure() { --docdir=/usr/share/doc/${PF} \ rdocdir=/usr/share/doc/${PF} \ $(use_enable nls) \ + $(use_enable profile R-profiling) \ + $(use_enable profile memory-profiling) \ $(use_enable static-libs static) \ $(use_enable static-libs R-static-lib) \ $(use_enable threads) \ |