diff options
Diffstat (limited to 'sys-boot/refind/refind-0.10.2.ebuild')
-rw-r--r-- | sys-boot/refind/refind-0.10.2.ebuild | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/sys-boot/refind/refind-0.10.2.ebuild b/sys-boot/refind/refind-0.10.2.ebuild new file mode 100644 index 00000000000..db4455b68cf --- /dev/null +++ b/sys-boot/refind/refind-0.10.2.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="The rEFInd UEFI Boot Manager by Rod Smith" +HOMEPAGE="http://www.rodsbooks.com/refind/" + +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${PN}-src-${PV}.tar.gz" + +LICENSE="BSD GPL-2 GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +FS_USE="btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs" +IUSE="${FS_USE} doc" + +DEPEND=">=sys-boot/gnu-efi-3.0.2" + +DOCS="NEWS.txt README.txt docs/refind docs/Styles" + +pkg_setup() { + if use x86 ; then + export EFIARCH=ia32 + export BUILDARCH=ia32 + elif use amd64; then + export EFIARCH=x64 + export BUILDARCH=x86_64 + else + # Try to support anyway + export BUILDARCH=$( uname -m | sed s,i[3456789]86,ia32, ) + if [[ ${BUILDARCH} == "x86_64" ]] ; then + export EFIARCH=x64 + else + export EFIARCH=${ARCH} + fi + fi +} + +src_compile() { + # Make main EFI + all_target=gnuefi + emake ARCH=${BUILDARCH} ${all_target} + + # Make filesystem drivers + export gnuefi_target="_gnuefi" + for fs in ${FS_USE}; do + fs=${fs#+} + if use "${fs}"; then + einfo "Building ${fs} filesystem driver" + rm -f "${S}/filesystems/fsw_efi.o" + emake -C "${S}/filesystems" ARCH=${BUILDARCH} ${fs}${gnuefi_target} + fi + done +} + +src_install() { + exeinto "/usr/share/${P}" + doexe refind-install + dosym "/usr/share/${P}/refind-install" "/usr/sbin/refind-install" + + dodoc "${S}"/{COPYING.txt,LICENSE.txt,CREDITS.txt} + if use doc; then + doman "${S}/docs/man/"* + dodoc -r ${DOCS} + fi + + insinto "/usr/share/${P}/refind" + doins "${S}/refind/refind_${EFIARCH}.efi" + doins "${S}/refind.conf-sample" + doins -r images icons fonts banners + + if [[ -d "${S}/drivers_${EFIARCH}" ]]; then + doins -r "${S}/drivers_${EFIARCH}" + fi + + insinto "/usr/share/${P}/refind/tools_${EFIARCH}" + doins "${S}/gptsync/gptsync_${EFIARCH}.efi" + + insinto "/etc/refind.d" + doins -r "${S}/keys" + + dosbin "${S}/mkrlconf" + dosbin "${S}/mvrefind" +} + +pkg_postinst() { + elog "rEFInd has been built and installed into /usr/share/${P}" + elog "You will need to use the command 'refind-install' to install" + elog "the binaries into your EFI System Partition" + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "" + elog "refind-install requires additional packages to be fully functional:" + elog " app-crypt/sbsigntool for binary signing for use with SecureBoot" + elog " sys-boot/efibootmgr for writing to NVRAM" + elog " sys-block/parted for automatic ESP location and mount" + elog "" + elog "A sample configuration can be found at" + elog "/usr/share/${P}/refind/refind.conf-sample" + else + ewarn "Note that this will not update any EFI binaries on your EFI" + ewarn "System Partition - this needs to be done manually." + fi +} |