blob: 833d4ca473d8ba4ae90cb4649a1e5df88dff0034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/msp430mcu/msp430mcu-20120716.ebuild,v 1.1 2012/08/30 18:22:51 radhermit Exp $
EAPI="4"
inherit eutils
DESCRIPTION="MCU-specific data for MSP430 microcontrollers"
HOMEPAGE="http://mspgcc.sourceforge.net"
SRC_URI="mirror://sourceforge/mspgcc/${PN}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_install() {
MSP430MCU_ROOT="${S}" ./scripts/install.sh "${D}/usr"
# remove unnecessary script
rm "${D}"/usr/bin/${PN}-config || die
}
|