freebsd-ports/www/resin3/Makefile
Ernst de Haan 2cbb10ab13 New port: resin3.
PR:		54853
Submitted by:	Jean-Baptiste Quenot <jb.quenot@caraldi.com>
See:		http://caraldi.com/jbq/resin/
2003-09-29 12:57:59 +00:00

80 lines
1.9 KiB
Makefile

# New ports collection makefile for: resin3
# Whom: Jean-Baptiste Quenot <jb.quenot@caraldi.com>
# Date Created: 2003-09-29 14:17:14
#
# $FreeBSD$
#
PORTNAME= resin
PORTVERSION= 3.0.3
CATEGORIES= www java
MASTER_SITES= http://www.caucho.com/download/
MAINTAINER= jb.quenot@caraldi.com
COMMENT= Resin, a Java-based Application Server, 3.x branch
USE_JAVA= 1.2+
HAS_CONFIGURE= yes
USE_PERL5= yes
# Customizable settings
RUNASUSER?= www
RUNASUID?= 80
GROUP?= ${RUNASUSER}
GID?= ${RUNASUID}
PORT?= 8080
APP_HOME?= ${PREFIX}/${PKGNAMEPREFIX}${PORTNAME}
WITH_APACHE?= NO
WITH_APACHE2?= NO
# Other settings
APXS?= ${LOCALBASE}/sbin/apxs
MOD_DIR?= `${APXS} -q LIBEXECDIR`
# Pass JAVA_HOME as determined by bsd.java.mk
CONFIGURE_ARGS+= --with-java-home=${JAVA_HOME}
# Install the Apache plugin if needed
.if defined(WITH_APACHE) && ($(WITH_APACHE) == yes || $(WITH_APACHE) == YES)
#
# Apache 1.3
#
BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/www/apache13
CONFIGURE_ARGS+= --with-apxs=${APXS}
PLIST_SUB+= MOD_DIR=libexec/apache
.elif defined(WITH_APACHE2) && ($(WITH_APACHE2) == yes || $(WITH_APACHE2) == YES)
#
# Apache 2
#
BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/www/apache2
CONFIGURE_ARGS+= --with-apxs=${APXS}
PLIST_SUB+= MOD_DIR=libexec/apache2
.else
PLIST_SUB+= MOD_DIR="@comment "
.endif
.include <bsd.port.pre.mk>
# Do not change the PID file location unless you also change it in pkg-deinstall script
PID_FILE= /var/run/resin.pid
post-install:
${TOUCH} ${PID_FILE}
${CHOWN} ${RUNASUID}:${GID} ${PID_FILE}
${MKDIR} ${APP_HOME}
@PREFIX=${PREFIX} \
PKGNAMEPREFIX=${PKGNAMEPREFIX} \
PORTNAME=${PORTNAME} \
WRKSRC=${WRKSRC} \
RUNASUSER=${RUNASUSER} \
RUNASUID=${RUNASUID} \
GROUP=${GROUP} \
GID=${GID} \
PORT=${PORT} \
APP_HOME=${APP_HOME} \
JAVA_HOME=${JAVA_HOME} \
${SH} pkg-install ${PKGNAME} POST-INSTALL
.include <bsd.port.post.mk>
# ex:ts=18