summaryrefslogtreecommitdiff
path: root/textproc/jaxup (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-12-10Decommissioning java 1.5 (EOLed since October 2009):Baptiste Daroussin1-5/+2
suppress any reference to JAVA_VERSION= 1.5+ (part3) Notes: svn path=/head/; revision=308605
2011-07-21Now that the Java 1.3 and Java 1.4 ports are deprecated and will expire soon,Mark Linimon2-2/+2
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
2011-07-03-remove MD5Olli Hauer1-1/+0
Notes: svn path=/head/; revision=276994
2008-06-06Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis1-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
2007-05-19- Welcome X.org 7.2 \o/.Florent Thoumie1-1/+1
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
2006-01-24SHA256ifyEdwin Groothuis1-0/+1
Approved by: krion@ Notes: svn path=/head/; revision=154308
2004-12-12- Register needed JAR files in build dependencies as well [1]Herve Quiroz1-5/+10
- Use only those JAR files in the classpath when building utility classes Reported by: kris via pointyhat Notes: svn path=/head/; revision=123858
2004-12-09- Fix build: required JDK version is 1.4+ [1]Herve Quiroz2-3/+29
- Link API documention with Jaxen API and JDK Standard API, if installed - Rephrase some statement to calm portlint Reported by: krion via pointyhat [1] Notes: svn path=/head/; revision=123562
2004-11-17Added a new class and a launcher shell script to perform command-line XUpdateHerve Quiroz3-3/+81
processing using Jaxup: $ jaxup-xupdater <source-doc.xml> <xupdate-doc.xml> Bumped PORTREVISION to reflect this new feature. Notes: svn path=/head/; revision=121820
2004-11-17A Java XML Update engineHerve Quiroz4-0/+135
Jaxup defines an interface to update XML documents, through which clients can work without knowledge of the exact object model that the document uses. The interface is called Updater, and the idea behind it is the same as with Jaxen's Navigator interface. In addition, an implementation of xmldb.org's proposed XUpdate specification is provided. The implementation is in the XUpdate class. Implementations of the Updater interface are provided for the following object models: - DOM - Dom4j - JDom WWW: http://klomp.org/jaxup/ Notes: svn path=/head/; revision=121788