diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2004-03-02 13:58:51 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2004-03-02 13:58:51 +0000 |
commit | 49271e84382564955eb456db10751169368e4e7e (patch) | |
tree | fb8bd4267f4ca4b3379319942343d0317121d76e /dev-util/rootstrap | |
parent | stable on x86 (diff) | |
download | historical-49271e84382564955eb456db10751169368e4e7e.tar.gz historical-49271e84382564955eb456db10751169368e4e7e.tar.bz2 historical-49271e84382564955eb456db10751169368e4e7e.zip |
version bump, use mirror://debian instead of absolute url
Diffstat (limited to 'dev-util/rootstrap')
-rw-r--r-- | dev-util/rootstrap/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/rootstrap/files/digest-rootstrap-0.3.18 | 2 | ||||
-rw-r--r-- | dev-util/rootstrap/rootstrap-0.3.13.ebuild | 10 | ||||
-rw-r--r-- | dev-util/rootstrap/rootstrap-0.3.18.ebuild | 36 |
4 files changed, 53 insertions, 6 deletions
diff --git a/dev-util/rootstrap/ChangeLog b/dev-util/rootstrap/ChangeLog index 5e4594200c4e..dc6ef1bcf901 100644 --- a/dev-util/rootstrap/ChangeLog +++ b/dev-util/rootstrap/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-util/rootstrap -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/ChangeLog,v 1.2 2003/11/03 10:54:26 lanius Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/ChangeLog,v 1.3 2004/03/02 13:58:51 lanius Exp $ + +*rootstrap-0.3.18 (02 Mar 2004) + + 02 Mar 2004; Heinrich Wendel <lanius@gentoo.org> rootstrap-0.3.13.ebuild, + rootstrap-0.3.18.ebuild: + version bump + use mirror://debian instead of absolute url 28 Sep 2003; Heinrich Wendel <lanius@gentoo.org> rootstrap-0.3.13.ebuild: stable bump diff --git a/dev-util/rootstrap/files/digest-rootstrap-0.3.18 b/dev-util/rootstrap/files/digest-rootstrap-0.3.18 new file mode 100644 index 000000000000..cbc2ff4b0336 --- /dev/null +++ b/dev-util/rootstrap/files/digest-rootstrap-0.3.18 @@ -0,0 +1,2 @@ +MD5 c8f97cde2ad62041646b4b3e1d56f487 rootstrap_0.3.18.orig.tar.gz 19702 +MD5 dde2d1bfa7cf9c8c15c703dce7a1b7cf rootstrap_0.3.18-1.diff.gz 1632 diff --git a/dev-util/rootstrap/rootstrap-0.3.13.ebuild b/dev-util/rootstrap/rootstrap-0.3.13.ebuild index 6a48929617fa..198a7919bcd9 100644 --- a/dev-util/rootstrap/rootstrap-0.3.13.ebuild +++ b/dev-util/rootstrap/rootstrap-0.3.13.ebuild @@ -1,15 +1,17 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/rootstrap-0.3.13.ebuild,v 1.2 2003/11/03 10:54:26 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/rootstrap-0.3.13.ebuild,v 1.3 2004/03/02 13:58:51 lanius Exp $ DESCRIPTION="A tool for building complete Linux filesystem images" HOMEPAGE="http://packages.qa.debian.org/rootstrap" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86" -SRC_URI="http://ftp.debian.org/debian/pool/main/r/rootstrap/rootstrap_${PV}.orig.tar.gz - http://ftp.debian.org/debian/pool/main/r/rootstrap/rootstrap_${PV}-1.diff.gz" +SRC_URI="mirror://debian/pool/main/r/rootstrap/rootstrap_${PV}.orig.tar.gz + mirror://debian/pool/main/r/rootstrap/rootstrap_${PV}-1.diff.gz" + S=${WORKDIR}/rootstrap-${PV}.orig + DEPEND="sys-kernel/usermode-sources dev-util/debootstrap app-arch/dpkg diff --git a/dev-util/rootstrap/rootstrap-0.3.18.ebuild b/dev-util/rootstrap/rootstrap-0.3.18.ebuild new file mode 100644 index 000000000000..6364f2a11a77 --- /dev/null +++ b/dev-util/rootstrap/rootstrap-0.3.18.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/rootstrap/rootstrap-0.3.18.ebuild,v 1.1 2004/03/02 13:58:51 lanius Exp $ + +DESCRIPTION="A tool for building complete Linux filesystem images" +HOMEPAGE="http://packages.qa.debian.org/rootstrap" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +SRC_URI="mirror://debian/pool/main/r/rootstrap/rootstrap_${PV}.orig.tar.gz + mirror://debian/pool/main/r/rootstrap/rootstrap_${PV}-1.diff.gz" + +S=${WORKDIR}/rootstrap-${PV}.orig + +DEPEND="sys-kernel/usermode-sources + dev-util/debootstrap + app-arch/dpkg + dev-lang/python + app-text/docbook-sgml-utils" +IUSE="" + +src_unpack() { + unpack rootstrap_${PV}.orig.tar.gz + epatch ${DISTDIR}/rootstrap_${PV}-1.diff.gz + cd ${S} + sed -i -e "s/docbook-to-man/docbook2man/" Makefile +} + +src_compile() { + emake +} + +src_install() { + make DESTDIR=${D} install + dodoc COPYING +} |