sys-apps/debianutils: Bump to version 4.7
authorLars Wendler <polynomial-c@gentoo.org>
Fri, 12 Feb 2016 15:40:46 +0000 (16:40 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Fri, 12 Feb 2016 15:41:12 +0000 (16:41 +0100)
Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
sys-apps/debianutils/Manifest
sys-apps/debianutils/debianutils-4.7.ebuild [new file with mode: 0644]

index 30f92de23a0042cea468ea2d24eded4453bfb3e1..da51dd9809aac87d7af370965d6fbdd073c28087 100644 (file)
@@ -1,2 +1,3 @@
 DIST debianutils_4.4.tar.gz 272098 SHA256 190850cdd6b5302e0a1ba1aaed1bc7074d67d3bd8d04c613f242f7145afa53a6 SHA512 78c51a7da586c6f23bf40810fd9bcaedc90648e6043c199f347cf5772f9c83ab646f22c2746ba6eddd7df8d6a31b01dc25f5bcb21a53a173aa5549138d14a9ca WHIRLPOOL 9fe7f16d921247eb74a56a865264d14b0cddb9025c1a4d761798494908c948bce7958ea2ee4db3a1b8800add41596ee9dfe6665603bd26a1c7bfd926a74f7f67
 DIST debianutils_4.5.1.tar.xz 151080 SHA256 a531c23e0105fe01cfa928457a8343a1e947e2621b3cd4d05f4e9656020c63b7 SHA512 4cdb030946e8063607f102f58d4a1225b0e2795c5e01aeec45740b0a6fa0754013a9ae1239d89a23f6e4bf67e4d67fd669e84ed14b58695aff93a93b6e961b58 WHIRLPOOL c45bea6cd31a0c89665a6755b30a293d518456a5d850af01f49f72cec9526cb6bb9600db90f6124d51f2aab63f868b72eb95e45348c6f23bc5272fe072b54cfd
+DIST debianutils_4.7.tar.xz 156276 SHA256 a269cacd40f52f2fa5d5636357714a49e8538459c16d77772efaa23711fe53d9 SHA512 74110d194de8b6b61d40b133b97629520048a8fdedac349ec2031c793c0246526c1c7904e88098b4c2a121e5efba2d724924139ab1aca15d129a4d210f94a1aa WHIRLPOOL a3a8ab13f904d9fa90d663998b48800fe5ceceea01e46434a052ac81caf940376b580d3228822f390587df7806fc0876627ff6cbcfcb0b1f294b4ce5bacd12bd
diff --git a/sys-apps/debianutils/debianutils-4.7.ebuild b/sys-apps/debianutils/debianutils-4.7.ebuild
new file mode 100644 (file)
index 0000000..41210e5
--- /dev/null
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+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.xz"
+
+LICENSE="BSD GPL-2 SMAIL"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+IUSE="kernel_linux static"
+
+src_prepare() {
+       epatch "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch
+}
+
+src_configure() {
+       use static && append-ldflags -static
+       default
+}
+
+src_install() {
+       into /
+       dobin tempfile run-parts
+       if use kernel_linux ; then
+               dosbin installkernel
+       fi
+
+       into /usr
+       dosbin savelog
+
+       doman tempfile.1 run-parts.8 savelog.8
+       use kernel_linux && doman installkernel.8
+       cd debian || die
+       dodoc changelog control
+       keepdir /etc/kernel/postinst.d
+}