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 1D384138350 for ; Thu, 26 Mar 2020 06:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EEA4E0BFD; Thu, 26 Mar 2020 06:38:21 +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 1B7DAE0BFD for ; Thu, 26 Mar 2020 06:38:21 +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 937D034F758 for ; Thu, 26 Mar 2020 06:38:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA04210A for ; Thu, 26 Mar 2020 06:38:17 +0000 (UTC) From: "Mats Lidell" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mats Lidell" Message-ID: <1585204672.05ecd5575588a715daee2950082f401f69c5719a.matsl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/xemacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/xemacs/xemacs-21.5.34-r5.ebuild X-VCS-Directories: app-editors/xemacs/ X-VCS-Committer: matsl X-VCS-Committer-Name: Mats Lidell X-VCS-Revision: 05ecd5575588a715daee2950082f401f69c5719a X-VCS-Branch: master Date: Thu, 26 Mar 2020 06:38:17 +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: f834babc-b4cc-4517-ab3e-3a4546284705 X-Archives-Hash: 87b99400a3b7ccccfa579451a7c20dd9 commit: 05ecd5575588a715daee2950082f401f69c5719a Author: Mats Lidell gentoo org> AuthorDate: Thu Mar 26 06:37:52 2020 +0000 Commit: Mats Lidell gentoo org> CommitDate: Thu Mar 26 06:37:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ecd557 app-editors/xemacs: Support Gentoo Prefix Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Mats Lidell gentoo.org> app-editors/xemacs/xemacs-21.5.34-r5.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app-editors/xemacs/xemacs-21.5.34-r5.ebuild b/app-editors/xemacs/xemacs-21.5.34-r5.ebuild index 3b27d36313f..de468834210 100644 --- a/app-editors/xemacs/xemacs-21.5.34-r5.ebuild +++ b/app-editors/xemacs/xemacs-21.5.34-r5.ebuild @@ -191,11 +191,11 @@ src_compile() { } src_install() { - emake prefix="${D}"/usr \ - mandir="${D}"/usr/share/man/man1 \ - infodir="${D}"/usr/share/info \ - libdir="${D}"/usr/$(get_libdir) \ - datadir="${D}"/usr/share \ + emake prefix="${ED}"/usr \ + mandir="${ED}"/usr/share/man/man1 \ + infodir="${ED}"/usr/share/info \ + libdir="${ED}"/usr/$(get_libdir) \ + datadir="${ED}"/usr/share \ install # Rename some applications installed in bin so that it is clear @@ -203,12 +203,12 @@ src_install() { # packages (emacs) can't clobber the actual applications. # Addresses bug #62991. for i in b2m ctags etags gnuclient gnudoit gnuattach; do - mv "${D}"/usr/bin/${i} "${D}"/usr/bin/${i}-xemacs || die "mv ${i} failed" + mv "${ED}"/usr/bin/${i} "${ED}"/usr/bin/${i}-xemacs || die "mv ${i} failed" done # rename man pages for i in ctags etags gnuserv gnuclient gnudoit gnuattach; do - mv "${D}"/usr/share/man/man1/${i}{,-xemacs}.1 || die "mv ${i}.1 failed" + mv "${ED}"/usr/share/man/man1/${i}{,-xemacs}.1 || die "mv ${i}.1 failed" done # install base packages directories @@ -223,7 +223,7 @@ src_install() { fi # remove extraneous info files - cd "${D}"/usr/share/info + cd "${ED}"/usr/share/info rm -f dir info.info texinfo* termcap* standards* cd "${S}"