From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-979931-garchives=archives.gentoo.org@lists.gentoo.org> 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 C6D071396D9 for <garchives@archives.gentoo.org>; Mon, 23 Oct 2017 17:24:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B37FC2BC06B; Mon, 23 Oct 2017 17:24:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 93B592BC06B for <gentoo-commits@lists.gentoo.org>; Mon, 23 Oct 2017 17:24:53 +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 490EC33BF55 for <gentoo-commits@lists.gentoo.org>; Mon, 23 Oct 2017 17:24:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E09B182E for <gentoo-commits@lists.gentoo.org>; Mon, 23 Oct 2017 17:24:50 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1508779478.c46e0aa867d4ab81991ae5958d5b2c695563ba15.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/librime/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/librime/librime-1.2.9.ebuild X-VCS-Directories: app-i18n/librime/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: c46e0aa867d4ab81991ae5958d5b2c695563ba15 X-VCS-Branch: master Date: Mon, 23 Oct 2017 17:24:50 +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: dfdb040c-056c-4c25-a1eb-b1b5a4479a76 X-Archives-Hash: 0537046097e58b1e4507805b40269f61 commit: c46e0aa867d4ab81991ae5958d5b2c695563ba15 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org> AuthorDate: Thu Oct 19 19:44:36 2017 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Mon Oct 23 17:24:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46e0aa8 app-i18n/librime: Use EAPI="6". Minor cleanup. app-i18n/librime/librime-1.2.9.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app-i18n/librime/librime-1.2.9.ebuild b/app-i18n/librime/librime-1.2.9.ebuild index 18e8fa7d5f9..87d0a91b57f 100644 --- a/app-i18n/librime/librime-1.2.9.ebuild +++ b/app-i18n/librime/librime-1.2.9.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI="6" -inherit cmake-utils multilib versionator vcs-snapshot toolchain-funcs +inherit cmake-utils vcs-snapshot DESCRIPTION="Rime Input Method Engine library" HOMEPAGE="http://rime.im/ https://github.com/rime/librime" @@ -28,11 +28,13 @@ DEPEND="${RDEPEND} src_configure() { local mycmakeargs=( - $(cmake-utils_use_build static-libs STATIC) + -DBOOST_USE_CXX11=ON -DBUILD_DATA=OFF -DBUILD_SEPARATE_LIBS=OFF - $(cmake-utils_use_build test TEST) - -DLIB_INSTALL_DIR=/usr/$(get_libdir) + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" + -DBUILD_STATIC=$(usex static-libs) + -DBUILD_TEST=$(usex test) ) + cmake-utils_src_configure }