diff options
author | steve <steve@FreeBSD.org> | 1999-12-29 17:16:05 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-12-29 17:16:05 +0800 |
commit | 2059a130c1ce52cf1daedbd4f52afbca229529e7 (patch) | |
tree | 0575e44a908833747bdeca07c209e1ee420f5754 /java/jdbcpool/Makefile | |
parent | e23634f42fa15f6ee3e4a56fc19371788bab2d4a (diff) | |
download | freebsd-ports-gnome-2059a130c1ce52cf1daedbd4f52afbca229529e7.tar.gz freebsd-ports-gnome-2059a130c1ce52cf1daedbd4f52afbca229529e7.tar.zst freebsd-ports-gnome-2059a130c1ce52cf1daedbd4f52afbca229529e7.zip |
Adding jdbcpool version 0.94.
Implements a JDBC connection pool.
PR: 12523
Submitted by: Jose Marques <noway@nohow.demon.co.uk>
Diffstat (limited to 'java/jdbcpool/Makefile')
-rw-r--r-- | java/jdbcpool/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/java/jdbcpool/Makefile b/java/jdbcpool/Makefile new file mode 100644 index 000000000000..7366623ba970 --- /dev/null +++ b/java/jdbcpool/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: JDBC connection pool +# Version required: 0.94 +# Date created: 1999/07/04 +# Whom: Jose Marques +# +# $FreeBSD$ +# + +DISTNAME= jdbcpool-0.94 +CATEGORIES= java +MASTER_SITES= http://www.bitmechanic.com/projects/jdbcpool/dist/ + +MAINTAINER= noway@nohow.demon.co.uk + +RUN_DEPENDS= ${PREFIX}/jdk${JDK_VERSION}/bin/java:${PORTSDIR}/java/jdk + +JDK_VERSION= 1.1.8 +NO_BUILD= yes + +do-install: + @${MKDIR} ${PREFIX}/share/java/classes ${PREFIX}/share/java/jdbcpool + @${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.jar ${PREFIX}/share/java/classes/jdbcpool.jar + @cd ${WRKSRC}; \ + ${RM} -rf CVS; \ + ${RM} -rf examples/CVS; \ + ${RM} -rf examples/gsp/CVS; \ + ${CP} CHANGES ${PREFIX}/share/java/jdbcpool; \ + ${CP} LICENSE ${PREFIX}/share/java/jdbcpool; \ + ${CP} README ${PREFIX}/share/java/jdbcpool; \ + ${CP} -R examples ${PREFIX}/share/java/jdbcpool; \ + ${CP} -R javadoc ${PREFIX}/share/java/jdbcpool + +.include <bsd.port.mk> |