From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-627244-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 248A31381F3 for <garchives@archives.gentoo.org>; Wed, 11 Sep 2013 17:27:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E07AEE0BCB; Wed, 11 Sep 2013 17:27:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0557BE0BC4 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Sep 2013 17:27:11 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 004E333EBDF for <gentoo-commits@lists.gentoo.org>; Wed, 11 Sep 2013 17:27:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4571AE546A for <gentoo-commits@lists.gentoo.org>; Wed, 11 Sep 2013 17:27:09 +0000 (UTC) From: "Nicolas Bock" <nicolasbock@gmail.com> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" <nicolasbock@gmail.com> Message-ID: <1371069302.48d7a2896af3c35ff9cd76bdbacf8cefa671f91d.nicolasbock@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/itk/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/itk/itk-4.4.0.ebuild X-VCS-Directories: sci-libs/itk/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 48d7a2896af3c35ff9cd76bdbacf8cefa671f91d X-VCS-Branch: master Date: Wed, 11 Sep 2013 17:27:09 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 450d8176-be34-4429-8bb7-7e9d3ce100b3 X-Archives-Hash: cdb497e104dd372cb3e5d761b8016450 commit: 48d7a2896af3c35ff9cd76bdbacf8cefa671f91d Author: Gert Wollny <gw.fossdev <AT> gmail <DOT> com> AuthorDate: Wed Jun 12 20:35:02 2013 +0000 Commit: Nicolas Bock <nicolasbock <AT> gmail <DOT> com> CommitDate: Wed Jun 12 20:35:02 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=48d7a289 replace eerror by elog, and correct indetion --- sci-libs/itk/itk-4.4.0.ebuild | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/sci-libs/itk/itk-4.4.0.ebuild b/sci-libs/itk/itk-4.4.0.ebuild index b626718..e0e87e2 100644 --- a/sci-libs/itk/itk-4.4.0.ebuild +++ b/sci-libs/itk/itk-4.4.0.ebuild @@ -19,7 +19,7 @@ KEYWORDS="~x86 ~amd64" IUSE="debug examples fftw hdf5 itkv3compat python review test" RDEPEND="fftw? ( sci-libs/fftw:3.0 ) - hdf5? ( sci-libs/hdf5[cxx] ) + hdf5? ( sci-libs/hdf5[cxx] ) virtual/jpeg media-libs/libpng media-libs/tiff:0 @@ -40,24 +40,24 @@ PATCHES=( pkg_pretend() { bailout=no if [ "x$ITK_COMPUTER_MEMORY_SIZE" = "x" ]; then - eerror "To tune ITK to make the best use ouf working memory you must set" - eerror "ITK_COMPUTER_MEMORY_SIZE in /etc/make.conf to the size of the " - eerror "memory installed in your machine. For example for 4GB you do:" - eerror "" - eerror " echo 'ITK_COMPUTER_MEMORY_SIZE=4' >> /etc/make.conf" - eerror "" + elog "To tune ITK to make the best use ouf working memory you must set" + elog "ITK_COMPUTER_MEMORY_SIZE in /etc/make.conf to the size of the " + elog "memory installed in your machine. For example for 4GB you do:" + elog "" + elog " echo 'ITK_COMPUTER_MEMORY_SIZE=4' >> /etc/make.conf" + elog "" bailout=yes fi if use python ; then if [ "x$ITK_WRAP_DIMS" = "x" ]; then - eerror "For Python language bindings it is necessary to " - eerror "define the dimensions you want to create bindings for" - eerror "by setting in ITK_WRAP_DIMS in /etc/make.conf." - eerror "For example, to provide bindings for 2D and 3D data do:" - eerror "" - eerror " echo 'ITK_WRAP_DIMS=2;3' >> /etc/make.conf" - eerror "" + elog "For Python language bindings it is necessary to " + elog "define the dimensions you want to create bindings for" + elog "by setting in ITK_WRAP_DIMS in /etc/make.conf." + elog "For example, to provide bindings for 2D and 3D data do:" + elog "" + elog " echo 'ITK_WRAP_DIMS=2;3' >> /etc/make.conf" + elog "" bailout=yes fi fi