c082ec23b0
postgresql-jdbc now uses the great new USE_JAVA stuff PR: 36980 Submitted by: maintainer
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# New ports collection makefile for: PostgreSQL JDBC
|
|
# Date created: January 14, 2002
|
|
# Whom: Palle Girgensohn <girgen@partitur.se>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= postgresql-jdbc
|
|
CATEGORIES= databases java
|
|
|
|
MAINTAINER= girgen@partitur.se
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/ant:${PORTSDIR}/devel/jakarta-ant
|
|
|
|
POSTGRESQL_SUBPORT=YES
|
|
.include <${.CURDIR}/../postgresql7/Makefile>
|
|
|
|
CONFIGURE_ARGS= --with-java
|
|
|
|
USE_JAVA= 1.2+
|
|
|
|
CONFIGURE_ENV= JAVA_HOME="${JAVA_HOME}"
|
|
MAKE_ENV+= JAVA_HOME="${JAVA_HOME}"
|
|
MAKE_ARGS+= -C src/interfaces/jdbc
|
|
|
|
post-build:
|
|
@ cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${GMAKE} -C contrib/retep
|
|
|
|
post-install:
|
|
@ ${MKDIR} -m 0555 ${PREFIX}/share/java/classes ;\
|
|
${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/jars/postgresql.jar \
|
|
${PREFIX}/share/java/classes/postgresql.jar
|
|
@ cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${GMAKE} -C contrib/retep install
|
|
.if !defined(NOPORTDOCS)
|
|
@ ${MKDIR} -m 0555 ${PREFIX}/share/examples/postgresql ;\
|
|
cd ${WRKSRC}/src/interfaces/jdbc/example ;\
|
|
pax -rw . ${PREFIX}/share/examples/postgresql
|
|
.for i in README Implementation
|
|
@ ${INSTALL_DATA} ${WRKSRC}/src/interfaces/jdbc/$i \
|
|
${PREFIX}/share/examples/postgresql
|
|
.endfor
|
|
.endif
|
|
@ ${ECHO} ==================================== ;\
|
|
${SED} -e "s,/usr/local,${PREFIX},g" pkg-message ;\
|
|
${ECHO} ====================================
|
|
|
|
.include <bsd.port.mk>
|