diff options
author | Herve Quiroz <hq@FreeBSD.org> | 2005-10-12 11:51:51 +0000 |
---|---|---|
committer | Herve Quiroz <hq@FreeBSD.org> | 2005-10-12 11:51:51 +0000 |
commit | 7c0c4e551a68a38b1d4d211e95eb008e23d5c5a1 (patch) | |
tree | c7db0b0eba74b78f411df0749f7c8d49c0da40cc /www/servlet-api | |
parent | 70b5ead61db5c05b597521c537e8770b14b75464 (diff) | |
download | ports-7c0c4e551a68a38b1d4d211e95eb008e23d5c5a1.tar.gz ports-7c0c4e551a68a38b1d4d211e95eb008e23d5c5a1.zip |
The Servlet API
Java Servlet technology provides Web developers with a simple, consistent
mechanism for extending the functionality of a Web server and for accessing
existing business systems. A servlet can almost be thought of as an applet that
runs on the server side -- without a face. Java servlets make many Web
applications possible.
WWW: http://java.sun.com/products/servlet/
Notes
Notes:
svn path=/head/; revision=145099
Diffstat (limited to 'www/servlet-api')
-rw-r--r-- | www/servlet-api/Makefile | 27 | ||||
-rw-r--r-- | www/servlet-api/distinfo | 2 | ||||
-rw-r--r-- | www/servlet-api/pkg-descr | 9 |
3 files changed, 38 insertions, 0 deletions
diff --git a/www/servlet-api/Makefile b/www/servlet-api/Makefile new file mode 100644 index 000000000000..c7c97c5d43a6 --- /dev/null +++ b/www/servlet-api/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: Servlet API +# Date created: October 13, 2005 +# Whom: Herve Quiroz <hq@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= servlet-api +PORTVERSION= 2.4 +CATEGORIES= www java +MASTER_SITES= http://www.ibiblio.org/maven/servletapi/jars/ +EXTRACT_SUFX= .jar +EXTRACT_ONLY= # empty + +MAINTAINER= hq@FreeBSD.org +COMMENT= The Servlet API (JSR-168) + +USE_JAVA= yes +JAVA_VERSION= 1.4+ +NO_BUILD= yes + +PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar + +do-install: + ${INSTALL_DATA} ${_DISTDIR}/${DISTFILES} ${JAVAJARDIR}/${PORTNAME}.jar + +.include <bsd.port.mk> diff --git a/www/servlet-api/distinfo b/www/servlet-api/distinfo new file mode 100644 index 000000000000..404947df1bd8 --- /dev/null +++ b/www/servlet-api/distinfo @@ -0,0 +1,2 @@ +MD5 (servlet-api-2.4.jar) = f6cf3fde0b992589ed3d87fa9674015f +SIZE (servlet-api-2.4.jar) = 97693 diff --git a/www/servlet-api/pkg-descr b/www/servlet-api/pkg-descr new file mode 100644 index 000000000000..91b722e9b319 --- /dev/null +++ b/www/servlet-api/pkg-descr @@ -0,0 +1,9 @@ +The Servlet API + +Java Servlet technology provides Web developers with a simple, consistent +mechanism for extending the functionality of a Web server and for accessing +existing business systems. A servlet can almost be thought of as an applet that +runs on the server side -- without a face. Java servlets make many Web +applications possible. + +WWW: http://java.sun.com/products/servlet/ |