2007-02-18 13:56:16 +01:00
|
|
|
# New ports collection makefile for: apache-tomcat
|
|
|
|
# Date created: 14 Feb 2007
|
2007-04-30 08:27:41 +02:00
|
|
|
# Whom: Nemo Liu <nemoliu@FreeBSD.org>
|
2003-08-13 13:39:38 +02:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2009-07-29 15:33:19 +02:00
|
|
|
PORTNAME= tomcat
|
|
|
|
PORTVERSION= 6.0.20
|
2009-07-29 19:13:50 +02:00
|
|
|
PORTREVISION= 1
|
2003-08-13 13:39:38 +02:00
|
|
|
CATEGORIES= www java
|
2006-07-03 11:49:56 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_APACHE}
|
2007-02-18 13:56:16 +01:00
|
|
|
MASTER_SITE_SUBDIR= tomcat/tomcat-6/v${PORTVERSION}/bin
|
2009-07-29 15:33:19 +02:00
|
|
|
DISTNAME= apache-${PORTNAME}-${PORTVERSION}
|
2003-08-13 13:39:38 +02:00
|
|
|
|
2009-12-16 16:09:28 +01:00
|
|
|
MAINTAINER= ale@FreeBSD.org
|
2007-02-18 13:56:16 +01:00
|
|
|
COMMENT= Open-source Java web server by Apache, 6.x branch
|
2003-08-13 13:39:38 +02:00
|
|
|
|
2004-04-03 23:48:46 +02:00
|
|
|
USE_JAVA= yes
|
2007-02-18 13:56:16 +01:00
|
|
|
JAVA_VERSION= 1.5+
|
2003-08-13 13:39:38 +02:00
|
|
|
NO_BUILD= YES
|
|
|
|
|
2007-02-18 13:56:16 +01:00
|
|
|
USE_RC_SUBR= tomcat6.sh
|
2009-07-29 15:33:19 +02:00
|
|
|
SUB_FILES= pkg-install
|
2004-12-17 04:15:07 +01:00
|
|
|
|
2003-08-13 13:39:38 +02:00
|
|
|
MAJOR_VER= ${PORTVERSION:R}
|
2009-07-29 15:33:19 +02:00
|
|
|
APP_HOME?= ${PREFIX}/${DISTNAME:R}
|
2003-08-13 13:39:38 +02:00
|
|
|
LOG_DIR= ${APP_HOME}/logs
|
2009-07-29 15:33:19 +02:00
|
|
|
APP_SHORTNAME= ${PORTNAME}${MAJOR_VER:S/.//}
|
2005-09-29 17:08:23 +02:00
|
|
|
TOMCAT_USER?= www
|
|
|
|
TOMCAT_GROUP?= www
|
2003-08-13 13:39:38 +02:00
|
|
|
HTTP_PORT?= 8180
|
|
|
|
SHUTDOWN_PORT?= 8005
|
|
|
|
AJP_1_3_PORT?= 8009
|
|
|
|
STDOUT_LOG= ${LOG_DIR}/stdout.log
|
|
|
|
STDERR_LOG= ${LOG_DIR}/stderr.log
|
|
|
|
JAR_FILE= bin/bootstrap.jar
|
2009-07-29 15:33:19 +02:00
|
|
|
CONF_FILES= catalina.policy catalina.properties context.xml logging.properties server.xml tomcat-users.xml web.xml
|
2004-12-17 04:15:07 +01:00
|
|
|
CONF_EXT= sample
|
2009-07-29 15:33:19 +02:00
|
|
|
PLIST_SUB= T=${APP_HOME:S/^${PREFIX}\///} CONF_EXT=${CONF_EXT} \
|
|
|
|
WWWOWN=${TOMCAT_USER} WWWGRP=${TOMCAT_GROUP}
|
|
|
|
LATEST_LINK= ${APP_SHORTNAME}
|
2005-07-25 18:10:34 +02:00
|
|
|
|
Clean up Tomcat 4, 4.1, 5, and 5.5 ports.
These changes apply to all ports, unless mentioned otherwise:
- Move jakarta-tomcat55 to tomcat55 (it is no longer a Jakarta project). [6]
- Improve the tomcat55 rc script. Fix PID handling. Improve the
shutdown process. Use USE_RC_SUBR to its full potential. [2]
- Backport tomcat55 rc script to the other tomcat ports. This allows
us to pass command line arguments to the JVM. Noted in UPDATING.
[1], [3], [4]
- Change ownership of installed files. All files are now installed
with default uid/gid (root:wheel) except for those in the conf/, logs/,
temp/ and work/ directories. [5]
- No longer install tomcatXXctl binary. rc scripts are more flexible
and can be reconfigured without recompiling.
- Remove AUTO_START and STOP_TIMEOUT (replaced with rc tomcatXX_stop_timeout).
- Remove a long list of sed expressions in favour of SUB_LIST.
- Move pkg_{,de}install to files/pkg_{,de}install.in. Add them to
SUB_FILES. Tidy up substitutions and remove hardcoded values.
- Some nonfunctional tidying and removal of Makefile cruft.
PR: ports/38018 [1], ports/38020 [2], ports/74344 [3],
ports/75143 [4], ports/83434 [5], ports/92692 [6]
Submitted by: Ari Suutari <ari.suutari@syncrontech.com> [1] [2],
SimpleRezo Team <freebsd@simplerezo.com> [3],
Anton Yudin <toha@toha.org.ua> [4],
Jan Grant <jan.grant@bristol.ac.uk> [5],
lawrance [6]
Approved by: Kang Liu <liukang@cn.freebsd.org> (maintainer) [6]
Maintainer timeouts on [1], [2], [3], [4], [5]
Big thanks to: hq for the initial tomcat55 script
jasonb on FreeNode #tomcat for packaging advice
2006-02-07 09:50:09 +01:00
|
|
|
SUB_LIST= AJP_1_3_PORT=${AJP_1_3_PORT} \
|
|
|
|
APP_HOME=${APP_HOME} \
|
|
|
|
APP_SHORTNAME=${APP_SHORTNAME} \
|
|
|
|
GROUP=${TOMCAT_GROUP} \
|
|
|
|
HTTP_PORT=${HTTP_PORT} \
|
|
|
|
JAR_FILE=${JAR_FILE} \
|
|
|
|
SHUTDOWN_PORT=${SHUTDOWN_PORT} \
|
|
|
|
STDERR_LOG=${STDERR_LOG} \
|
2005-09-02 14:45:34 +02:00
|
|
|
STDOUT_LOG=${STDOUT_LOG} \
|
Clean up Tomcat 4, 4.1, 5, and 5.5 ports.
These changes apply to all ports, unless mentioned otherwise:
- Move jakarta-tomcat55 to tomcat55 (it is no longer a Jakarta project). [6]
- Improve the tomcat55 rc script. Fix PID handling. Improve the
shutdown process. Use USE_RC_SUBR to its full potential. [2]
- Backport tomcat55 rc script to the other tomcat ports. This allows
us to pass command line arguments to the JVM. Noted in UPDATING.
[1], [3], [4]
- Change ownership of installed files. All files are now installed
with default uid/gid (root:wheel) except for those in the conf/, logs/,
temp/ and work/ directories. [5]
- No longer install tomcatXXctl binary. rc scripts are more flexible
and can be reconfigured without recompiling.
- Remove AUTO_START and STOP_TIMEOUT (replaced with rc tomcatXX_stop_timeout).
- Remove a long list of sed expressions in favour of SUB_LIST.
- Move pkg_{,de}install to files/pkg_{,de}install.in. Add them to
SUB_FILES. Tidy up substitutions and remove hardcoded values.
- Some nonfunctional tidying and removal of Makefile cruft.
PR: ports/38018 [1], ports/38020 [2], ports/74344 [3],
ports/75143 [4], ports/83434 [5], ports/92692 [6]
Submitted by: Ari Suutari <ari.suutari@syncrontech.com> [1] [2],
SimpleRezo Team <freebsd@simplerezo.com> [3],
Anton Yudin <toha@toha.org.ua> [4],
Jan Grant <jan.grant@bristol.ac.uk> [5],
lawrance [6]
Approved by: Kang Liu <liukang@cn.freebsd.org> (maintainer) [6]
Maintainer timeouts on [1], [2], [3], [4], [5]
Big thanks to: hq for the initial tomcat55 script
jasonb on FreeNode #tomcat for packaging advice
2006-02-07 09:50:09 +01:00
|
|
|
TOMCAT_HOME=${APP_HOME} \
|
|
|
|
TOMCAT_VERSION=${MAJOR_VER:S/.//} \
|
|
|
|
USER=${TOMCAT_USER}
|
2005-09-29 17:08:23 +02:00
|
|
|
|
2003-08-13 13:39:38 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
pre-patch:
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} "Installation settings:"
|
|
|
|
@${ECHO_MSG} " Destination directory: ${APP_HOME}"
|
|
|
|
@${ECHO_MSG} " Location of JDK: ${JAVA_HOME}"
|
|
|
|
@${ECHO_MSG} " Location of Java port: ${JAVA_PORT}"
|
2005-09-29 17:08:23 +02:00
|
|
|
@${ECHO_MSG} " Running as (user/group): ${TOMCAT_USER}/${TOMCAT_GROUP}"
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} " HTTP port: ${HTTP_PORT}"
|
|
|
|
@${ECHO_MSG} " Shutdown listener port: ${SHUTDOWN_PORT}"
|
|
|
|
@${ECHO_MSG} " AJP 1.3 connector port: ${AJP_1_3_PORT}"
|
|
|
|
@${ECHO_MSG} " Logfile stdout: ${STDOUT_LOG}"
|
|
|
|
@${ECHO_MSG} " Logfile stderr: ${STDERR_LOG}"
|
2003-08-13 13:39:38 +02:00
|
|
|
|
|
|
|
post-patch:
|
2009-07-29 15:33:19 +02:00
|
|
|
@${REINPLACE_CMD} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${WRKSRC}/conf/server.xml
|
|
|
|
@${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.exe'` \
|
|
|
|
`${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.bak'`
|
|
|
|
.for f in ${CONF_FILES}
|
|
|
|
@${MV} ${WRKSRC}/conf/${f} ${WRKSRC}/conf/${f}.${CONF_EXT}
|
2003-08-13 13:39:38 +02:00
|
|
|
.endfor
|
|
|
|
|
2005-09-29 17:08:23 +02:00
|
|
|
pre-install:
|
|
|
|
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
|
2003-08-13 13:39:38 +02:00
|
|
|
do-install:
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} -n ">> Creating destination directory..."
|
2003-08-13 13:39:38 +02:00
|
|
|
@${MKDIR} ${APP_HOME}
|
|
|
|
@${MKDIR} ${LOG_DIR}
|
2009-07-29 15:33:19 +02:00
|
|
|
@${MKDIR} ${APP_HOME}/endorsed
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
|
|
|
2009-07-29 15:33:19 +02:00
|
|
|
@${ECHO_MSG} -n ">> Copying files to destination directory..."
|
2003-08-13 13:39:38 +02:00
|
|
|
@${CP} -R ${WRKSRC}/* ${APP_HOME}
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} " [ DONE ]"
|
2003-08-13 13:39:38 +02:00
|
|
|
|
2009-07-29 15:33:19 +02:00
|
|
|
.for f in ${CONF_FILES}
|
|
|
|
. if !exists(${APP_HOME}/conf/${f})
|
|
|
|
@${CP} ${APP_HOME}/conf/${f}.${CONF_EXT} ${APP_HOME}/conf/${f}
|
|
|
|
. else
|
|
|
|
@${ECHO_MSG} ">> Preserving local configuration file: ${f} [ DONE ]"
|
|
|
|
. endif
|
|
|
|
.endfor
|
2003-08-13 13:39:38 +02:00
|
|
|
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} -n ">> Creating symlink to tools.jar..."
|
2007-02-18 13:56:16 +01:00
|
|
|
@${LN} -sf ${JAVA_HOME}/lib/tools.jar ${APP_HOME}/lib/tools.jar
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} " [ DONE ]"
|
2003-08-13 13:39:38 +02:00
|
|
|
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} -n ">> Fixing ownership settings..."
|
Clean up Tomcat 4, 4.1, 5, and 5.5 ports.
These changes apply to all ports, unless mentioned otherwise:
- Move jakarta-tomcat55 to tomcat55 (it is no longer a Jakarta project). [6]
- Improve the tomcat55 rc script. Fix PID handling. Improve the
shutdown process. Use USE_RC_SUBR to its full potential. [2]
- Backport tomcat55 rc script to the other tomcat ports. This allows
us to pass command line arguments to the JVM. Noted in UPDATING.
[1], [3], [4]
- Change ownership of installed files. All files are now installed
with default uid/gid (root:wheel) except for those in the conf/, logs/,
temp/ and work/ directories. [5]
- No longer install tomcatXXctl binary. rc scripts are more flexible
and can be reconfigured without recompiling.
- Remove AUTO_START and STOP_TIMEOUT (replaced with rc tomcatXX_stop_timeout).
- Remove a long list of sed expressions in favour of SUB_LIST.
- Move pkg_{,de}install to files/pkg_{,de}install.in. Add them to
SUB_FILES. Tidy up substitutions and remove hardcoded values.
- Some nonfunctional tidying and removal of Makefile cruft.
PR: ports/38018 [1], ports/38020 [2], ports/74344 [3],
ports/75143 [4], ports/83434 [5], ports/92692 [6]
Submitted by: Ari Suutari <ari.suutari@syncrontech.com> [1] [2],
SimpleRezo Team <freebsd@simplerezo.com> [3],
Anton Yudin <toha@toha.org.ua> [4],
Jan Grant <jan.grant@bristol.ac.uk> [5],
lawrance [6]
Approved by: Kang Liu <liukang@cn.freebsd.org> (maintainer) [6]
Maintainer timeouts on [1], [2], [3], [4], [5]
Big thanks to: hq for the initial tomcat55 script
jasonb on FreeNode #tomcat for packaging advice
2006-02-07 09:50:09 +01:00
|
|
|
@${CHOWN} -R ${TOMCAT_USER}:${TOMCAT_GROUP} ${APP_HOME}/conf ${APP_HOME}/logs \
|
2009-07-29 15:33:19 +02:00
|
|
|
${APP_HOME}/temp ${APP_HOME}/webapps ${APP_HOME}/work
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} " [ DONE ]"
|
2003-08-13 13:39:38 +02:00
|
|
|
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} -n ">> Fixing permissions..."
|
2009-07-29 15:33:19 +02:00
|
|
|
@${FIND} ${APP_HOME} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
|
2004-12-17 04:15:07 +01:00
|
|
|
@${ECHO_MSG} " [ DONE ]"
|
2003-08-13 13:39:38 +02:00
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|