blob: 51a8d032cf8866b2191f3798f15910edce80ddc8 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/arduino/arduino-0017.ebuild,v 1.1 2009/10/17 18:15:07 nixphoeni Exp $
EAPI=2
inherit eutils
# raxas says: there is a bug in original .17 ebuild, results wrong ldscripts on host,
# it's workaroundable but didn't thought it yet
# also, it's fix is expected to be different on x86 and AMD64 as well
DESCRIPTION="Libs&IDE for Arduino, an open-source AVR electronics prototyping platform"
HOMEPAGE="http://arduino.cc/"
# http://arduino.googlecode.com/files/arduino-0018.tgz
# http://arduino.googlecode.com/files/arduino-0018-64-2.tgz
SRC_URI="x86? ( http://arduino.googlecode.com/files/${P}.tgz )
amd64? ( http://arduino.googlecode.com/files/${P}-64-2.tgz )"
LICENSE="GPL-2 LGPL-2 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RESTRICT="strip binchecks"
IUSE="java"
# todo: +examples and stuff
RDEPEND="dev-embedded/avrdude sys-devel/crossdev"
DEPEND="${RDEPEND} java? (
virtual/jre
dev-embedded/uisp
dev-java/jikes
dev-java/rxtx
dev-java/antlr )"
pkg_setup() {
[ ! -x /usr/bin/avr-g++ ] && ewarn "Missing avr-g++; 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_prepare() {
# epatch "${FILESDIR}"/Makefile-${PV}.patch
# avrdude has it's own ebuild
rm -rf hardware/tools/avrdude*
# -java don't build IDE
if ! use java; then
rm -rf lib
rm -f arduino
else
# fix the provided arduino script to call out the right
# libraries, remove resetting of $PATH, and fix its
# reference to LD_LIBRARY_PATH (see bug #189249)
epatch "${FILESDIR}"/arduino-script-${PV}.patch
fi
}
src_install() {
mkdir -p "${D}/usr/share/${P}/" "${D}/usr/bin"
cp -a "${S}" "${D}/usr/share/"
# enable access to serial ports
fowners -R root:uucp "/usr/share/${P}/hardware"
if use java; then
sed -e s@__PN__@${P}@g < "${FILESDIR}"/arduino > "${D}/usr/bin/arduino"
chmod +x "${D}/usr/bin/arduino"
# get rid of libraries provided by other packages
rm -f "${D}/usr/share/${P}/lib/RXTXcomm.jar"
rm -f "${D}/usr/share/${P}/lib/librxtxSerial.so"
rm -f "${D}/usr/share/${P}/lib/antlr.jar"
rm -f "${D}/usr/share/${P}/lib/ecj.jar"
# use system avrdude
# patching class files is too hard
# todo: do it better (raxas) rozhodne pridat ${ROOT} prefix aspon
dosym /usr/bin/avrdude "/usr/share/${P}/hardware/tools/avrdude"
dosym /etc/avrdude.conf "/usr/share/${P}/hardware/tools/avrdude.conf"
# IDE tries to compile these libs at first start up
# fperms -R g+w "/usr/share/${P}/hardware/libraries"
# jednak to selhava v ebuildu, vsecko je jinde, druhak se mi nezda ze by ide neco kompilovalo napoprve
fi
dodoc readme.txt
}
|