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 09535139694 for ; Thu, 15 Jun 2017 08:58:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8991D21C06A; Thu, 15 Jun 2017 08:58:12 +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 62D3A21C06A for ; Thu, 15 Jun 2017 08:58:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 48A32341845 for ; Thu, 15 Jun 2017 08:58:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE1D07474 for ; Thu, 15 Jun 2017 08:58:09 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1497517064.69732f0a03675ef0ebde9238c48205896a946aba.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/pms/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/pms/pms-5_p20120920.ebuild app-doc/pms/pms-6_p20170429.ebuild app-doc/pms/pms-9999.ebuild X-VCS-Directories: app-doc/pms/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 69732f0a03675ef0ebde9238c48205896a946aba X-VCS-Branch: master Date: Thu, 15 Jun 2017 08:58:09 +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: 2aa4f0a8-e569-4a23-a6fb-c8f781559d76 X-Archives-Hash: 9bad722d0a8cf51918ae535d3a1b3043 commit: 69732f0a03675ef0ebde9238c48205896a946aba Author: Ulrich Müller gentoo org> AuthorDate: Thu Jun 15 08:50:09 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Jun 15 08:57:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69732f0a app-doc/pms: Define VARTEXFONTS in compile phase. As suggested by aballier. Package-Manager: Portage-2.3.6, Repoman-2.3.2 app-doc/pms/pms-5_p20120920.ebuild | 2 ++ app-doc/pms/pms-6_p20170429.ebuild | 2 ++ app-doc/pms/pms-9999.ebuild | 2 ++ 3 files changed, 6 insertions(+) diff --git a/app-doc/pms/pms-5_p20120920.ebuild b/app-doc/pms/pms-5_p20120920.ebuild index cd8cd06f092..c4359f0fc50 100644 --- a/app-doc/pms/pms-5_p20120920.ebuild +++ b/app-doc/pms/pms-5_p20120920.ebuild @@ -33,6 +33,8 @@ S="${WORKDIR}/${MY_P}" src_compile() { if ! use binary; then + # just in case; we shouldn't be generating any fonts + export VARTEXFONTS="${T}/fonts" emake use html && emake html fi diff --git a/app-doc/pms/pms-6_p20170429.ebuild b/app-doc/pms/pms-6_p20170429.ebuild index 8a26d650815..0a2c00f5948 100644 --- a/app-doc/pms/pms-6_p20170429.ebuild +++ b/app-doc/pms/pms-6_p20170429.ebuild @@ -34,6 +34,8 @@ RDEPEND="" src_compile() { if ! use binary; then + # just in case; we shouldn't be generating any fonts + export VARTEXFONTS="${T}/fonts" emake use html && emake html fi diff --git a/app-doc/pms/pms-9999.ebuild b/app-doc/pms/pms-9999.ebuild index a29faf97294..f3e231a9274 100644 --- a/app-doc/pms/pms-9999.ebuild +++ b/app-doc/pms/pms-9999.ebuild @@ -29,6 +29,8 @@ DEPEND="dev-tex/leaflet RDEPEND="" src_compile() { + # just in case; we shouldn't be generating any fonts + export VARTEXFONTS="${T}/fonts" emake $(usex twoside TWOSIDE=yes "") use html && emake html }