blob: 900455a8653280261497fe03cc440920838bee91 (
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
|
# Copyright 1999-2012 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_p20120330.ebuild,v 1.1 2012/04/06 08:44:02 radhermit Exp $
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
)
|