# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/mkinitrd/mkinitrd-3.5.7-r2.ebuild,v 1.9 2005/02/12 05:54:20 vapier Exp $ inherit eutils DESCRIPTION="Tools for creating initrd images" HOMEPAGE="http://www.redhat.com" SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc ~sparc ~amd64 alpha ia64" IUSE="selinux" DEPEND="dev-libs/popt virtual/os-headers x86? ( dev-libs/dietlibc )" RDEPEND="app-shells/bash" PDEPEND="selinux? ( sys-apps/policycoreutils )" src_unpack() { unpack ${A} cd ${S} # Fix for coreutils tail behavior sed -i -e 's/tail -1/tail -n 1/' mkinitrd || die "sed for tail -1 failed." # bug 29694 -- Change vgwrapper to static vgscan and vgchange epatch ${FILESDIR}/mkinitrd-lvm_statics.diff # SELinux policy load use selinux && epatch ${FILESDIR}/mkinitrd-selinux.diff } src_compile() { cd ${S}/nash emake || die "nash compile failed." cd ${S}/grubby emake || die "grubby compile failed." } src_install() { into / dosbin ${S}/grubby/grubby ${S}/nash/nash ${S}/mkinitrd doman ${S}/grubby/grubby.8 ${S}/nash/nash.8 ${S}/mkinitrd.8 }