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 E5E871382C5 for ; Mon, 19 Feb 2018 10:17:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4D2BE0B7D; Mon, 19 Feb 2018 10:17:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A8C3AE0B7D for ; Mon, 19 Feb 2018 10:17:23 +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 289EB335C0C for ; Mon, 19 Feb 2018 10:17:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 565BB230 for ; Mon, 19 Feb 2018 10:17:20 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1519035424.26315428020eb0c504938a55329ae1f67415f30f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdc1394/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild X-VCS-Directories: media-libs/libdc1394/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 26315428020eb0c504938a55329ae1f67415f30f X-VCS-Branch: master Date: Mon, 19 Feb 2018 10:17: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-Archives-Salt: f4427165-e34f-4813-941f-102c9a59babb X-Archives-Hash: 2618a6258240828aa983f75720db27a5 commit: 26315428020eb0c504938a55329ae1f67415f30f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 18 22:38:48 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 19 10:17:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26315428 media-libs/libdc1394: Unconditionally --disable-examples Bug: https://bugs.gentoo.org/583802 Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild index 2d692ec33d7..0365bf26201 100644 --- a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild +++ b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild @@ -33,11 +33,12 @@ multilib_src_configure() { local myeconfargs=( $(use_enable doc doxygen-html) $(use_enable static-libs static) + --disable-examples --program-suffix=2 --without-x # only useful for (disabled) examples ) - multilib_is_native_abi || myeconfargs+=( --disable-doxygen-html --disable-examples ) + multilib_is_native_abi || myeconfargs+=( --disable-doxygen-html ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" }