blob: f565e88163982012d01be461353c19fbdec30929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-2.29.ebuild,v 1.2 2008/08/08 13:00:11 jer Exp $
inherit eutils flag-o-matic
DESCRIPTION="A selection of tools from Debian"
HOMEPAGE="http://packages.debian.org/unstable/utils/debianutils"
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 ~sparc-fbsd ~x86 ~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}-2.28.2-no-bs-namespace.patch
epatch "${FILESDIR}"/${PN}-2.28.2-mkboot-quiet.patch
epatch "${FILESDIR}"/${PN}-2.16.2-palo.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"
if use kernel_linux ; then
dosbin mkboot || die "mkboot failed"
fi
doman tempfile.1 run-parts.8 savelog.8
use kernel_linux && doman installkernel.8 mkboot.8
cd debian
dodoc changelog control
}
|