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 4EEEB1382C5 for ; Fri, 5 Feb 2021 07:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 445D7E08ED; Fri, 5 Feb 2021 07:03:17 +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 2B7F1E08ED for ; Fri, 5 Feb 2021 07:03:17 +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 03C0D342BB6 for ; Fri, 5 Feb 2021 07:03:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACC0649 for ; Fri, 5 Feb 2021 07:03:14 +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: <1612508589.194fd38cf2980c8d27d2e97023974d37eda97083.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/neofetch/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/neofetch/neofetch-7.1.0.ebuild app-misc/neofetch/neofetch-9999.ebuild X-VCS-Directories: app-misc/neofetch/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 194fd38cf2980c8d27d2e97023974d37eda97083 X-VCS-Branch: master Date: Fri, 5 Feb 2021 07:03:14 +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: e25a79ce-deb4-4225-be04-b15dc2f5505d X-Archives-Hash: 3ff626119d2dbae908b1f0da2515d4c9 commit: 194fd38cf2980c8d27d2e97023974d37eda97083 Author: Sam James gentoo org> AuthorDate: Fri Feb 5 07:03:09 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 5 07:03:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=194fd38c app-misc/neofetch: specify PREFIX explicitly Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> app-misc/neofetch/neofetch-7.1.0.ebuild | 4 ++++ app-misc/neofetch/neofetch-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/app-misc/neofetch/neofetch-7.1.0.ebuild b/app-misc/neofetch/neofetch-7.1.0.ebuild index 59e074f9284..233fd2db736 100644 --- a/app-misc/neofetch/neofetch-7.1.0.ebuild +++ b/app-misc/neofetch/neofetch-7.1.0.ebuild @@ -39,3 +39,7 @@ src_prepare() { default } + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} diff --git a/app-misc/neofetch/neofetch-9999.ebuild b/app-misc/neofetch/neofetch-9999.ebuild index 2d459ec3fba..b5f654d39b3 100644 --- a/app-misc/neofetch/neofetch-9999.ebuild +++ b/app-misc/neofetch/neofetch-9999.ebuild @@ -39,3 +39,7 @@ src_prepare() { default } + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +}