46 lines
1.2 KiB
Bash
46 lines
1.2 KiB
Bash
|
# Copyright 1999-2011 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-4.0.2.ebuild,v 1.1 2011/06/13 01:09:46 jer Exp $
|
||
|
|
||
|
inherit eutils flag-o-matic
|
||
|
|
||
|
DESCRIPTION="A selection of tools from Debian"
|
||
|
HOMEPAGE="http://packages.qa.debian.org/d/debianutils.html"
|
||
|
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz"
|
||
|
|
||
|
LICENSE="BSD GPL-2 SMAIL"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
|
||
|
IUSE="kernel_linux static"
|
||
|
|
||
|
PDEPEND="|| ( >=sys-apps/coreutils-6.10-r1 sys-apps/mktemp sys-freebsd/freebsd-ubin )"
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
cd "${S}"
|
||
|
epatch "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
use static && append-ldflags -static
|
||
|
econf || die
|
||
|
emake || die
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
into /
|
||
|
dobin tempfile run-parts || die
|
||
|
if use kernel_linux ; then
|
||
|
dosbin installkernel || die "installkernel failed"
|
||
|
fi
|
||
|
|
||
|
into /usr
|
||
|
dosbin savelog || die "savelog failed"
|
||
|
|
||
|
doman tempfile.1 run-parts.8 savelog.8
|
||
|
use kernel_linux && doman installkernel.8
|
||
|
cd debian
|
||
|
dodoc changelog control
|
||
|
keepdir /etc/kernel/postinst.d
|
||
|
}
|