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 }
