diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2015-08-24 14:23:44 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2015-08-24 14:26:33 +0200 |
commit | f34aae8f89875941181bdc041d859bdb58536a7a (patch) | |
tree | d85dd64f36b5ad3ea28a3f160bf6a34ebd5ceb4c /sys-apps/debianutils/debianutils-4.5.1.ebuild | |
parent | Convert all URIs for enlightenment.org and bugzilla.xfce.org to https (diff) | |
download | gentoo-f34aae8f89875941181bdc041d859bdb58536a7a.tar.gz gentoo-f34aae8f89875941181bdc041d859bdb58536a7a.tar.bz2 gentoo-f34aae8f89875941181bdc041d859bdb58536a7a.zip |
sys-apps/debianutils: Bump to version 4.5.1 (bug #558566).
Package-Manager: portage-2.2.20.1
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-apps/debianutils/debianutils-4.5.1.ebuild')
-rw-r--r-- | sys-apps/debianutils/debianutils-4.5.1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sys-apps/debianutils/debianutils-4.5.1.ebuild b/sys-apps/debianutils/debianutils-4.5.1.ebuild new file mode 100644 index 000000000000..2039d176641a --- /dev/null +++ b/sys-apps/debianutils/debianutils-4.5.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +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" + +PDEPEND="|| ( >=sys-apps/coreutils-6.10-r1 sys-freebsd/freebsd-ubin )" + +S="${WORKDIR}/${PN}" + +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 + dodoc changelog control + keepdir /etc/kernel/postinst.d +} |