pkgsrc/lang/classpath/Makefile

13 lines
247 B
Makefile
Raw Normal View History

Update lang/classpath and lang/classpath-gui to 0.91 New in release 0.91 (May 14, 2006) (See the ChangeLog file for a full list of changes.) * Experimental activation (java.rmi.activation) support, including RMI activation daemon and persistent naming service tools. * Experimental printing support: The API implementation of the javax.print packages has been finished and work on the printing provider implementation started. Currently supported features from the Java Print Service API are print service discovery (CUPS registered printers), single document print jobs and support for client-formatted print data. An example application (see: examples/gnu/classpath/examples/print/Demo) has been added to show the API usage for service discovery and printing of files. * The GTKToolkit now gives access to the both the system clipboard and system selection. * Custom mouse cursor support has been added to the gtk+ peers. And cursors can now also be set on light-weight components. * Free Swing improvements: Support for OceanTheme has been mostly completed and turned on as default Metal theme. X11-style Copy and Paste behavior in text components with the middle mouse button. Support cursor changes on various components when resizing. Support for Look and Feel window decorations has been added. * Updated locale data information to CLDR 1.3. * Various bugs in Classpath's SecureRandom implementations have been fixed; that class now respects the "securerandom.source" security property and the "java.security.egd" system property. * Support for assistive technologies has been added to AWT and Swing.
2006-05-16 15:27:33 +02:00
# $NetBSD: Makefile,v 1.13 2006/05/16 13:27:33 tonio Exp $
.include "Makefile.common"
BUILD_DEPENDS+= zip>=2.3:../../archivers/zip
Update to gnu classpath 0.90 New in release 0.90 (March 6, 2006) * Many Swing improvements * AWT. Improved support for mixing "lightweight" and "heavyweight" Components in Containers. Better support for dynamically updated menus. Better 1.0 event model support for Scrollbars. Better class documentation of gtk+ awt peers. * GNU Crypto and Jessie have been merged into GNU Classpath; this provides Classpath with a wide array of cryptographic algorithms (ciphers, message digests, etc.) and implementations of SSL version 3 and TLS version 1. These roughly complement the public `java.security.' `javax.crypto,' and `javax.net.ssl' packages, and are service providers implementing the underlying algorithms. * Updated HTTP and FTP URLConnection protocol handlers. HTTPS support out of the box. * Unicode 4.0.0 is supported. Character now includes support for using ether a char or an int to identify code points. * The new folder tools includes GIOP and RMI stub and tie source code generators, IOR parser and both transient and persistent GIOP naming services. * XML validaton support for RELAX NG and W3C XML schema namespace URIs. RELAX NG pluggable XML schema datatype library API and an implementation for XML Schema Datatypes (http://www.w3.org/TR/xmlschema-2/). * Updated StAX implementaton to be compatible with final JSWDP 2.0. * gnu.regexp updated from GNU/Posix syntax to support util.regex syntax including various Unicode blocks, categories and properties. Runtime interface changes: * A new class, VMMath, is now available which separates the native mathematical functions from java.lang.Math. The previous fdlibm implementation now forms the reference material for this class. * Updated VMObjectInputStream class to return Thread context class loader if no other class loader is found. * Updated documentation on InstrumentationImpl in vmintegration guide. And of course all the implovements from the previous releases
2006-04-15 21:52:27 +02:00
USE_TOOLS+= makeinfo
INFO_FILES= # PLIST
CONFIGURE_ARGS+= --disable-gtk-peer
Update to 0.07: New in release 0.07 (2003/30/11) * Works with libtool 1.5 (and 1.4.3). * java.awt gtk+ peers now depend on gtk+ 2.2.x and uses pango. Lots and lots improvements on the peers. * java.awt.geom.CubicCurve2D, java.awt.geom.QuadCurve2D: Subdivision and flatness calculation implemented. * java.awt.geom.FlatteningPathIterator: Working implementation. * gnu.java.awt.BitwiseXORComposite helper class. * New rmic compilers (jikes, kjc) support. * java.text bug fixing and 1.4 updates (Currency). * Hashtable and HashMap function more similar to other implementations. * javax.naming and java.beans classloader fixes. * URL parsing, URLConnection, protocol and (needed) permission fixes. * More java.nio implementation (API complete, but implementation not finished yet). * Lots of java.net code cleanup. * Improved documentation. * Numerous bug fixes in almost every package, and lots of updates for 1.4 functionality. * Fixed Classpath bugs: #2944 Incorrect synchronization in java.util.logging.ErrorManager #6075 java.awt.geom.GeneralPath.getCurrentPoint returns wrong results #6076 java.awt.geom.GeneralPath constructor sometimes hangs #6089 java.awt.geom.GeneralPath.getPathIterator does not work [...] VM Interface changes: * Thread has been split in a VM-independent Thread class and a VM-dependent VMThread class. New in release 0.06 (2003/22/08) * Update java.awt peers to GTK+2. * java.awt.GridBagLayout implementation. * javax.swing.border implementation. * java.security and java.security.cert updated to 1.4 spec. * New JNI native target code layer. See native/target/readme.txt. * --enable-regen-headers configure flag for automatic jni .h file generation. * Removed workaround for gcj 3.2 and lower, gcj 3.3+ or jikes 1.18+ is now needed for compiling. * Lots of improvements and/or new classes for java.awt, java.awt.dnd, java.awt.font, java.awt.geom, java.awt.image, java.io, java.math, java.net, java.nio, java.rmi, java.text, java.util, javax.swing, javax.swing.plaf, javax.swing.text. VM Interface changes: * VMClassLoader.loadClass(), the bootstrap classloader called by Class.forName() and ClassLoader.loadClass(), may now return null when a class is not found instead of throwing a new ClassNotFoundException. This is a performance optimization in some cases. This also changes the Class.forName() reference code. * Native methods in Class have been moved to VMClass. A few additional methods are also available in VMClass to provide optional performance improvements. * A VM can now supply its own String.intern() strategy through the VMString class. The supplied VMString reference class implements the original WeakHashMap strategy. * Float and Double to/from bits conversion functions can now be supplied by the VM through VMFloat and VMDouble. Default JNI conversion methods are supplied.
2004-03-07 22:31:09 +01:00
.include "../../mk/bsd.pkg.mk"