| 1 |
# Copyright 1999-2010 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/scratchbox-devkit-debian-squeeze/scratchbox-devkit-debian-squeeze-1.0.4.ebuild,v 1.1 2010/06/29 17:37:44 ayoy Exp $
|
| 4 |
|
| 5 |
DESCRIPTION="A cross-compilation toolkit designed to make embedded Linux application development easier."
|
| 6 |
HOMEPAGE="http://www.scratchbox.org/"
|
| 7 |
SRC_URI="http://scratchbox.org/download/files/sbox-releases/hathor/tarball/${P}-i386.tar.gz"
|
| 8 |
LICENSE="GPL-2"
|
| 9 |
SLOT="0"
|
| 10 |
KEYWORDS="~amd64 ~x86"
|
| 11 |
IUSE=""
|
| 12 |
|
| 13 |
# Stripping BREAKS scratchbox, it runs in a chroot and is pre-stripped when needed (bug #296294)
|
| 14 |
RESTRICT="strip"
|
| 15 |
|
| 16 |
DEPEND=""
|
| 17 |
RDEPEND="=dev-embedded/scratchbox-1.0*"
|
| 18 |
|
| 19 |
TARGET_DIR="/opt/scratchbox"
|
| 20 |
|
| 21 |
S=${WORKDIR}/scratchbox
|
| 22 |
|
| 23 |
src_install() {
|
| 24 |
dodir ${TARGET_DIR}
|
| 25 |
cp -pRP * "${D}/${TARGET_DIR}"
|
| 26 |
}
|