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 4B99513933E for ; Fri, 16 Jul 2021 05:34:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F84DE086E; Fri, 16 Jul 2021 05:34:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 51024E086E for ; Fri, 16 Jul 2021 05:34:09 +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 13CE3342C1B for ; Fri, 16 Jul 2021 05:34:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 813B563F for ; Fri, 16 Jul 2021 05:34:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1626413577.4c2e497818ff9f95505156d1daf124e46a9c0992.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/hevea/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/hevea/hevea-2.35-r1.ebuild X-VCS-Directories: dev-tex/hevea/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4c2e497818ff9f95505156d1daf124e46a9c0992 X-VCS-Branch: master Date: Fri, 16 Jul 2021 05:34:06 +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: a6e0b955-1d69-44d0-8e08-a2d2fc0e55c9 X-Archives-Hash: fbeb928c0f0e1238ea3f233ceab04450 commit: 4c2e497818ff9f95505156d1daf124e46a9c0992 Author: Sam James gentoo org> AuthorDate: Fri Jul 16 05:32:57 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jul 16 05:32:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2e4978 dev-tex/hevea: fix prefix installation Closes: https://bugs.gentoo.org/789378 Thanks-to: Steven Trogdon d.umn.edu> Signed-off-by: Sam James gentoo.org> dev-tex/hevea/hevea-2.35-r1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-tex/hevea/hevea-2.35-r1.ebuild b/dev-tex/hevea/hevea-2.35-r1.ebuild index 959e1a3b2be..c28376ef9d8 100644 --- a/dev-tex/hevea/hevea-2.35-r1.ebuild +++ b/dev-tex/hevea/hevea-2.35-r1.ebuild @@ -30,20 +30,20 @@ QA_FLAGS_IGNORED=( src_compile() { rm -f config.sh || die - emake PREFIX="${EPREFIX}"/usr DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)/hevea" LATEXLIBDIR="/usr/share/texmf-site/tex/latex/hevea" config.sh + emake PREFIX=/usr DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)/hevea" LATEXLIBDIR="/usr/share/texmf-site/tex/latex/hevea" config.sh if use ocamlopt; then - emake PREFIX="${EPREFIX}"/usr + emake PREFIX=/usr else - emake PREFIX="${EPREFIX}"/usr TARGET=byte + emake PREFIX=/usr TARGET=byte fi } src_install() { if use ocamlopt; then - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + emake DESTDIR="${ED}" PREFIX=/usr install else - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr TARGET=byte install + emake DESTDIR="${ED}" PREFIX=/usr TARGET=byte install fi dodoc README CHANGES