blob: c3d7524733aeac21873636255c57b5154e696c83 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/msp430-gcc/msp430-gcc-4.7.0_p20120716.ebuild,v 1.1 2012/08/30 18:24:51 radhermit Exp $
EAPI="4"
PATCH_VER="1.1"
BRANCH_UPDATE=""
inherit toolchain
DESCRIPTION="The GNU Compiler Collection for MSP430 microcontrollers"
LICENSE="GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.2"
KEYWORDS=""
SRC_URI="${SRC_URI} http://dev.gentoo.org/~radhermit/dist/${P}.patch.bz2"
RDEPEND=""
DEPEND="${RDEPEND}
elibc_glibc? ( >=sys-libs/glibc-2.8 )
${CATEGORY}/msp430-binutils"
pkg_pretend() {
is_crosscompile || die "Only cross-compile builds are supported"
}
src_prepare() {
epatch "${DISTDIR}"/${P}.patch.bz2
}
|