diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-08-30 18:21:30 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-08-30 18:21:30 +0000 |
commit | 6f724731fd34ba895e3c909dfc41742637d4f36c (patch) | |
tree | 81cb4e14aca6fc4a9cd51f407853f28d60bd95c1 | |
parent | [bump] perl-core/DB_File-1.827.0 (diff) | |
download | gentoo-2-6f724731fd34ba895e3c909dfc41742637d4f36c.tar.gz gentoo-2-6f724731fd34ba895e3c909dfc41742637d4f36c.tar.bz2 gentoo-2-6f724731fd34ba895e3c909dfc41742637d4f36c.zip |
Version bump.
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
-rw-r--r-- | dev-embedded/msp430-libc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-embedded/msp430-libc/msp430-libc-20120716.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-embedded/msp430-libc/ChangeLog b/dev-embedded/msp430-libc/ChangeLog index f42933f4baa7..8b893da799fd 100644 --- a/dev-embedded/msp430-libc/ChangeLog +++ b/dev-embedded/msp430-libc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-embedded/msp430-libc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/msp430-libc/ChangeLog,v 1.9 2012/05/17 03:07:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/msp430-libc/ChangeLog,v 1.10 2012/08/30 18:21:30 radhermit Exp $ + +*msp430-libc-20120716 (30 Aug 2012) + + 30 Aug 2012; Tim Harder <radhermit@gentoo.org> +msp430-libc-20120716.ebuild: + Version bump. *msp430-libc-20120514 (17 May 2012) diff --git a/dev-embedded/msp430-libc/msp430-libc-20120716.ebuild b/dev-embedded/msp430-libc/msp430-libc-20120716.ebuild new file mode 100644 index 000000000000..7569b01b2017 --- /dev/null +++ b/dev-embedded/msp430-libc/msp430-libc-20120716.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/msp430-libc/msp430-libc-20120716.ebuild,v 1.1 2012/08/30 18:21:30 radhermit Exp $ + +EAPI="4" + +CHOST="msp430" +CTARGET="msp430" + +DESCRIPTION="C library for MSP430 microcontrollers" +HOMEPAGE="http://mspgcc.sourceforge.net" +SRC_URI="mirror://sourceforge/mspgcc/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="crosscompile_opts_headers-only" + +DEPEND="sys-devel/crossdev" +[[ ${CATEGORY/cross-} != ${CATEGORY} ]] \ + && RDEPEND="!dev-embedded/msp430-libc" \ + || RDEPEND="" + +S=${WORKDIR}/${P}/src + +pkg_setup() { + ebegin "Checking for msp430-gcc" + if type -p msp430-gcc > /dev/null ; then + eend 0 + else + eend 1 + + eerror + eerror "Failed to locate 'msp430-gcc' in \$PATH. You can install a MSP430 toolchain using:" + eerror " $ crossdev -t msp430" + eerror + die "MSP430 toolchain not found" + fi +} + +src_install() { + emake PREFIX="${D}"/usr install +} |