freebsd-ports/www/mod_jk/Makefile
Ernst de Haan 7ca01b0480 Using USE_JAVA. Supporting the setting of APACHE_PORT. This
has not been tested with Apache 2.0 though.

Looks for the right Tomcat JAR file. Since Tomcat 3.3
${TOMCAT_HOME}/lib/webserver.jar no longer exists.

Moved the file replacements (using ${SED}) from post-extract
to post-patch.

Changed the mod_jk.conf file to point to the right location
for the workers.properties file.

Bumped PORTREVISION.
2002-04-16 19:27:50 +00:00

49 lines
1.3 KiB
Makefile

# New ports collection makefile for: mod_jk
# Date created: Sun May 20 12:58:02 CEST 2001
# Whom: Dirk Froemberg <dirk@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mod_jk
PORTVERSION= 3.3.1
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://jakarta.apache.org/Builds/jakarta-tomcat/release/v${PORTVERSION}/src/ \
http://www.metaverse.nl/~ernst/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= znerd
DISTNAME= jakarta-tomcat-${PORTVERSION}-src
MAINTAINER= znerd@FreeBSD.org
BUILD_DEPENDS= ${APXS}:${APACHE_PORT}
RUN_DEPENDS= ${APXS}:${APACHE_PORT} \
${TOMCAT_HOME}/lib/tomcat.jar:${PORTSDIR}/www/jakarta-tomcat3
USE_GMAKE= YES
USE_JAVA= 1.2+
MAKEFILE= Makefile.freebsd
WRKSRC= ${WRKDIR}/jakarta-tomcat-${PORTVERSION}-src/src/native/mod_jk/apache1.3
APXS?= ${LOCALBASE}/sbin/apxs
APACHE_PORT?= ${PORTSDIR}/www/apache13
TOMCAT_HOME?= ${LOCALBASE}/jakarta-tomcat${PORTVERSION}
post-extract:
${MV} ${WRKSRC}/Makefile.freebsd ${WRKSRC}/Makefile.freebsd.orig
post-patch:
${SED} \
-e "s#%%APXS%%#${APXS}#g" \
-e "s#%%JAVA_HOME%%#${JAVA_HOME}#g" \
${FILESDIR}/Makefile.freebsd \
> ${WRKSRC}/Makefile.freebsd
do-install:
${APXS} -i -A -n jk ${WRKSRC}/mod_jk.so
${SED} -e "s#%%TOMCAT_HOME%%#${TOMCAT_HOME}#g" ${FILESDIR}/mod_jk.conf > ${WRKDIR}/mod_jk.conf
${INSTALL_DATA} ${WRKDIR}/mod_jk.conf ${PREFIX}/etc/apache
.include <bsd.port.mk>