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 F29CF138350 for ; Mon, 27 Jan 2020 18:33:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10BD6E0855; Mon, 27 Jan 2020 18:33:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D5481E0855 for ; Mon, 27 Jan 2020 18:33:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4CC4D34E48C for ; Mon, 27 Jan 2020 18:33:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADC4E35 for ; Mon, 27 Jan 2020 18:33:20 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1580149987.09f358b3d2785e6d420840b7628c38820f620a42.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/orc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/orc/orc-0.4.31.ebuild X-VCS-Directories: dev-lang/orc/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 09f358b3d2785e6d420840b7628c38820f620a42 X-VCS-Branch: master Date: Mon, 27 Jan 2020 18:33:20 +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: 20d792e9-87ac-4aa0-90ff-9df31a8f3045 X-Archives-Hash: 73c632b6a992a33a319e92f851d7f4ae commit: 09f358b3d2785e6d420840b7628c38820f620a42 Author: Mart Raudsepp gentoo org> AuthorDate: Mon Jan 27 18:32:57 2020 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Mon Jan 27 18:33:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f358b3 dev-lang/orc: add USE=gtk-doc, other ebuild touchups Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp gentoo.org> dev-lang/orc/orc-0.4.31.ebuild | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/dev-lang/orc/orc-0.4.31.ebuild b/dev-lang/orc/orc-0.4.31.ebuild index 80391fff7cf..024578c7326 100644 --- a/dev-lang/orc/orc-0.4.31.ebuild +++ b/dev-lang/orc/orc-0.4.31.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,20 +13,28 @@ LICENSE="BSD BSD-2" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RESTRICT="!test? ( test )" -IUSE="static-libs test" +IUSE="gtk-doc static-libs test" DEPEND="" RDEPEND="" +BDEPEND=" + gtk-doc? ( + dev-util/gtk-doc + app-text/docbook-xml-dtd:4.1.2 + app-text/docbook-xml-dtd:4.3 ) +" multilib_src_configure() { # FIXME: handle backends per arch? What about cross-compiling for the other arches? local emesonargs=( - $(meson_feature test tests) -Ddefault_library=$(usex static-libs both shared) -Dorc-backend=all + -Dorc-test=enabled # FIXME: always installs static library, bug 645232 -Dbenchmarks=disabled -Dexamples=disabled - -Dgtk_doc=disabled + $(meson_feature gtk-doc gtk_doc) + $(meson_feature test tests) + -Dtools=enabled # requires orc-test ) meson_src_configure }