blob: b68b2330235f8d38193534bd9aa0cc7ae10fc156 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Cell SPE examples"
HOMEPAGE=""
SRC_URI="http://dev.gentoo.org/~lu_zero/spe-samples-1.0.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc"
IUSE=""
DEPEND=">=sys-libs/libspe2-2.0"
RDEPEND=""
src_unpack() {
unpack ${A}
# make sure it uses the right compiler.
sed -i -e "s:spu-gcc:spu-elf-gcc:g" */spe/configure*
}
|