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 720E91395E2 for ; Tue, 6 Dec 2016 09:54:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2DCBE0D04; Tue, 6 Dec 2016 09:54:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9F3FE0D03 for ; Tue, 6 Dec 2016 09:54:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F1E834125C for ; Tue, 6 Dec 2016 09:54:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D968524AB for ; Tue, 6 Dec 2016 09:54:49 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1481018073.93720a47466b72720705e43eff3da2773f0080fa.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cmocka/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cmocka/cmocka-1.1.0.ebuild X-VCS-Directories: dev-util/cmocka/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 93720a47466b72720705e43eff3da2773f0080fa X-VCS-Branch: master Date: Tue, 6 Dec 2016 09:54:49 +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: d26c97f5-c60b-4a09-aa93-def7115707fa X-Archives-Hash: 245984adcbc7afeedcae71717fd05016 commit: 93720a47466b72720705e43eff3da2773f0080fa Author: Johannes Huber gentoo org> AuthorDate: Tue Dec 6 09:35:34 2016 +0000 Commit: Johannes Huber gentoo org> CommitDate: Tue Dec 6 09:54:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93720a47 dev-util/cmocka: EAPI 6 Package-Manager: portage-2.3.3 dev-util/cmocka/cmocka-1.1.0.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-util/cmocka/cmocka-1.1.0.ebuild b/dev-util/cmocka/cmocka-1.1.0.ebuild index 46e417e..c1e08ee 100644 --- a/dev-util/cmocka/cmocka-1.1.0.ebuild +++ b/dev-util/cmocka/cmocka-1.1.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-multilib @@ -24,11 +24,12 @@ DOCS=( AUTHORS ChangeLog README ) multilib_src_configure() { local mycmakeargs=( - $(cmake-utils_use_with static-libs STATIC_LIB) - $(cmake-utils_use test UNIT_TESTING) + -DWITH_STATIC_LIB=$(usex static-libs) + -DUNIT_TESTING=$(usex test) $(multilib_is_native_abi && cmake-utils_use_find_package doc Doxygen \ || echo -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON) ) + cmake-utils_src_configure } @@ -37,10 +38,11 @@ multilib_src_install() { pushd doc || die doxygen Doxyfile || die rm -f html/*.md5 latex/*.md5 latex/Manifest man/man3/_* || die - dohtml html/* - dodoc latex/* + dodoc -r html/ + dodoc -r latex/ doman man/man3/*.3 popd || die fi + cmake-utils_src_install }