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 66D18138334 for ; Fri, 27 Jul 2018 13:31:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A5F2E0884; Fri, 27 Jul 2018 13:31:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 CE7AFE0884 for ; Fri, 27 Jul 2018 13:31:17 +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 6F9B7335D00 for ; Fri, 27 Jul 2018 13:31:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD45D377 for ; Fri, 27 Jul 2018 13:31:12 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1532698051.150196ee90e9d371306b3a551d5db10613387030.hattya@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: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 150196ee90e9d371306b3a551d5db10613387030 X-VCS-Branch: master Date: Fri, 27 Jul 2018 13:31:12 +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: f5a91a35-4534-42d4-8ae7-7c459b2e8bca X-Archives-Hash: dab23868562b72e1e2c84f84c0424c96 commit: 150196ee90e9d371306b3a551d5db10613387030 Author: Akinori Hattori gentoo org> AuthorDate: Fri Jul 27 13:27:31 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Fri Jul 27 13:27:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150196ee app-i18n/librime: tidy Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-i18n/librime/librime-1.2.9.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app-i18n/librime/librime-1.2.9.ebuild b/app-i18n/librime/librime-1.2.9.ebuild index e897af759e3..0cee02a76e8 100644 --- a/app-i18n/librime/librime-1.2.9.ebuild +++ b/app-i18n/librime/librime-1.2.9.ebuild @@ -5,8 +5,8 @@ EAPI="6" inherit cmake-utils vcs-snapshot -DESCRIPTION="Rime Input Method Engine library" -HOMEPAGE="http://rime.im/ https://github.com/rime/librime" +DESCRIPTION="Rime Input Method Engine, the core library" +HOMEPAGE="https://rime.im/ https://github.com/rime/librime" SRC_URI="https://github.com/rime/${PN}/archive/rime-${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" @@ -16,8 +16,8 @@ IUSE="static-libs test" RDEPEND="app-i18n/opencc:= dev-cpp/glog:= - >=dev-cpp/yaml-cpp-0.5.0:= - >=dev-libs/boost-1.46.0:=[threads] + dev-cpp/yaml-cpp:= + dev-libs/boost:=[threads] dev-libs/leveldb:= dev-libs/marisa:=" DEPEND="${RDEPEND} @@ -26,13 +26,10 @@ DEPEND="${RDEPEND} src_configure() { local mycmakeargs=( - -DBOOST_USE_CXX11=ON - -DBUILD_DATA=OFF - -DBUILD_SEPARATE_LIBS=OFF - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" -DBUILD_STATIC=$(usex static-libs) -DBUILD_TEST=$(usex test) + -DBOOST_USE_CXX11=ON + -DLIB_INSTALL_DIR="${EPREFIX}"/usr/$(get_libdir) ) - cmake-utils_src_configure }