aboutsummaryrefslogtreecommitdiff
path: root/comms/rxtx
Commit message (Collapse)AuthorAgeFilesLines
* comms/rxtx: pass maintainer to submitterPhilip M. Gollucci2015-06-271-1/+1
| | | | | | | | | 550 5.1.1 <mirror176@cox.net> invalid recipient Requested by: Submitter Notes: svn path=/head/; revision=390726
* comms/rxtx: mutiple fixesPhilip M. Gollucci2015-06-2712-18/+11692
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makefile 1) Missing dependancy on plibthread.so.1 Java code base 2) Added commandline debug output in multiple Java files 3) Tided comment statements, tabulation and white space to aid reading of sections of the original source code 4) Added additional debug statements to aid diagnosis in multiple Java files 5) Moved error logging from Zystem to be local in the RXTXPort.java file (was never firing from Zystem); now common with rest of codebase 6) Ensured that RXTX only outputs debug level information when requested. 7) Only enumerate the local ports on initialisation once (use of init_clean), rather than three times. 8) Updated ports lists to reflect current usage pre FreeBSD v10 and post v10. 9) Debug identifier inserted before all calls 10) correctly read the properties file when there are multiple java library paths 11) Enabled the skipping of parrellel ports during scans where they are not used by the invoking java parent base to RXTX (Still allows them to be manually specified in gn.io.parellel env arg) SerialImp.c 12) Tidied code indentation (where needed, it is a medium length file and doesn't provide benifit on areas that work) 13) Added standard out debug support to allow for assessment of interaction with Java code that can be compiled in (DEBUG_STDOUT) 14) Added entry and exist debug statement for key functions 15) where sprintf is being used, ensure that the existing ptr refers to an empty string (uses memset to sizeof) 16) cleared up display tabulation of function headers in entire file (on second enumeration strings contained garbage) 17) Remove LEAVE and ENTRY functions as not working as expected in header. 18) Made sure all debug statements are null pointer terminated (note sprintf is not solely used for debug message formatting) 19) Added condition so that a port that is in use during testread() is still reported as selectable. (If you attempt to open it after the port scan and it is still EBUSY the behaviour is unaltered and will throw a suitable error back) 20) Disabled uucp for lpt ports, as uucp only applies to tty on FreeBSD (so says the Handbook...) 21) RXTXPort:interruptEventLoop - resolved SIGABRT call to process (intended to kill off thread not entire JRE)... 22) RXTXPort:interruptEventLoop now waits for timer in child thread to expire before attempting to closing the thread (delay between 0 and 1000000 sleeps) 23) All debug streams for FreeBSD now forward to same function for uniform formatting. This fixes two downstream issues in the arduino port, which results in missing dependancies, a core dump when uploading, or very slow port enumeration (up to 30s in some cases) when the arduino IDE is first started. PR: 200179 Submitted by: james@elstone.net Approved by: maintainer timeout (mirror176@cox.net ; 45 days) Notes: svn path=/head/; revision=390725
* - Don't use a strange prefixAntoine Brodin2014-11-112-11/+10
| | | | | | | - Strip shared libraries Notes: svn path=/head/; revision=372473
* Remove old libtool patchTijl Coosemans2014-09-181-3/+0
| | | | Notes: svn path=/head/; revision=368432
* Bump version due pkg-plist changed.Vanilla I. Shu2014-05-231-0/+1
| | | | | | | Submitted by: tijl@ Notes: svn path=/head/; revision=354914
* Stageify.Vanilla I. Shu2014-05-234-25/+19
| | | | | | | Approved by: portmgr@ Notes: svn path=/head/; revision=354904
* Convert c* to USES=zipBaptiste Daroussin2014-03-071-2/+1
| | | | Notes: svn path=/head/; revision=347403
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | comms) Notes: svn path=/head/; revision=327714
* Decommissioning java 1.5 (EOLed since October 2009):Baptiste Daroussin2012-12-101-6/+2
| | | | | | | suppress any reference to USE_JAVA= 1.5+ (part1) Notes: svn path=/head/; revision=308600
* - Update to version 2.2p2Pawel Pekala2011-09-1711-275/+24
| | | | | | | | | | | | - Assign mainatinership to submitter - Update WWW PR: ports/159735 Submitted by: Edward Sanford Sutton, III <mirror176@cox.net> Approved by: miwi, wen (mentors implicit) Notes: svn path=/head/; revision=281900
* Now that the Java 1.3 and Java 1.4 ports are deprecated and will expire soon,Mark Linimon2011-07-211-1/+1
| | | | | | | | | | | | | | | | | | | remove support for them from bsd.java.mk. As Jikes is not available in Java 1.5 or higher, remove it from bsd.java.mk too (suggested by hq@) and from the ports which used it (only occurences were USE_JIKES=no). Support for the Blackdown VM is also removed, as it is not available in Java 1.5 and higher. Also remove the mapping from Java 1.1-1.4 to Java 1.5+ in bsd.java.mk to detect old, broken ports; therefore bump the minimal value of JAVA_VERSION to 1.5. While here, replace static values of JAVA_VERSION in files/*.in by %%JAVA_VERSION%% . PR: ports/158969 Submitted by: rene Tested on: pointyhat-west -exp Notes: svn path=/head/; revision=278068
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* Fix a page fault when attempting to access a java variable by reference.Steve Price2011-01-034-1/+229
| | | | | | | | PR: 152882 Submitted by: Bob Frazier <bobf@mrp3.com> Notes: svn path=/head/; revision=267335
* Change the device name for USB serial ports from ttyD to ttyU.Steve Price2011-01-032-2/+2
| | | | | | | | PR: ports/152883 Submitted by: Bob Frazier <bobf@mrp3.com> Notes: svn path=/head/; revision=267334
* - Update list of supported serial ports in RXTX libraryMartin Wilke2009-11-042-12/+26
| | | | | | | | PR: 140187 Submitted by: Brian Williamson <bwilliamson@bex.net> Notes: svn path=/head/; revision=243776
* - Recognize USB serial portsPav Lucistnik2008-11-142-1/+12
| | | | | | | | PR: ports/127555 Submitted by: Takeshi MUTOH <mutoh@openedu.org> Notes: svn path=/head/; revision=222833
* - Fix build with jdk16Pav Lucistnik2008-09-082-1/+12
| | | | | | | | Submitted by: Zach Metzinger <zmetzing@pobox.com> Approved by: portmgr (self) Notes: svn path=/head/; revision=220298
* - Jean-Baptiste Quenot won't be able to maintain his FreeBSD ports anymore andPav Lucistnik2008-08-311-1/+1
| | | | | | | | | wants them to be released Submitted by: Jean-Baptiste Quenot <jb.quenot@caraldi.com> (maintainer) Notes: svn path=/head/; revision=219548
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-1/+1
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* - Use ARCH instead of MACHINE_ARCHAndrew Pantyukhin2007-06-281-1/+1
| | | | | | | | Approved by: Jean-Baptiste Quenot <jbq@caraldi.com> (maintainer, implicit), pav Notes: svn path=/head/; revision=194405
* - Fix plist on !i386Pav Lucistnik2007-06-282-6/+8
| | | | | | | OK'ed by: Jean-Baptiste Quenot <jbq@caraldi.com> (maintainer) Notes: svn path=/head/; revision=194394
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Fix after objformat removalPav Lucistnik2007-03-291-0/+3
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=188752
* Unbreak and update to 2.1.7r2.Stefan Walter2006-05-125-21/+18
| | | | | | | | | PR: 96820 Submitted by: Jean-Baptiste Quenot <jb.quenot@caraldi.com> (maintainer) Approved by: arved (mentor) Notes: svn path=/head/; revision=162193
* BROKEN: Does not compileKris Kennaway2006-04-221-0/+2
| | | | Notes: svn path=/head/; revision=160181
* Conversion to a single libtool environment.Ade Lovett2006-02-231-1/+1
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* Unbreak: define NO_MTREEHerve Quiroz2005-04-251-2/+1
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=134111
* Backout last commit: there is indeed something wrong with this portHerve Quiroz2005-04-211-0/+2
| | | | | | | | Pointy hat to: me Pointed out by: kris Notes: svn path=/head/; revision=133881
* Unbreak: the plist error was due to java/jdk14, not comms/rxtxHerve Quiroz2005-04-211-2/+0
| | | | | | | Reminded by: maintainer Notes: svn path=/head/; revision=133871
* BROKEN: Incomplete pkg-plistKris Kennaway2005-04-101-0/+2
| | | | Notes: svn path=/head/; revision=132931
* Fix missing JAVA_HOME at configureHerve Quiroz2004-10-251-1/+1
| | | | | | | | Reported by: pointyhat Approved by: maintainer Notes: svn path=/head/; revision=120122
* RXTX: serial and parallel I/O libraries supporting Sun's CommAPI. Open-sourceHerve Quiroz2004-10-207-0/+82
implementation of the Java Communications API. Native interface to serial ports in Java. PR: 65396 Submitted by: Jean-Baptiste Quenot <jb.quenot@caraldi.com> Reviewed by: glewis Approved by: glewis (mentor) Notes: svn path=/head/; revision=119844