diff options
author | 2020-08-20 01:16:34 +0200 | |
---|---|---|
committer | 2020-08-20 01:17:02 +0200 | |
commit | 92897d1ef5fc4366b57e13e2c18a58ca11987fa9 (patch) | |
tree | e0ff3803343e081dd30df24c8403bf9863c0ef9c /sys-apps/debianutils/debianutils-4.11.1.ebuild | |
parent | net-misc/wol: don't call directly ar (diff) | |
download | gentoo-92897d1ef5fc4366b57e13e2c18a58ca11987fa9.tar.gz gentoo-92897d1ef5fc4366b57e13e2c18a58ca11987fa9.tar.bz2 gentoo-92897d1ef5fc4366b57e13e2c18a58ca11987fa9.zip |
sys-apps/debianutils: bump to v4.11.1
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'sys-apps/debianutils/debianutils-4.11.1.ebuild')
-rw-r--r-- | sys-apps/debianutils/debianutils-4.11.1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sys-apps/debianutils/debianutils-4.11.1.ebuild b/sys-apps/debianutils/debianutils-4.11.1.ebuild new file mode 100644 index 000000000000..20486d2d14c8 --- /dev/null +++ b/sys-apps/debianutils/debianutils-4.11.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic + +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" + +LICENSE="BSD GPL-2 SMAIL" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x86-linux" +IUSE="+installkernel static" + +PDEPEND=" + installkernel? ( + || ( + sys-kernel/installkernel-gentoo + sys-kernel/installkernel-systemd-boot + ) + )" + +PATCHES=( "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch ) + +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 +} |