the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: jakarta-servletapi-5
Version: 2.4
Revision: 8
Description: Java Servlet 2.4 and JSP 2.0 API Classes
Type: java
License: BSD
Maintainer: Benjamin Reed
Depends: <<
xalan-j (>= 2.2-1),
xerces-j (>= 2.0-1),
system-java (>= 1.5-1)
<<
BuildDepends: <<
ant-base (>= 1.7.1-3),
ant-optional (>= 1.6.5-1),
xalan-j (>= 2.2-1),
xerces-j (>= 2.0-1),
fink (>= 0.29.7-1),
fink-mirrors (>= 0.22.1.1-1),
system-java-dev (>= 1.5-1)
<<
CustomMirror: <<
Primary: http://ranger.users.finkproject.org/distfiles
eur-NL: http://ranger.users.finkproject.org/distfiles
nam-US: http://ranger.befunk.com/fink
nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink
nam-CA: http://www.southofheaven.net/befunk
<<
Source: mirror:custom:jakarta-servletapi/%n-20100129.tar.bz2
Source-MD5: 14a0dc8e0ff830c0a42fc8ee2e2bc47b
SourceDirectory: %n
PatchScript: perl -pi -e 's,
CompileScript: <<
#!/bin/sh -ex
for dir in jsr152 jsr154; do
pushd $dir
ant dist
popd
done
<<
InstallScript: <<
#!/bin/sh -ex
install -d -m 755 %i/share/java/%n
install -c -m 644 jsr152/dist/lib/jsp-api.jar %i/share/java/%n/jsp20.jar
install -c -m 644 jsr154/dist/lib/servlet-api.jar %i/share/java/%n/servlet24.jar
mkdir -p %i/share/doc/%n
cp -R jsr152/dist/docs/api %i/share/doc/%n/
cp -R jsr154/dist/docs/api %i/share/doc/%n/
install -c -m 644 jsr152/dist/examples/examples.war %i/share/doc/%n/examples-jsp20.war
install -c -m 644 jsr154/dist/examples/examples.war %i/share/doc/%n/examples-servlet24.war
find %i/share/doc/%n -type d -exec chmod 755 {} \;
find %i/share/doc/%n -type f -exec chmod 644 {} \;
<<
DocFiles: jsr154/BUILDING.txt jsr154/LICENSE jsr154/README.txt
Homepage: http://tomcat.apache.org/
DescDetail: <<
This subproject contains the compiled code for the implementation classes of
the Java Servlet and JSP APIs (packages javax.servlet, javax.servlet.http,
javax.servlet.jsp, and javax.servlet.jsp.tagext). They are needed for servlet
development and the Tomcat servlet container.
Note that it does *not* add itself to the classpath by default, since there are
packages in Fink that expect to build against the servlet 2.3 API. Add
%p/share/java/jakarta-servletapi-5/*.jar to your classpath to do development.
<<