From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 68E9C139BC6 for ; Thu, 17 Sep 2015 14:46:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C9D1E08CD; Thu, 17 Sep 2015 14:46:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A6ABE08CD for ; Thu, 17 Sep 2015 14:46:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CDC823406F0 for ; Thu, 17 Sep 2015 14:46:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49A13178 for ; Thu, 17 Sep 2015 14:46:16 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1442501156.38e32a781985174b5a8d095086f9e3ed1e4bd59a.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/refind/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/refind/refind-0.9.0-r1.ebuild sys-boot/refind/refind-0.9.0.ebuild X-VCS-Directories: sys-boot/refind/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 38e32a781985174b5a8d095086f9e3ed1e4bd59a X-VCS-Branch: master Date: Thu, 17 Sep 2015 14:46:16 +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: b0b250fa-0088-444c-883c-729fb6fc86e6 X-Archives-Hash: 3c2f8f90d7eae380d94bf07074c35c0a commit: 38e32a781985174b5a8d095086f9e3ed1e4bd59a Author: Ian Delaney gentoo org> AuthorDate: Thu Sep 17 14:45:56 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu Sep 17 14:45:56 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e32a78 sys-boot/refind: revbump to -0.9.0-r1 patch to ebuild sourced from bug #560280, rm inital ebuild Package-Manager: portage-2.2.20.1 .../{refind-0.9.0.ebuild => refind-0.9.0-r1.ebuild} | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/sys-boot/refind/refind-0.9.0.ebuild b/sys-boot/refind/refind-0.9.0-r1.ebuild similarity index 79% rename from sys-boot/refind/refind-0.9.0.ebuild rename to sys-boot/refind/refind-0.9.0-r1.ebuild index d3b517b..9f616d5 100644 --- a/sys-boot/refind/refind-0.9.0.ebuild +++ b/sys-boot/refind/refind-0.9.0-r1.ebuild @@ -4,6 +4,8 @@ EAPI=5 +inherit eutils + DESCRIPTION="The rEFInd UEFI Boot Manager by Rod Smith" HOMEPAGE="http://www.rodsbooks.com/refind/index.html" SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.zip" @@ -13,11 +15,20 @@ SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs" -DOCS="NEWS.txt README.txt refind.conf-sample docs/refind docs/Styles" +DOCS="NEWS.txt README.txt docs/refind docs/Styles" DEPEND=">=sys-boot/gnu-efi-3.0u" RDEPEND="" +src_prepare() { + # bug 560280: Relocate the install location of refind.conf-sample + local oldstring="\$RefindDir\/refind.conf-sample" + local newstring="\/usr\/share\/doc\/${PF}\/refind.conf-sample" + sed -e "s/$oldstring/$newstring/" -i install.sh || die + + epatch_user +} + src_compile() { emake gnuefi @@ -43,6 +54,9 @@ src_install() { dodoc -r ${DOCS} + dodoc refind.conf-sample + docompress -x /usr/share/doc/${PF}/refind.conf-sample + insinto "/usr/share/${P}/refind" use x86 && doins refind/refind_ia32.efi use amd64 && doins refind/refind_x64.efi @@ -74,6 +88,6 @@ pkg_postinst() { einfo "package app-crypt/sbsigntool can be installed" einfo "" einfo "A sample configration can be found at" - einfo "/usr/share/doc/${P}/refind.conf-sample.bz2" + einfo "/usr/share/doc/${PF}/refind.conf-sample" einfo "" }