From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BCA99138A1A for ; Mon, 2 Feb 2015 12:06:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3CA3E0917; Mon, 2 Feb 2015 12:06:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9848BE0907 for ; Mon, 2 Feb 2015 12:06:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3CBF340732 for ; Mon, 2 Feb 2015 12:06:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C8A310E4D for ; Mon, 2 Feb 2015 12:06:25 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1422814403.8930ee5bdd97ef5d99b6cbb99037c7b9a1ea5a39.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ugene/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ugene/ChangeLog sci-biology/ugene/ugene-1.13.3.ebuild X-VCS-Directories: sci-biology/ugene/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8930ee5bdd97ef5d99b6cbb99037c7b9a1ea5a39 X-VCS-Branch: master Date: Mon, 2 Feb 2015 12:06:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 23f2ee24-fbb4-4d0d-881b-88ffde5f0a33 X-Archives-Hash: 35a6180dd93be003983cbf05985493f0 commit: 8930ee5bdd97ef5d99b6cbb99037c7b9a1ea5a39 Author: Marius Brehler linux sungazer de> AuthorDate: Sun Feb 1 18:13:23 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Feb 1 18:13:23 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8930ee5b sci-biology/ugene: Convert sse2 to cpu_flags_x86_sse2 --- sci-biology/ugene/ChangeLog | 6 +++++- sci-biology/ugene/ugene-1.13.3.ebuild | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sci-biology/ugene/ChangeLog b/sci-biology/ugene/ChangeLog index cff7871..e7a8604 100644 --- a/sci-biology/ugene/ChangeLog +++ b/sci-biology/ugene/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for sci-biology/ugene -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 01 Feb 2015; Marius Brehler + ugene-1.13.3.ebuild.ebuild: + Convert sse2 to cpu_flags_x86_sse2 + *ugene-1.13.3 (01 Jun 2014) 01 Jun 2014; Alexey Shvetsov +metadata.xml, diff --git a/sci-biology/ugene/ugene-1.13.3.ebuild b/sci-biology/ugene/ugene-1.13.3.ebuild index af8c070..9d6e4fb 100644 --- a/sci-biology/ugene/ugene-1.13.3.ebuild +++ b/sci-biology/ugene/ugene-1.13.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -13,7 +13,7 @@ SRC_URI="http://${PN}.unipro.ru/downloads/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -IUSE="sse2" +IUSE="cpu_flags_x86_sse2" DEPEND=" dev-qt/qtgui:4" @@ -29,7 +29,7 @@ src_configure() { CONFIG_OPTS+=( CONFIG+="ppc" ) fi - use sse2 && CONFIG_OPTS+=( use_sse2 ) + use cpu_flags_x86_sse2 && CONFIG_OPTS+=( use_sse2 ) eqmake4 $CONFIG_OPTS || die }