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 894991388C0 for ; Sun, 28 Feb 2016 11:09:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A37B021C08D; Sun, 28 Feb 2016 11:09:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2447E21C001 for ; Sun, 28 Feb 2016 11:09:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56C2A340B53 for ; Sun, 28 Feb 2016 11:09:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 137E6209B for ; Sun, 28 Feb 2016 11:09:11 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1456657729.3216975cf1f41e70f5592003707e3c6b4da33a64.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gexiv2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gexiv2/gexiv2-0.10.2.ebuild X-VCS-Directories: media-libs/gexiv2/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 3216975cf1f41e70f5592003707e3c6b4da33a64 X-VCS-Branch: master Date: Sun, 28 Feb 2016 11:09:11 +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: 310ca476-94fb-4dcf-84fc-121ffd34b0e7 X-Archives-Hash: 595c50bfacdee0e6d7a4aa51cc9d7368 commit: 3216975cf1f41e70f5592003707e3c6b4da33a64 Author: Pacho Ramos gentoo org> AuthorDate: Sun Feb 28 11:02:17 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Feb 28 11:08:49 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3216975c media-libs/gexiv2: Fix build issues with XDG vars also in stable Package-Manager: portage-2.2.27 media-libs/gexiv2/gexiv2-0.10.2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/media-libs/gexiv2/gexiv2-0.10.2.ebuild b/media-libs/gexiv2/gexiv2-0.10.2.ebuild index cef9c60..563302f 100644 --- a/media-libs/gexiv2/gexiv2-0.10.2.ebuild +++ b/media-libs/gexiv2/gexiv2-0.10.2.ebuild @@ -6,7 +6,7 @@ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) -inherit eutils multilib python-r1 toolchain-funcs versionator +inherit eutils multilib python-r1 toolchain-funcs versionator xdg-utils MY_PV=$(get_version_component_range 1-2) @@ -17,8 +17,8 @@ SRC_URI="mirror://gnome/sources/${PN}/${MY_PV}/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86" -IUSE="introspection python static-libs" +IUSE="introspection python static-libs" REQUIRED_USE="python? ( introspection ${PYTHON_REQUIRED_USE} )" RDEPEND="${PYTHON_DEPS} @@ -29,6 +29,7 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { + xdg_environment_reset tc-export CXX }