You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-kernel/bliss-initramfs/bliss-initramfs-6.8.0.ebuild

55 lines
1.2 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
GITHUB_USER="fearedbliss"
GITHUB_REPO="bliss-initramfs"
GITHUB_TAG="${PV}"
DESCRIPTION="Boot your system's rootfs from ZFS, LVM, RAID, or a variety of other configs."
HOMEPAGE="https://github.com/${GITHUB_USER}/${GITHUB_REPO}"
SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_REPO}/archive/${GITHUB_TAG}.tar.gz -> ${P}.tar.gz"
RESTRICT="strip"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="-* ~amd64"
IUSE="luks raid lvm zfs"
RDEPEND="
>=dev-lang/python-3.3
app-arch/cpio
virtual/udev
luks? ( sys-fs/cryptsetup
app-crypt/gnupg )
raid? ( sys-fs/mdadm )
lvm? ( sys-fs/lvm2 )
zfs? ( sys-kernel/spl
sys-fs/zfs
sys-fs/zfs-kmod )"
S="${WORKDIR}/${GITHUB_REPO}-${GITHUB_TAG}"
src_install() {
# Copy the main executable
local executable="mkinitrd.py"
exeinto "/opt/${PN}"
doexe "${executable}"
# Copy the libraries required by this executable
cp -r "${S}/files" "${D}/opt/${PN}" || die
cp -r "${S}/pkg" "${D}/opt/${PN}" || die
# Copy documentation files
dodoc CHANGES README USAGE
# Make a symbolic link: /sbin/bliss-initramfs
dosym "/opt/${PN}/${executable}" "/sbin/${PN}"
}