DESCRIPTION="A selection of tools from Debian" HOMEPAGE="http://packages.debian.org/unstable/base/debianutils.html" SRC_URI="http://ftp.debian.org/debian/pool/main/d/debianutils/${PN}_${PV}.tar.gz" LICENSE="GPL-2 BSD" SLOT="0" KEYWORDS="x86" IUSE="static build" DEPEND="virtual/glibc" RDEPEND="app-arch/bzip2 sys-apps/coreutils" src_unpack() { unpack ${A} cd ${S} # Make installkernel, mkboot, and run-parts Gentoo friendly # (25 Sep 2002) epatch ${FILESDIR}/${P}-gentoo.patch # Patch savelog to use bzip2 compression instead of gzip epatch ${FILESDIR}/${PN}-savelog.patch } src_compile() { econf if use static then pmake LDFLAGS=-static || die else pmake || die fi } src_install() { into / dobin tempfile mktemp || die if ! use build then dobin run-parts insopts -m755 exeinto /usr/sbin doexe savelog dosbin installkernel into /usr dosbin mkboot into /usr doman mktemp.1 tempfile.1 run-parts.8 savelog.8 \ installkernel.8 mkboot.8 cd debian dodoc changelog control copyright fi }