diff options
author | Alec Warner <antarus@gentoo.org> | 2006-08-04 22:03:44 +0000 |
---|---|---|
committer | Alec Warner <antarus@gentoo.org> | 2006-08-04 22:03:44 +0000 |
commit | 93b2977addd790314d00f731aa9fe88fc71e1c4e (patch) | |
tree | 40d41304b037a8b0f82e7d232f8985d21cb138bc /dev-util/debootstrap | |
parent | add nodpkg use flag for bug # 142666 (diff) | |
download | historical-93b2977addd790314d00f731aa9fe88fc71e1c4e.tar.gz historical-93b2977addd790314d00f731aa9fe88fc71e1c4e.tar.bz2 historical-93b2977addd790314d00f731aa9fe88fc71e1c4e.zip |
Trying to fix a small issue
Package-Manager: portage-2.1_rc3-r4
Diffstat (limited to 'dev-util/debootstrap')
-rw-r--r-- | dev-util/debootstrap/debootstrap-0.3.3-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-util/debootstrap/debootstrap-0.3.3-r1.ebuild b/dev-util/debootstrap/debootstrap-0.3.3-r1.ebuild new file mode 100644 index 000000000000..f514309873ed --- /dev/null +++ b/dev-util/debootstrap/debootstrap-0.3.3-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-0.3.3-r1.ebuild,v 1.1 2006/08/04 22:03:44 antarus Exp $ + +DESCRIPTION="Debian bootstrap scripts" +HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html" +SRC_URI="mirror://debian/pool/main/d/debootstrap/debootstrap_${PV}.tar.gz + mirror://gentoo/devices.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~x86" +IUSE="nodpkg" + +DEPEND="sys-devel/binutils + net-misc/wget + !nodpkg? ( app-arch/dpkg )" + +S=${WORKDIR}/${PV} + +src_unpack() { + unpack debootstrap_${PV}.tar.gz + cp "${DISTDIR}"/devices.tar.gz "${S}"/devices-std.tar.gz || die +} + +src_compile() { + emake pkgdetails debootstrap-arch || die +} + +src_install() { + make DESTDIR="${D}" install-allarch || die + dodoc TODO +} |