diff options
Diffstat (limited to 'recipes/servlet-api/servlet2.4_5.5.26.bb')
-rw-r--r-- | recipes/servlet-api/servlet2.4_5.5.26.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/recipes/servlet-api/servlet2.4_5.5.26.bb b/recipes/servlet-api/servlet2.4_5.5.26.bb new file mode 100644 index 0000000000..c4af1abba7 --- /dev/null +++ b/recipes/servlet-api/servlet2.4_5.5.26.bb @@ -0,0 +1,38 @@ +DESCRIPTION = "Servlet API 2.4 (from Tomcat 5.5)" +LICENSE = "AL2.0" +AUTHOR = "Apache Software Foundation" + +SRC_URI = "http://archive.apache.org/dist/tomcat/tomcat-5/v${PV}/src/apache-tomcat-${PV}-src.tar.gz" + +S = "${WORKDIR}/apache-tomcat-${PV}-src/servletapi/jsr154" + +inherit java-library + +DEPENDS = "fastjar-native" + +# Value of implementation.revision in build.xml +IMPL_REVISION = "1" + +JARFILENAME = "servlet-api-2.4.${IMPL_REVISION}.jar" +ALTJARFILENAMES = "servlet-api-2.4.jar servlet-api.jar servlet2.4.jar" + +do_unpackpost() { + sed -i -e "s|2.3.@implementation.version@|2.4.${IMPL_REVISION}|" src/etc/manifest +} + +addtask unpackpost after do_unpack before do_patch + +do_compile() { + mkdir -p build + + javac -sourcepath src/share -d build `find src/share/javax -name \*.java` + + # Copy extraneous files according to build.xml's compile task + (cd src/share && find . -name "*.properties" -exec cp {} ../../build/{} \;) + + mkdir -p build/javax/servlet/resources + cp src/share/dtd/jsp*.dtd build/javax/servlet/resources + cp src/share/dtd/web-jsp*.dtd build/javax/servlet/resources + + fastjar -C build -c -m src/etc/manifest -f ${JARFILENAME} . +} |