From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC98E1396D9 for ; Sun, 19 Nov 2017 14:32:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FD27E0DD3; Sun, 19 Nov 2017 14:32:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3C52E0DD3 for ; Sun, 19 Nov 2017 14:32:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3C2033FE49 for ; Sun, 19 Nov 2017 14:32:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C16CA04A for ; Sun, 19 Nov 2017 14:32:38 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1511101901.eb84c0a79ebc2e577ead392e655e90cb912e9a79.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/uchardet/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/uchardet/uchardet-9999.ebuild X-VCS-Directories: app-i18n/uchardet/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: eb84c0a79ebc2e577ead392e655e90cb912e9a79 X-VCS-Branch: master Date: Sun, 19 Nov 2017 14:32:38 +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: 2161947d-bd0a-4256-9564-fd82a9f0b74f X-Archives-Hash: e0b81c04b060b4d73804690069a8c461 commit: eb84c0a79ebc2e577ead392e655e90cb912e9a79 Author: Ilya Tumaykin gmail com> AuthorDate: Sun Nov 19 13:15:16 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 19 14:31:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb84c0a7 app-i18n/uchardet: add CPU_FLAGS_X86 support to 9999 Package-Manager: Portage-2.3.14, Repoman-2.3.6 app-i18n/uchardet/uchardet-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-i18n/uchardet/uchardet-9999.ebuild b/app-i18n/uchardet/uchardet-9999.ebuild index c268f955e46..6031e5859e4 100644 --- a/app-i18n/uchardet/uchardet-9999.ebuild +++ b/app-i18n/uchardet/uchardet-9999.ebuild @@ -12,7 +12,7 @@ EGIT_REPO_URI="https://anongit.freedesktop.org/git/uchardet/uchardet.git" LICENSE="|| ( MPL-1.1 GPL-2+ LGPL-2.1+ )" SLOT="0" KEYWORDS="" -IUSE="static-libs test" +IUSE="cpu_flags_x86_sse2 static-libs test" src_prepare() { cmake-utils_src_prepare @@ -22,6 +22,7 @@ src_prepare() { src_configure() { local mycmakeargs=( -DBUILD_STATIC=$(usex static-libs) + -DCHECK_SSE2=$(usex cpu_flags_x86_sse2) ) cmake-utils_src_configure }