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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 45E0F158086 for ; Tue, 11 Jan 2022 04:19:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62A272BC025; Tue, 11 Jan 2022 04:19:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 16A842BC025 for ; Tue, 11 Jan 2022 04:19:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03CC2343226 for ; Tue, 11 Jan 2022 04:19:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AD82246 for ; Tue, 11 Jan 2022 04:19:42 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1641874775.3e621f4545810a3d3dc3b8ea2d8918252c84d770.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libgphoto2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libgphoto2/libgphoto2-2.5.28.ebuild X-VCS-Directories: media-libs/libgphoto2/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 3e621f4545810a3d3dc3b8ea2d8918252c84d770 X-VCS-Branch: master Date: Tue, 11 Jan 2022 04:19:42 +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: 5d1aa08f-793e-44d4-ad29-cfa2c4009f00 X-Archives-Hash: 41e94f8c8cde0c1d186e95c9e70ad0c7 commit: 3e621f4545810a3d3dc3b8ea2d8918252c84d770 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jan 11 04:17:11 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jan 11 04:19:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e621f45 media-libs/libgphoto2: fix build without doxygen ebuild defines ac_cv_path_DOXYGEN=false but generated ./configure checks it like this: ... if test "x$DOXYGEN" != xno; then HAVE_DOXYGEN_TRUE= ... Bug: https://bugs.gentoo.org/830968 Signed-off-by: Georgy Yakovlev gentoo.org> media-libs/libgphoto2/libgphoto2-2.5.28.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libgphoto2/libgphoto2-2.5.28.ebuild b/media-libs/libgphoto2/libgphoto2-2.5.28.ebuild index 16879dbed04e..21661ad1025e 100644 --- a/media-libs/libgphoto2/libgphoto2-2.5.28.ebuild +++ b/media-libs/libgphoto2/libgphoto2-2.5.28.ebuild @@ -99,7 +99,7 @@ src_prepare() { multilib_src_configure() { local myconf - use doc || myconf=( ac_cv_path_DOXYGEN=false ) + use doc || myconf=( ac_cv_path_DOXYGEN=no ) # Upstream doesn't default to --enable-option-checking due having another # configure in libgphoto2_port/ that also needs to be checked on every bump