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 DA57D138334 for ; Sat, 23 Mar 2019 19:41:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0A80E0929; Sat, 23 Mar 2019 19:41:16 +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 8280BE0929 for ; Sat, 23 Mar 2019 19:41:16 +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 20705335D31 for ; Sat, 23 Mar 2019 19:41:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80DC9566 for ; Sat, 23 Mar 2019 19:41:13 +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: <1553370057.53354dd64d0b7e9febcef9c93b2aacfde011ca61.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/fontforge/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/fontforge/fontforge-20190317.ebuild X-VCS-Directories: media-gfx/fontforge/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 53354dd64d0b7e9febcef9c93b2aacfde011ca61 X-VCS-Branch: master Date: Sat, 23 Mar 2019 19:41:13 +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: 5e461c61-32b5-40cd-a70a-7e49d3ded7d3 X-Archives-Hash: c3f2e3fbdff04eb8bb391b42e7615a05 commit: 53354dd64d0b7e9febcef9c93b2aacfde011ca61 Author: Mike Gilbert gentoo org> AuthorDate: Sat Mar 23 19:40:57 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Mar 23 19:40:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53354dd6 media-gfx/fontforge: work around broken --enable-gdk flag Closes: https://bugs.gentoo.org/681550 Package-Manager: Portage-2.3.62_p4, Repoman-2.3.12_p87 Signed-off-by: Mike Gilbert gentoo.org> media-gfx/fontforge/fontforge-20190317.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-gfx/fontforge/fontforge-20190317.ebuild b/media-gfx/fontforge/fontforge-20190317.ebuild index 49800216898..8de78d2119c 100644 --- a/media-gfx/fontforge/fontforge-20190317.ebuild +++ b/media-gfx/fontforge/fontforge-20190317.ebuild @@ -75,7 +75,6 @@ src_configure() { local myeconfargs=( --disable-static $(use_enable truetype-debugger freetype-debugger "${EPREFIX}/usr/include/freetype2/internal4fontforge") - $(use_enable gtk gdk gdk3) $(use_enable python python-extension) $(use_enable python python-scripting) --enable-tile-path @@ -92,6 +91,11 @@ src_configure() { --without-libzmq $(use_with X x) ) + if use gtk; then + # broken AC_ARG_ENABLE usage + # https://bugs.gentoo.org/681550 + myeconfargs+=( --enable-gdk=gdk3 ) + fi econf "${myeconfargs[@]}" }