diff options
author | Olivier Crête <tester@gentoo.org> | 2009-05-06 19:33:49 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-05-06 19:33:49 +0000 |
commit | 07586fa5a8ac25fd0ddf8e091f47da9e5b008607 (patch) | |
tree | 0a6428032edfe72cf092775ae1c4e10d3e7d797e /dev-embedded/scratchbox-devkit-apt-https | |
parent | Adding scratchbox, from sunrise and bug #94225 (diff) | |
download | gentoo-2-07586fa5a8ac25fd0ddf8e091f47da9e5b008607.tar.gz gentoo-2-07586fa5a8ac25fd0ddf8e091f47da9e5b008607.tar.bz2 gentoo-2-07586fa5a8ac25fd0ddf8e091f47da9e5b008607.zip |
Adding scratchbox, from sunrise and bug #94225
(Portage version: 2.1.6.11/cvs/Linux i686)
Diffstat (limited to 'dev-embedded/scratchbox-devkit-apt-https')
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-embedded/scratchbox-devkit-apt-https/ChangeLog b/dev-embedded/scratchbox-devkit-apt-https/ChangeLog new file mode 100644 index 000000000000..85f37c6cf229 --- /dev/null +++ b/dev-embedded/scratchbox-devkit-apt-https/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-embedded/scratchbox-devkit-apt-https +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-devkit-apt-https/ChangeLog,v 1.1 2009/05/06 19:33:49 tester Exp $ + +*scratchbox-devkit-apt-https-1.0.5 (06 May 2009) + + 06 May 2009; Olivier Crête <tester@gentoo.org> +metadata.xml, + +scratchbox-devkit-apt-https-1.0.5.ebuild: + Initial version, from sunrise and bug #94225 + diff --git a/dev-embedded/scratchbox-devkit-apt-https/metadata.xml b/dev-embedded/scratchbox-devkit-apt-https/metadata.xml new file mode 100644 index 000000000000..4fda9497e023 --- /dev/null +++ b/dev-embedded/scratchbox-devkit-apt-https/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>dev-embedded</herd> +<maintainer> + <email>tester@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/dev-embedded/scratchbox-devkit-apt-https/scratchbox-devkit-apt-https-1.0.5.ebuild b/dev-embedded/scratchbox-devkit-apt-https/scratchbox-devkit-apt-https-1.0.5.ebuild new file mode 100644 index 000000000000..14b090eb9c1d --- /dev/null +++ b/dev-embedded/scratchbox-devkit-apt-https/scratchbox-devkit-apt-https-1.0.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-devkit-apt-https/scratchbox-devkit-apt-https-1.0.5.ebuild,v 1.1 2009/05/06 19:33:49 tester Exp $ + +SBOX_GROUP="sbox" +RESTRICT="strip binchecks" + +DESCRIPTION="A cross-compilation toolkit designed to make embedded Linux application development easier." +HOMEPAGE="http://www.scratchbox.org/" +SRC_URI="http://scratchbox.org/download/files/sbox-releases/stable/tarball/${P}-i386.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="=dev-embedded/scratchbox-1.0*" +DEPEND="" + +TARGET_DIR="/opt/scratchbox" + +S=${WORKDIR}/scratchbox + +src_install() { + dodir ${TARGET_DIR} + cp -pRP * "${D}/${TARGET_DIR}" +} |