summaryrefslogtreecommitdiff
blob: fdd6a3c4d12602540c13556843d4a4a59574ee34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

MAJOR_VERSION=${PV%\.[0-9]}

SBOX_GROUP="sbox"
RESTRICT="strip"

DESCRIPTION="Scratchbox is a cross-compilation toolkit designed to make embedded Linux application development easier."
HOMEPAGE="http://www.scratchbox.org/"
SRC_URI="arm? ( http://scratchbox.org/download/files/sbox-releases/stable/tarball/${PN/cs2005q3_2/cs2005q3.2}-arm-${PV}-i386.tar.gz )
	i386? ( http://scratchbox.org/download/files/sbox-releases/stable/tarball/${PN/cs2005q3_2/cs2005q3.2}-i386-${PV}-i386.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="arm i386"

DEPEND="=sys-devel/scratchbox-${MAJOR_VERSION}*"
RDEPEND="${DEPEND}"

TARGET_DIR="/opt/scratchbox"

S=${WORKDIR}/scratchbox

pkg_setup() {
	if ! use arm  && ! use i386; then
		ewarn "You have to specify at least one of the 'arm' and 'i386' use flags"
		ewarn "No toolchain will be installed now"
		die "Nothing to install!"
	fi
}

src_install() {
	dodir ${TARGET_DIR}
	if use arm || use i386; then
		cp -pRP * "${D}/${TARGET_DIR}"
	fi
}