diff options
author | Olivier Crête <tester@gentoo.org> | 2009-05-06 20:20:34 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-05-06 20:20:34 +0000 |
commit | e8fc88a269f5aed997983cff11a98c12a85c5e6c (patch) | |
tree | 9892f4bc52fd1c06ea2ee20d7094eb2003a53e8b /dev-embedded | |
parent | Add scratchbox new-style qemu devkit (diff) | |
download | gentoo-2-e8fc88a269f5aed997983cff11a98c12a85c5e6c.tar.gz gentoo-2-e8fc88a269f5aed997983cff11a98c12a85c5e6c.tar.bz2 gentoo-2-e8fc88a269f5aed997983cff11a98c12a85c5e6c.zip |
Add new scratchbox toolchain
(Portage version: 2.1.6.11/cvs/Linux i686)
Diffstat (limited to 'dev-embedded')
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/ChangeLog b/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/ChangeLog new file mode 100644 index 000000000000..1b11601a07ea --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/ChangeLog,v 1.1 2009/05/06 20:20:34 tester Exp $ + +*scratchbox-toolchain-cs2007q3-glibc2_5-1.0.11 (06 May 2009) + + 06 May 2009; Olivier Crête <tester@gentoo.org> +metadata.xml, + +scratchbox-toolchain-cs2007q3-glibc2_5-1.0.11.ebuild: + Add new scratchbox toolchain + diff --git a/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/metadata.xml b/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/metadata.xml new file mode 100644 index 000000000000..4fda9497e023 --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/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-toolchain-cs2007q3-glibc2_5/scratchbox-toolchain-cs2007q3-glibc2_5-1.0.11.ebuild b/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/scratchbox-toolchain-cs2007q3-glibc2_5-1.0.11.ebuild new file mode 100644 index 000000000000..e8f0210c9e75 --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/scratchbox-toolchain-cs2007q3-glibc2_5-1.0.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2007q3-glibc2_5/scratchbox-toolchain-cs2007q3-glibc2_5-1.0.11.ebuild,v 1.1 2009/05/06 20:20:34 tester Exp $ + +SBOX_GROUP="sbox" +RESTRICT="strip binchecks" + +ARMV=${PV}-7 +I486V=${PV}-5 + +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/${PN/_/.}-arm7-${ARMV}-i386.tar.gz + http://scratchbox.org/download/files/sbox-releases/stable/tarball/${PN/_/.}-i486-${I486V}-i386.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" +RDEPEND="=dev-embedded/scratchbox-1.0*" + +TARGET_DIR="/opt/scratchbox" + +S=${WORKDIR}/scratchbox + +src_install() { + dodir ${TARGET_DIR} + cp -pRP * "${D}/${TARGET_DIR}" +} |