From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1030451-garchives=archives.gentoo.org@lists.gentoo.org> 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 32AB7138334 for <garchives@archives.gentoo.org>; Fri, 15 Jun 2018 01:41:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A5ADE08D9; Fri, 15 Jun 2018 01:41:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 EE445E08D9 for <gentoo-commits@lists.gentoo.org>; Fri, 15 Jun 2018 01:41:13 +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 07DDB335C30 for <gentoo-commits@lists.gentoo.org>; Fri, 15 Jun 2018 01:41:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7EF931E for <gentoo-commits@lists.gentoo.org>; Fri, 15 Jun 2018 01:41:09 +0000 (UTC) From: "Benda XU" <heroxbd@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" <heroxbd@gentoo.org> Message-ID: <1529026839.a247ad2c6f56922c9ca7a0d7cf920a48fe7e6864.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild X-VCS-Directories: dev-libs/xerces-c/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: a247ad2c6f56922c9ca7a0d7cf920a48fe7e6864 X-VCS-Branch: master Date: Fri, 15 Jun 2018 01:41:09 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5700c192-5033-4c59-9c02-ec00d7b417c6 X-Archives-Hash: 1d6d0a7e724a1461fdb9fbd4a249745f commit: a247ad2c6f56922c9ca7a0d7cf920a48fe7e6864 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org> AuthorDate: Fri Jun 15 01:40:14 2018 +0000 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org> CommitDate: Fri Jun 15 01:40:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a247ad2c dev-libs/xerces-c: support Prefix. Prefixify the environment variable XERCESC_NLS_HOME. Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild b/dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild index fb393626069..7ccfabeb38f 100644 --- a/dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild +++ b/dev-libs/xerces-c/xerces-c-3.1.4-r1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools +inherit autotools prefix DESCRIPTION="A validating XML parser written in a portable subset of C++" -HOMEPAGE="http://xerces.apache.org/xerces-c/" +HOMEPAGE="https://xerces.apache.org/xerces-c/" SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz" LICENSE="Apache-2.0" @@ -111,6 +111,6 @@ src_install () { # To make sure an appropriate NLS msg file is around when using # the iconv msgloader ICU has the messages compiled in. if use iconv && ! use icu; then - doenvd "${FILESDIR}/50xerces-c" + doenvd "$(prefixify_ro "${FILESDIR}/50xerces-c")" fi }