diff options
author | Olivier Crête <tester@gentoo.org> | 2009-05-06 19:35:39 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-05-06 19:35:39 +0000 |
commit | 5e76837e74116299df4f585ab0b462d5e66be117 (patch) | |
tree | 65416eea584d07fbb15f6523ff53d7dbd6f7a2ab /dev-embedded | |
parent | Adding scratchbox, from sunrise and bug #94225 (diff) | |
download | gentoo-2-5e76837e74116299df4f585ab0b462d5e66be117.tar.gz gentoo-2-5e76837e74116299df4f585ab0b462d5e66be117.tar.bz2 gentoo-2-5e76837e74116299df4f585ab0b462d5e66be117.zip |
Adding scratchbox, from sunrise and bug #94225
(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-cs2005q3_2-glibc2_5/ChangeLog b/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/ChangeLog new file mode 100644 index 000000000000..e879caa4da5e --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/ChangeLog,v 1.1 2009/05/06 19:35:39 tester Exp $ + +*scratchbox-toolchain-cs2005q3_2-glibc2_5-1.0.7 (06 May 2009) + + 06 May 2009; Olivier Crête <tester@gentoo.org> +metadata.xml, + +scratchbox-toolchain-cs2005q3_2-glibc2_5-1.0.7.ebuild: + Initial version, from sunrise and bug #94225 + diff --git a/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/metadata.xml b/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/metadata.xml new file mode 100644 index 000000000000..4fda9497e023 --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2005q3_2-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-cs2005q3_2-glibc2_5/scratchbox-toolchain-cs2005q3_2-glibc2_5-1.0.7.ebuild b/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/scratchbox-toolchain-cs2005q3_2-glibc2_5-1.0.7.ebuild new file mode 100644 index 000000000000..933f7c88dd45 --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2005q3_2-glibc2_5/scratchbox-toolchain-cs2005q3_2-glibc2_5-1.0.7.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-cs2005q3_2-glibc2_5/scratchbox-toolchain-cs2005q3_2-glibc2_5-1.0.7.ebuild,v 1.1 2009/05/06 19:35:39 tester Exp $ + +SBOX_GROUP="sbox" +RESTRICT="strip binchecks" + +ARMV=${PV} +I386V=${PV}.2 + +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/cs2005q3_2-glibc2_5/cs2005q3.2-glibc2.5}-arm-${PV}.2-i386.tar.gz + http://scratchbox.org/download/files/sbox-releases/stable/tarball/${PN/cs2005q3_2-glibc2_5/cs2005q3.2-glibc2.5}-i386-${PV}-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}" +} |