diff options
Diffstat (limited to 'dev-embedded/arduino/arduino-0011.ebuild')
-rw-r--r-- | dev-embedded/arduino/arduino-0011.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-embedded/arduino/arduino-0011.ebuild b/dev-embedded/arduino/arduino-0011.ebuild new file mode 100644 index 000000000000..5e27c204fc04 --- /dev/null +++ b/dev-embedded/arduino/arduino-0011.ebuild @@ -0,0 +1,44 @@ +# Copyright 2008-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/arduino/arduino-0011.ebuild,v 1.1 2008/09/21 05:03:06 solar Exp $ + +inherit eutils + +DESCRIPTION="Arduino is an open-source AVR electronics prototyping platform" +HOMEPAGE="http://arduino.cc/" +SRC_URI="http://www.arduino.cc/files/${P}-linux.tgz" +LICENSE="GPL-2 LGPL-2 CCPL-Attribution-ShareAlike-3.0" +SLOT="0" +KEYWORDS="~x86 ~amd64" +RESTRICT="strip binchecks" +IUSE="java" +RDEPEND="dev-embedded/avrdude" +DEPEND="${RDEPEND} sys-devel/crossdev java? ( virtual/jre dev-embedded/uisp dev-java/jikes dev-java/rxtx )" + +pkg_setup() { + [ ! -x /usr/bin/avr-gcc ] && ewarn "You need to crossdev -s4 avr" +} + +pkg_postinst() { + pkg_setup + einfo "Copy /usr/share/${P}/hardware/cores/arduino/Makefile and edit it to suit the project" +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/Makefile-${PV}.patch + rm -rf hardware/tools/ + if ! use java; then + rm -rf lib + rm -f arduino + fi +} + +src_install() { + mkdir -p "${D}/usr/share/${P}/" "${D}/usr/bin" + cp -a "${S}" "${D}/usr/share/" + chown root:uucp "${D}/usr/share/${P}/hardware" -R + use java && ( sed -e s@__PN__@${P}@g < "${FILESDIR}"/arduino > "${D}/usr/bin/arduino"; chmod +x "${D}/usr/bin/arduino" ) + +} |