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 | 330228619b64f4b9dc1ed7d96f70242ed515bacf (patch) | |
tree | 1b4a20fbaa7140948c5d095e50435303b45fbd08 /dev-util/debootstrap | |
parent | add nodpkg use flag for bug # 142666 (diff) | |
download | gentoo-2-330228619b64f4b9dc1ed7d96f70242ed515bacf.tar.gz gentoo-2-330228619b64f4b9dc1ed7d96f70242ed515bacf.tar.bz2 gentoo-2-330228619b64f4b9dc1ed7d96f70242ed515bacf.zip |
Trying to fix a small issue
(Portage version: 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 +} |