diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-03-30 00:15:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-03-30 00:15:04 +0000 |
commit | c06c4ab8a8547826f8c438e8f691c602ec03ffdc (patch) | |
tree | 3a70380c296ea6215cdad7787e6cfed80d781529 /dev-util/rootstrap | |
parent | New gnome- and kde-only USE flags (diff) | |
download | gentoo-2-c06c4ab8a8547826f8c438e8f691c602ec03ffdc.tar.gz gentoo-2-c06c4ab8a8547826f8c438e8f691c602ec03ffdc.tar.bz2 gentoo-2-c06c4ab8a8547826f8c438e8f691c602ec03ffdc.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'dev-util/rootstrap')
-rw-r--r-- | dev-util/rootstrap/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/rootstrap/rootstrap-0.3.24_p5.ebuild | 37 |
2 files changed, 44 insertions, 2 deletions
diff --git a/dev-util/rootstrap/ChangeLog b/dev-util/rootstrap/ChangeLog index 78ab7308f04c..970672c52631 100644 --- a/dev-util/rootstrap/ChangeLog +++ b/dev-util/rootstrap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/rootstrap -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/ChangeLog,v 1.16 2008/04/21 17:24:27 phreak Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/ChangeLog,v 1.17 2010/03/30 00:15:04 jer Exp $ + +*rootstrap-0.3.24_p5 (30 Mar 2010) + + 30 Mar 2010; Jeroen Roovers <jer@gentoo.org> +rootstrap-0.3.24_p5.ebuild: + Version bump. 21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Fix up metadata.xml. If there's no maintainer for the package, the metadata diff --git a/dev-util/rootstrap/rootstrap-0.3.24_p5.ebuild b/dev-util/rootstrap/rootstrap-0.3.24_p5.ebuild new file mode 100644 index 000000000000..beab0fd6793e --- /dev/null +++ b/dev-util/rootstrap/rootstrap-0.3.24_p5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/rootstrap-0.3.24_p5.ebuild,v 1.1 2010/03/30 00:15:04 jer Exp $ + +inherit eutils + +DESCRIPTION="A tool for building complete Linux filesystem images" +HOMEPAGE="http://packages.qa.debian.org/rootstrap" +SRC_URI="mirror://debian/pool/main/r/${PN}/${PN}_${PV/_p*}.orig.tar.gz + mirror://debian/pool/main/r/${PN}/${PN}_${PV/_p/-}.diff.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-util/debootstrap + dev-lang/python + app-arch/dpkg" +DEPEND="${RDEPEND} + app-text/docbook-sgml-utils" + +RESTRICT="test" + +S="${WORKDIR}"/${PN} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${WORKDIR}"/${PN}_${PV/_p/-}.diff + sed -i -e 's:docbook-to-man:docbook2man:' Makefile +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + newdoc debian/changelog ChangeLog +} |