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 E5EE4138334 for ; Fri, 9 Aug 2019 18:39:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D73B8E083D; Fri, 9 Aug 2019 18:39:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 BC4FFE083B for ; Fri, 9 Aug 2019 18:39:33 +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 5A4B33497AD for ; Fri, 9 Aug 2019 18:39:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A16E9762 for ; Fri, 9 Aug 2019 18:39:28 +0000 (UTC) From: "Mike Gilbert" 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" Message-ID: <1565375939.19f971b93a9ca2efdf137981449a1958c84c9d40.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.5.3.ebuild X-VCS-Directories: app-i18n/librime/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 19f971b93a9ca2efdf137981449a1958c84c9d40 X-VCS-Branch: master Date: Fri, 9 Aug 2019 18:39:28 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aa78eb9c-4a96-4ca2-93b8-aef1a52d718d X-Archives-Hash: 2ccdceeda7e8ce894a0212848154a3d5 commit: 19f971b93a9ca2efdf137981449a1958c84c9d40 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Fri Aug 9 17:02:55 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Aug 9 18:38:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f971b9 app-i18n/librime: Use headers of dev-libs/darts, dev-libs/utfcpp and x11-base/xorg-proto. Fixes: https://bugs.gentoo.org/691724 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> app-i18n/librime/librime-1.5.3.ebuild | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app-i18n/librime/librime-1.5.3.ebuild b/app-i18n/librime/librime-1.5.3.ebuild index f3d8887bec2..77a9b708029 100644 --- a/app-i18n/librime/librime-1.5.3.ebuild +++ b/app-i18n/librime/librime-1.5.3.ebuild @@ -33,12 +33,24 @@ RDEPEND="app-i18n/opencc:0= dev-libs/leveldb:0= dev-libs/marisa:0=" DEPEND="${RDEPEND} + dev-libs/darts + dev-libs/utfcpp x11-base/xorg-proto test? ( dev-cpp/gtest )" DOCS=(CHANGELOG.md README.md) +src_prepare() { + # Use headers of dev-libs/darts, dev-libs/utfcpp and x11-base/xorg-proto. + sed -e "/\${PROJECT_SOURCE_DIR}\/thirdparty/d" -i CMakeLists.txt || die + rm -r thirdparty || die + + cmake-utils_src_prepare +} + src_configure() { + local -x CXXFLAGS="${CXXFLAGS} -I/usr/include/utf8cpp" + local mycmakeargs=( -DBOOST_USE_CXX11=ON -DBUILD_TEST=$(usex test ON OFF)