blob: a9779ad38ea3ffd7c038a7ae61c01f2c0608afc6 (
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
50
51
52
53
54
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic autotools
DESCRIPTION="A selection of tools from Debian"
HOMEPAGE="https://packages.qa.debian.org/d/debianutils.html"
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz
https://dev.gentoo.org/~grobian/distfiles/${PN}-4-nongnu.patch"
LICENSE="BSD GPL-2 SMAIL"
SLOT="0"
KEYWORDS="~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="+installkernel static"
PDEPEND="
installkernel? (
|| (
sys-kernel/installkernel-gentoo
sys-kernel/installkernel-systemd-boot
)
)"
S="${WORKDIR}/${PN}"
PATCHES=(
"${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch
"${DISTDIR}"/${PN}-4-nongnu.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
use static && append-ldflags -static
default
}
src_install() {
into /
dobin tempfile run-parts
into /usr
dobin ischroot
dosbin savelog
doman ischroot.1 tempfile.1 run-parts.8 savelog.8
cd debian || die
dodoc changelog control
}
|