aboutsummaryrefslogtreecommitdiffstats
path: root/lang/jakarta-commons-jelly/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* ${RM} already has -f.mat2016-10-211-1/+1
| | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
* Cleanup DIST* variables.mat2015-05-121-1/+1
| | | | | | | | | | | When appropriate: - Try to use DISTVERSION{SUF,PRE}FIX - Replace PORTNAME-PORTVERSION by DISTNAME - Convert MASTER_SITES to use macros - Other light cleanup With hat: portmgr Sponsored by: Absolight
* - Simplify MASTER_SITESamdmi32015-03-121-3/+3
| | | | - Add empty directory to plist
* - Add staging supportpawel2014-06-011-23/+9
| | | | | | | - Convert to new options framework - Drop RUN_DEPENDS on javavmwrapper, pulled in by java port - Use PORDATA instead of generated plist - Fix WWW line
* - Reassign ports to the heaptabthorpe2014-03-021-1/+1
| | | | - Thank you hq@ for your years of service!
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | lang)
* Decommissioning java 1.5 (EOLed since October 2009):bapt2012-12-101-5/+2
| | | | suppress any reference to JAVA_VERSION= 1.5+ (part2)
* Now that the Java 1.3 and Java 1.4 ports are deprecated and will expire soon,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
* Bump portrevision due to upgrade of devel/gettext.edwin2008-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)
* Apache Commons project are no longer hosted under MASTER_SITES_APACHEehaupt2008-02-271-2/+2
| | | | | | | | | | jakarta/commons subdirectory, they have been moved one directory up. Introduce MASTER_SITE_APACHE_COMMONS_SOURCE and adjust 22 ports accordingly. PR: 121041 Submitted by: Marcin Cieslak <saper@system.pl> Approved by: portmgr (linimon)
* - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* Jelly is an XML based scripting engine. The basic idea is that XML elements canhq2005-08-011-0/+54
be bound to a Java Tag which is a Java bean that performs some function. Jelly is totally extendable via custom actions (in a similar way to JSP custom tags) as well as cleanly integrating with scripting languages such as Jexl, Velocity, pnuts, beanshell and via BSF (Bean Scripting Framework) languages like JavaScript & JPython. Jelly uses an XMLOutput class which extends SAX ContentHandler to output XML events. This makes Jelly ideal for XML content generation, SOAP scripting or dynamic web site generation. A single Jelly tag can produce, consume, filter or transform XML events. This leads to a powerful XML pipeline engine similar in some ways to Cocoon. WWW: http://jakarta.apache.org/commons/jelly/index.html