diff options
author | 2012-06-30 06:32:21 +0000 | |
---|---|---|
committer | 2012-06-30 06:32:21 +0000 | |
commit | 9f5603fe79f460ab58a46db925e742cb836f4faf (patch) | |
tree | 2c75726bbde10b6024823b85d5023d8c49c1e452 /sys-apps | |
parent | Fix tests for ruby 1.8 random hash ordering, fixing bug 424079. Add ruby19. (diff) | |
download | gentoo-2-9f5603fe79f460ab58a46db925e742cb836f4faf.tar.gz gentoo-2-9f5603fe79f460ab58a46db925e742cb836f4faf.tar.bz2 gentoo-2-9f5603fe79f460ab58a46db925e742cb836f4faf.zip |
Version bump.
(Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/debianutils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/debianutils/debianutils-4.3.2.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/sys-apps/debianutils/ChangeLog b/sys-apps/debianutils/ChangeLog index 465d1905aeab..83b2554a757b 100644 --- a/sys-apps/debianutils/ChangeLog +++ b/sys-apps/debianutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/debianutils # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v 1.173 2012/06/14 10:05:00 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v 1.174 2012/06/30 06:32:21 radhermit Exp $ + +*debianutils-4.3.2 (30 Jun 2012) + + 30 Jun 2012; Tim Harder <radhermit@gentoo.org> +debianutils-4.3.2.ebuild: + Version bump. *debianutils-4.3.1 (14 Jun 2012) diff --git a/sys-apps/debianutils/debianutils-4.3.2.ebuild b/sys-apps/debianutils/debianutils-4.3.2.ebuild new file mode 100644 index 000000000000..5def0b3407dc --- /dev/null +++ b/sys-apps/debianutils/debianutils-4.3.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-4.3.2.ebuild,v 1.1 2012/06/30 06:32:21 radhermit Exp $ + +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.gz" + +LICENSE="BSD GPL-2 SMAIL" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="kernel_linux static" + +PDEPEND="|| ( >=sys-apps/coreutils-6.10-r1 sys-freebsd/freebsd-ubin )" + +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 +} |