From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 92AD31382C5 for ; Wed, 22 Jun 2016 17:41:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85EA0141A8; Wed, 22 Jun 2016 17:41:20 +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 2353C141A8 for ; Wed, 22 Jun 2016 17:41:20 +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 44A39340AA1 for ; Wed, 22 Jun 2016 17:41:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31EEA2098 for ; Wed, 22 Jun 2016 17:41:15 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1466617237.9807798754677b625d90625fc5b8f4136a60e7eb.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gnupg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/gnupg/gnupg-2.0.26-r3.ebuild app-crypt/gnupg/gnupg-2.0.28.ebuild X-VCS-Directories: app-crypt/gnupg/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 9807798754677b625d90625fc5b8f4136a60e7eb X-VCS-Branch: master Date: Wed, 22 Jun 2016 17:41:15 +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: 58ee4151-8e39-473c-8981-0c8b4fd7934d X-Archives-Hash: bce2c3f998271e597a5930c5c32604de commit: 9807798754677b625d90625fc5b8f4136a60e7eb Author: Austin English gentoo org> AuthorDate: Tue Jun 21 23:58:51 2016 +0000 Commit: Austin English gentoo org> CommitDate: Wed Jun 22 17:40:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98077987 app-crypt/gnupg: fix remaining ebuilds building with Clang Gentoo-Bug: https://bugs.gentoo.org/458154 Reviewed-by: Robin H. Johnson gentoo.org> Package-Manager: portage-2.2.28 app-crypt/gnupg/gnupg-2.0.26-r3.ebuild | 5 ++++- app-crypt/gnupg/gnupg-2.0.28.ebuild | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild b/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild index 055584d..61372d9 100644 --- a/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild +++ b/app-crypt/gnupg/gnupg-2.0.26-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -85,6 +85,9 @@ src_configure() { myconf+=( --enable-symcryptrun ) fi + # glib fails and picks up clang's internal stdint.h causing weird errors + [[ ${CC} == *clang ]] && export gl_cv_absolute_stdint_h=/usr/include/stdint.h + econf \ --docdir="${EPREFIX}/usr/share/doc/${PF}" \ --enable-gpg \ diff --git a/app-crypt/gnupg/gnupg-2.0.28.ebuild b/app-crypt/gnupg/gnupg-2.0.28.ebuild index ffc5a30..1dac44f 100644 --- a/app-crypt/gnupg/gnupg-2.0.28.ebuild +++ b/app-crypt/gnupg/gnupg-2.0.28.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -84,7 +84,7 @@ src_configure() { fi # glib fails and picks up clang's internal stdint.h causing weird errors - [[ ${CC} == clang ]] && export gl_cv_absolute_stdint_h=/usr/include/stdint.h + [[ ${CC} == *clang ]] && export gl_cv_absolute_stdint_h=/usr/include/stdint.h econf \ --docdir="${EPREFIX}/usr/share/doc/${PF}" \