blob: d9574eacde43e8f3288b176c0940fad9dacc4602 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/msp430-binutils/msp430-binutils-2.21.1_p20120406.ebuild,v 1.2 2014/11/08 17:09:22 vapier Exp $
EAPI="4"
PATCHVER="1.4"
BINUTILS_VER=${PV%_p*}
inherit toolchain-binutils
DESCRIPTION="Tools necessary to build programs for MSP430 microcontrollers"
SRC_URI+=" http://dev.gentoo.org/~radhermit/distfiles/${P}.patch.bz2"
KEYWORDS="~amd64 ~x86"
# needed to fix bug #381633
RDEPEND=">=sys-devel/binutils-config-3-r2"
pkg_setup() {
is_cross || die "Only cross-compile builds are supported"
}
PATCHES=(
"${WORKDIR}"/${P}.patch
)
|