090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
39 lines
970 B
Makefile
39 lines
970 B
Makefile
# New ports collection makefile for: JDBC connection pool
|
|
# Date created: 1999/07/04
|
|
# Whom: Jose Marques
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jdbcpool
|
|
PORTVERSION= 0.99
|
|
PORTREVISION= 3
|
|
CATEGORIES= java databases
|
|
MASTER_SITES= http://www.bitmechanic.com/projects/jdbcpool/dist/
|
|
|
|
MAINTAINER= java@FreeBSD.org
|
|
COMMENT= JDBC connection pool
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.2+
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= CHANGES LICENSE README
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS+= javadoc
|
|
.endif
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -name CVS -type dir | ${XARGS} ${RM} -rf
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.jar ${JAVAJARDIR}/${PORTNAME}.jar
|
|
cd ${WRKSRC}/examples \
|
|
&& ${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \; \
|
|
&& ${FIND} . -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \;
|
|
cd ${WRKSRC} \
|
|
&& ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; \
|
|
&& ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \;
|
|
|
|
.include <bsd.port.mk>
|