diff options
author | Dominik Kapusta <ayoy@gentoo.org> | 2010-09-19 10:17:27 +0000 |
---|---|---|
committer | Dominik Kapusta <ayoy@gentoo.org> | 2010-09-19 10:17:27 +0000 |
commit | bafc9b2a99f1e4ef851952fbcfdb6f8e452ca5fd (patch) | |
tree | f5209025cb806276570b2e109848ce3a07e9e4ed /dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10 | |
parent | Version bump, remove old versions. Thanks to David King <amigadave@amigadave.... (diff) | |
download | gentoo-2-bafc9b2a99f1e4ef851952fbcfdb6f8e452ca5fd.tar.gz gentoo-2-bafc9b2a99f1e4ef851952fbcfdb6f8e452ca5fd.tar.bz2 gentoo-2-bafc9b2a99f1e4ef851952fbcfdb6f8e452ca5fd.zip |
Version bump, remove old versions. Thanks to David King <amigadave@amigadave.com> for reporting (bug #338019).
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Diffstat (limited to 'dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10')
-rw-r--r-- | dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog | 9 | ||||
-rw-r--r-- | dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18.ebuild | 32 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog b/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog index 4e294753a9e5..bd4413cc6113 100644 --- a/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog +++ b/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog,v 1.2 2010/09/08 17:32:00 ayoy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/ChangeLog,v 1.3 2010/09/19 10:17:26 ayoy Exp $ + +*scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18 (19 Sep 2010) + + 19 Sep 2010; Dominik Kapusta <ayoy@gentoo.org> + +scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18.ebuild: + Version bump, remove old versions. Thanks to David King + <amigadave@amigadave.com> for reporting (bug #338019). *scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.17-r1 (08 Sep 2010) diff --git a/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18.ebuild b/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18.ebuild new file mode 100644 index 000000000000..07fe027dd93c --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2009q3-eglibc2_10/scratchbox-toolchain-cs2009q3-eglibc2_10-1.0.18.ebuild,v 1.1 2010/09/19 10:17:27 ayoy Exp $ + +ARMHARDV="hard-${PV}-4" +ARMSOFTV="soft-${PV}-5" +I486V="1.0.17-3" + +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/hathor/tarball/${PN/_/.}-armv7-${ARMHARDV}-i386.tar.gz + http://scratchbox.org/download/files/sbox-releases/hathor/tarball/${PN/_/.}-armv7-${ARMSOFTV}-i386.tar.gz + http://scratchbox.org/download/files/sbox-releases/hathor/tarball/${PN/_/.}-i486-${I486V}-i386.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# Stripping BREAKS scratchbox, it runs in a chroot and is pre-stripped when needed (bug #296294) +RESTRICT="strip" + +DEPEND="" +RDEPEND="=dev-embedded/scratchbox-1.0*" + +TARGET_DIR="/opt/scratchbox" + +S=${WORKDIR}/scratchbox + +src_install() { + dodir ${TARGET_DIR} + cp -pRP * "${D}/${TARGET_DIR}" +} |