mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 06:00:30 -04:00
- Remove reference to Linux base (Linux Compatibility not required) - Limit to architectures know to be able to enumerate serial ports on using RXTX port - Fix desktop entry - Links correct RXTX so library files depending on ARCH - Remove CHMOD usage in Makefile, and moved to pkg-plist - Fix Arduino wrapper to allow loading of sketches from the command line - Update RXTX enumeration to prevent scanning of LPT ports to increase startup speeds of Arduino IDE - Fix format of patch files - Remove bundled Linux libraries from the port prior to installation - Add support for Uarduno drivers - Fix links for java and lib files installed by port [comms/RXTX] - Update pkg-plist - Bump PORTREVISION PR: 200177 Submitted by: James Elstone, Craig Leres, swills Reported by: James Elstone Approved by: Craig Leres <leres@ee.lbl.gov> (maintainer)
8 lines
186 B
Bash
8 lines
186 B
Bash
#!/bin/sh
|
|
# wrapper to execute the Arduino start script
|
|
|
|
# Need the linux version of readlink
|
|
PATH="%%LINUXBASE%%/usr/bin:${PATH}"
|
|
export PATH
|
|
|
|
exec '%%PREFIX%%/%%PORTNAME%%/arduino' $@
|