aboutsummaryrefslogtreecommitdiff
path: root/devel/ocaml-camljava
Commit message (Collapse)AuthorAgeFilesLines
* Style: tab -> space.Eitan Adler2013-03-281-1/+1
| | | | | | | Most contributors copy an existing port when writing their own so reduce the number of bad examples in the tree. Notes: svn path=/head/; revision=315487
* Decommissioning java 1.5 (EOLed since October 2009):Baptiste Daroussin2012-12-101-7/+2
| | | | | | | suppress any reference to JAVA_VERSION= 1.5+ (part2) Notes: svn path=/head/; revision=308604
* - Return my ports back to the pool. I was unable to make any fixes toStanislav Sedov2011-10-241-1/+1
| | | | | | | | | | | my ports in the past 3 weeks while ports were broken on any 10.x machines, which means I'm unable to maintain them. So let people know that there's no available support for them until things are back to normal (which also means that anyone with spare time will be able to fix them without getting approval). Notes: svn path=/head/; revision=284225
* 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
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276999
* - Bump portrevisions on all ocaml libraries, as it appears that compiledStanislav Sedov2011-04-051-1/+1
| | | | | | | | | | | interface files (.cmi) are not backward compatible with a newer ocaml version. PR: ports/156195 Suggested by: mandree Notes: svn path=/head/; revision=272267
* 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
* - 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
* - Change my email.Stanislav Sedov2007-03-271-1/+1
| | | | | | | Suggested by: skv Notes: svn path=/head/; revision=188599
* Switch to using new files Mk/bsd.ocaml.mk [1] and Mk/bsd.xfce.mk [2].Mark Linimon2007-03-141-1/+0
| | | | | | | | | PR: 101029 [1], 108862 [2] Submitted by: Stanislav Sedov <ssedov at mbsd dot msk dot ru> [1], oliver [2] Notes: svn path=/head/; revision=187350
* This is a very preliminary release of CamlJava, an OCaml/JavaIon-Mihai Tetcu2006-08-044-0/+79
interface based on the following schema: Caml/C interface JNI (Java Native Interface) Caml <------------------> C <-----------------------------> Java Currently, CamlJava provides a low-level, weakly-typed OCaml interface very similar to the JNI. Java object references are mapped to an abstract type, and various JNI-like operations are provided to allow Java method invocation, field access, and more. A basic callback facility (allowing Java code to invoke methods on Caml objects) is also provided, although some stub Java code must be written by hand. In the future, a higher-level, strongly-typed interface will be provided, whereas Java classes are mapped directly to Caml classes. This raises fairly delicate type mapping issues, though, so don't hold your breath. WWW: http://caml.inria.fr/ PR: ports/101147 Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru> Notes: svn path=/head/; revision=169667