diff options
author | Dominik Kapusta <ayoy@gentoo.org> | 2010-05-05 19:07:50 +0000 |
---|---|---|
committer | Dominik Kapusta <ayoy@gentoo.org> | 2010-05-05 19:07:50 +0000 |
commit | 62a3fc73e55897db2964d9db033b59a703fc10a4 (patch) | |
tree | 46d422a74b63fcae59abeb0fe8dc7165f2fcfc26 /dev-embedded | |
parent | Revert removal of math-pari version (diff) | |
download | gentoo-2-62a3fc73e55897db2964d9db033b59a703fc10a4.tar.gz gentoo-2-62a3fc73e55897db2964d9db033b59a703fc10a4.tar.bz2 gentoo-2-62a3fc73e55897db2964d9db033b59a703fc10a4.zip |
Revbump (bug #316435). Thanks to Ricardo Salveti (ricardo.salveti@openbossa.org) for the ebuild.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-embedded')
-rw-r--r-- | dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog | 9 | ||||
-rw-r--r-- | dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1.ebuild | 30 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog b/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog index 2ffa0c6a9170..7ea4a3c55ec7 100644 --- a/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog +++ b/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog,v 1.6 2010/04/04 09:10:46 ayoy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/ChangeLog,v 1.7 2010/05/05 19:07:50 ayoy Exp $ + +*scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1 (05 May 2010) + + 05 May 2010; Dominik Kapusta <ayoy@gentoo.org> + +scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1.ebuild: + Revbump (bug #316435). Thanks to Ricardo Salveti + (ricardo.salveti@openbossa.org) for the ebuild. *scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15 (04 Apr 2010) diff --git a/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1.ebuild b/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1.ebuild new file mode 100644 index 000000000000..5e5641cb5e8c --- /dev/null +++ b/dev-embedded/scratchbox-toolchain-cs2009q1-eglibc2_8/scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1.ebuild @@ -0,0 +1,30 @@ +# 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-cs2009q1-eglibc2_8/scratchbox-toolchain-cs2009q1-eglibc2_8-1.0.15-r1.ebuild,v 1.1 2010/05/05 19:07:50 ayoy Exp $ + +ARMV=${PV}-9 +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/_/.}-armv7-${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="~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}" +} |