Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ugene/
Date: Mon, 02 Feb 2015 12:06:33
Message-Id: 1422814403.8930ee5bdd97ef5d99b6cbb99037c7b9a1ea5a39.jlec@gentoo
1 commit: 8930ee5bdd97ef5d99b6cbb99037c7b9a1ea5a39
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sun Feb 1 18:13:23 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 1 18:13:23 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8930ee5b
7
8 sci-biology/ugene: Convert sse2 to cpu_flags_x86_sse2
9
10 ---
11 sci-biology/ugene/ChangeLog | 6 +++++-
12 sci-biology/ugene/ugene-1.13.3.ebuild | 6 +++---
13 2 files changed, 8 insertions(+), 4 deletions(-)
14
15 diff --git a/sci-biology/ugene/ChangeLog b/sci-biology/ugene/ChangeLog
16 index cff7871..e7a8604 100644
17 --- a/sci-biology/ugene/ChangeLog
18 +++ b/sci-biology/ugene/ChangeLog
19 @@ -1,7 +1,11 @@
20 # ChangeLog for sci-biology/ugene
21 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
22 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 + 01 Feb 2015; Marius Brehler <marbre@××××××××××××××.de>
26 + ugene-1.13.3.ebuild.ebuild:
27 + Convert sse2 to cpu_flags_x86_sse2
28 +
29 *ugene-1.13.3 (01 Jun 2014)
30
31 01 Jun 2014; Alexey Shvetsov <alexxy@g.o> +metadata.xml,
32
33 diff --git a/sci-biology/ugene/ugene-1.13.3.ebuild b/sci-biology/ugene/ugene-1.13.3.ebuild
34 index af8c070..9d6e4fb 100644
35 --- a/sci-biology/ugene/ugene-1.13.3.ebuild
36 +++ b/sci-biology/ugene/ugene-1.13.3.ebuild
37 @@ -1,4 +1,4 @@
38 -# Copyright 1999-2014 Gentoo Foundation
39 +# Copyright 1999-2015 Gentoo Foundation
40 # Distributed under the terms of the GNU General Public License v2
41 # $Header: $
42
43 @@ -13,7 +13,7 @@ SRC_URI="http://${PN}.unipro.ru/downloads/${P}.tar.gz"
44 LICENSE="GPL-2"
45 SLOT="0"
46 KEYWORDS="~amd64"
47 -IUSE="sse2"
48 +IUSE="cpu_flags_x86_sse2"
49
50 DEPEND="
51 dev-qt/qtgui:4"
52 @@ -29,7 +29,7 @@ src_configure() {
53 CONFIG_OPTS+=( CONFIG+="ppc" )
54 fi
55
56 - use sse2 && CONFIG_OPTS+=( use_sse2 )
57 + use cpu_flags_x86_sse2 && CONFIG_OPTS+=( use_sse2 )
58
59 eqmake4 $CONFIG_OPTS || die
60 }