diff options
author | Jeroen Roovers <jer@gentoo.org> | 2011-06-13 01:09:46 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2011-06-13 01:09:46 +0000 |
commit | 1fb48b4c2503bd1a68d40f103cc0c1ab7cbb713e (patch) | |
tree | 7a343c82ca5800f1a05979ca8e6f764bab2c3384 /sys-apps | |
parent | Added ~mips, bug 351526 (diff) | |
download | gentoo-2-1fb48b4c2503bd1a68d40f103cc0c1ab7cbb713e.tar.gz gentoo-2-1fb48b4c2503bd1a68d40f103cc0c1ab7cbb713e.tar.bz2 gentoo-2-1fb48b4c2503bd1a68d40f103cc0c1ab7cbb713e.zip |
Version bump.
(Portage version: 2.2.0_alpha40/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.0.2.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/sys-apps/debianutils/ChangeLog b/sys-apps/debianutils/ChangeLog index 8d81ca8770d4..0e70edd8a99d 100644 --- a/sys-apps/debianutils/ChangeLog +++ b/sys-apps/debianutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/debianutils # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v 1.163 2011/05/31 00:03:19 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v 1.164 2011/06/13 01:09:46 jer Exp $ + +*debianutils-4.0.2 (13 Jun 2011) + + 13 Jun 2011; Jeroen Roovers <jer@gentoo.org> +debianutils-4.0.2.ebuild: + Version bump. *debianutils-4.0.1 (31 May 2011) diff --git a/sys-apps/debianutils/debianutils-4.0.2.ebuild b/sys-apps/debianutils/debianutils-4.0.2.ebuild new file mode 100644 index 000000000000..f108a7550285 --- /dev/null +++ b/sys-apps/debianutils/debianutils-4.0.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-4.0.2.ebuild,v 1.1 2011/06/13 01:09:46 jer Exp $ + +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 ~sparc-fbsd ~x86-fbsd" +IUSE="kernel_linux static" + +PDEPEND="|| ( >=sys-apps/coreutils-6.10-r1 sys-apps/mktemp sys-freebsd/freebsd-ubin )" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch +} + +src_compile() { + use static && append-ldflags -static + econf || die + emake || die +} + +src_install() { + into / + dobin tempfile run-parts || die + if use kernel_linux ; then + dosbin installkernel || die "installkernel failed" + fi + + into /usr + dosbin savelog || die "savelog failed" + + doman tempfile.1 run-parts.8 savelog.8 + use kernel_linux && doman installkernel.8 + cd debian + dodoc changelog control + keepdir /etc/kernel/postinst.d +} |