commons-fileupload _unstable_ port information

Package: commons-fileupload
Version: 1.2.2
Revision: 1
Description: Jakarta Commons - File Upload
Type: java(1.5)
License: BSD
Maintainer: Benjamin Reed

Depends: <<
jakarta-servletapi,
system-java (>= 1.5-1)
<<
BuildDepends: <<
ant-base (>= 1.8.1-1),
ant-junit (>= 1.6.5-1),
fink (>= 0.29.7-1),
fink-mirrors (>= 0.22.1.1-1),
jakarta-servletapi,
system-java-dev (>= 1.5-1)
<<

Source: mirror:apache:jakarta/commons/fileupload/source/%n-%v-src.tar.gz
Source-MD5: 9ec666ec10b4ffbc3b97a841dfd2c1d8
PatchScript: <<
cp LICENSE.txt ../LICENSE
perl -pi -e 's, <<

UseMaxBuildJobs: true
CompileScript: <<
#!/bin/sh -ex

ant -Dnoget=true dist
<<

InstallScript: <<
mv dist/%n-*.jar dist/%n.jar
mkdir -p %i/share/doc/%n
(cd dist/docs; gnutar -cf - .) | (cd %i/share/doc/%n; gnutar -xf -)
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
<<
JarFiles: dist/*.jar
DocFiles: LICENSE.txt

Homepage: http://jakarta.apache.org/commons/dbcp/
DescDetail: <<
The Commons FileUpload package makes it easy to add robust,
high-performance, file upload capability to your servlets
and web applications.

FileUpload parses HTTP requests which conform to RFC 1867,
"Form-based File Upload in HTML". That is, if an HTTP request
is submitted using the POST method, and with a content type of
"multipart/form-data", then FileUpload can parse that request,
and make the results available in a manner easily used by the
caller.
<<