diff options
author | hq <hq@FreeBSD.org> | 2005-02-25 06:50:29 +0800 |
---|---|---|
committer | hq <hq@FreeBSD.org> | 2005-02-25 06:50:29 +0800 |
commit | 72577230c9d92320892d50a11c7f7c0d9c3610dc (patch) | |
tree | 2d02bc44c47a15128b03b2ed30d3778338464a6e /www | |
parent | a579a573859b3ee95af669028f709ca21acb990f (diff) | |
download | freebsd-ports-gnome-72577230c9d92320892d50a11c7f7c0d9c3610dc.tar.gz freebsd-ports-gnome-72577230c9d92320892d50a11c7f7c0d9c3610dc.tar.zst freebsd-ports-gnome-72577230c9d92320892d50a11c7f7c0d9c3610dc.zip |
- Update to 3.0.11 [1]
- Replace perl wrapper with a new python control script and an RCng startup
script [1]
- Update to bsd.java.mk 2.0
- Add $FreeBSD$ tags
- Tweak pkg-descr to calm portlint
- Use provided ${FMT} macro
PR: 77989 [1]
Submitted by: maintainer [1]
Diffstat (limited to 'www')
-rw-r--r-- | www/resin3/Makefile | 65 | ||||
-rw-r--r-- | www/resin3/distinfo | 4 | ||||
-rw-r--r-- | www/resin3/files/install.sh | 6 | ||||
-rw-r--r-- | www/resin3/files/patch-apache1-Makefile.in | 2 | ||||
-rw-r--r-- | www/resin3/files/patch-apache2-Makefile.in | 2 | ||||
-rw-r--r-- | www/resin3/files/patch-configure | 2 | ||||
-rw-r--r-- | www/resin3/files/patch-resin.conf | 2 | ||||
-rw-r--r-- | www/resin3/files/patch-wrapper | 8 | ||||
-rw-r--r-- | www/resin3/files/pkg-message.in | 14 | ||||
-rw-r--r-- | www/resin3/files/resin.sh.in | 73 | ||||
-rw-r--r-- | www/resin3/files/resinctl | 190 | ||||
-rw-r--r-- | www/resin3/pkg-descr | 2 | ||||
-rw-r--r-- | www/resin3/pkg-plist | 7 |
13 files changed, 275 insertions, 102 deletions
diff --git a/www/resin3/Makefile b/www/resin3/Makefile index a06e410732d9..5731651614b3 100644 --- a/www/resin3/Makefile +++ b/www/resin3/Makefile @@ -6,17 +6,17 @@ # PORTNAME= resin -PORTVERSION= 3.0.9 +PORTVERSION= 3.0.11 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+ +USE_JAVA= yes +JAVA_VERSION= 1.2+ HAS_CONFIGURE= yes -USE_GMAKE= yes -USE_PERL5_RUN= yes +USE_PYTHON= yes USE_REINPLACE= yes # Customizable settings @@ -33,11 +33,11 @@ LATEST_LINK= ${APP_NAME} APP_HOME?= ${PREFIX}/${APP_NAME} WITH_APACHE?= NO WITH_APACHE2?= NO -PID_FILE?= /var/run/${APP_NAME}.pid +PID_FILE?= ${APP_HOME}/${APP_NAME}.pid +LOG_FILE?= ${APP_HOME}/${APP_NAME}.log # Other settings APXS?= ${LOCALBASE}/sbin/apxs -MOD_DIR?= `${APXS} -q LIBEXECDIR` PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PKGMESSAGE= ${WRKDIR}/pkg-message @@ -51,9 +51,9 @@ REPLACE_FILES= ${FILESDIR}/pkg-install \ ${FILESDIR}/install.sh \ ${FILESDIR}/pkg-message.in \ ${WRKSRC}/conf/resin.conf \ - ${WRKSRC}/bin/wrapper.pl.in \ + ${FILESDIR}/resinctl \ ${FILESDIR}/resin.sh.in -COPYDIRS= lib webapps +COPYDIRS= lib libexec webapps .include <bsd.port.pre.mk> @@ -88,14 +88,6 @@ PLIST_SUB+= APACHE="@comment " PLIST_SUB+= APP_NAME=${APP_NAME} PLIST_SUB+= APXS=${APXS} -.if ((defined(WITH_APACHE) && (${WITH_APACHE} == yes || ${WITH_APACHE} == YES)) \ -|| (defined(WITH_APACHE2) && (${WITH_APACHE2} == yes || ${WITH_APACHE2} == YES))) -LIBEXECDIR!= ${APXS} -q LIBEXECDIR -SYSCONFDIR!= ${APXS} -q SYSCONFDIR -CONFIGURE_ARGS+= --with-apache-libexec=${LIBEXECDIR} -CONFIGURE_ARGS+= --with-apache-conf=${SYSCONFDIR} -.endif - SUBSTITUTIONS= -e "s|%%APP_HOME%%|${APP_HOME}|g" \ -e "s|%%APP_NAME%%|${APP_NAME}|g" \ -e "s|%%APXS%%|${APXS}|g" \ @@ -104,7 +96,9 @@ SUBSTITUTIONS= -e "s|%%APP_HOME%%|${APP_HOME}|g" \ -e "s|%%GROUP%%|${GROUP}|g" \ -e "s|%%GID%%|${GID}|g" \ -e "s|%%JAVA_HOME%%|${JAVA_HOME}|g" \ - -e "s|%%PERL%%|${PERL}|g" \ + -e "s|%%JAVA%%|${JAVA}|g" \ + -e "s|%%LOG_FILE%%|${LOG_FILE}|g" \ + -e "s|%%PYTHON_CMD%%|${PYTHON_CMD}|g" \ -e "s|%%PID_FILE%%|${PID_FILE}|g" \ -e "s|%%PORT%%|${PORT}|g" \ -e "s|%%PORTNAME%%|${PORTNAME}|g" \ @@ -116,39 +110,38 @@ SUBSTITUTIONS= -e "s|%%APP_HOME%%|${APP_HOME}|g" \ post-patch: .for FILE in ${REINPLACE_FILES} - @${REINPLACE_CMD} ${SUBSTITUTIONS} ${FILE} + @${REINPLACE_CMD} ${SUBSTITUTIONS} ${FILE} .endfor .for FILE in ${REPLACE_FILES} - @${SED} ${SUBSTITUTIONS} ${FILE} > ${WRKDIR}/`basename ${FILE}` + @${SED} ${SUBSTITUTIONS} ${FILE} > ${WRKDIR}/`basename ${FILE}` .endfor - @fmt -w 80 < ${WRKDIR}/pkg-message.in > ${PKGMESSAGE} + @${FMT} -w 80 < ${WRKDIR}/pkg-message.in > ${PKGMESSAGE} .if (defined(WITH_APACHE2) && (${WITH_APACHE2} == yes || ${WITH_APACHE2} == YES) || \ defined(WITH_APACHE) && (${WITH_APACHE} == yes || ${WITH_APACHE} == YES)) - @${ECHO_CMD} >> ${PKGMESSAGE} - @${ECHO_CMD} The Resin Apache module mod_caucho has been activated \ - in the Apache configuration file, where you should also \ - add a line to specify the location of the Resin configuration \ - server, for example: | fmt -w 80 >> ${PKGMESSAGE} - @${ECHO_CMD} >> ${PKGMESSAGE} - @${ECHO_CMD} "<IfModule mod_caucho.c>" >> ${PKGMESSAGE} + @${ECHO_CMD} >> ${PKGMESSAGE} + @${ECHO_CMD} The Resin Apache module mod_caucho has been activated \ + in the Apache configuration file, where you should also \ + add a line to specify the location of the Resin configuration \ + server, for example: | ${FMT} -w 80 >> ${PKGMESSAGE} + @${ECHO_CMD} >> ${PKGMESSAGE} + @${ECHO_CMD} "<IfModule mod_caucho.c>" >> ${PKGMESSAGE} .if (defined(WITH_APACHE2) && (${WITH_APACHE2} == yes || ${WITH_APACHE2} == YES)) - @${ECHO_CMD} " ResinConfigServer localhost 6802" >> ${PKGMESSAGE} + @${ECHO_CMD} " ResinConfigServer localhost 6802" >> ${PKGMESSAGE} .endif .if (defined(WITH_APACHE) && (${WITH_APACHE} == yes || ${WITH_APACHE} == YES)) @${ECHO_CMD} " CauchoConfigFile ${PREFIX}/etc/${APP_NAME}/resin.xml" >> ${PKGMESSAGE} .endif @${ECHO_CMD} "</IfModule>" >> ${PKGMESSAGE} .endif - @${MV} ${WRKDIR}/wrapper.pl.in ${WRKSRC}/bin/wrapper.pl.in # Resin does not handle installation, so proceed now post-install: - @${SH} ${WRKDIR}/install.sh - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_CMD} - @${ECHO_CMD} "********************************************************************************" - @${CAT} ${PKGMESSAGE} - @${ECHO_CMD} "********************************************************************************" - @${ECHO_CMD} + @${SETENV} RUNASUSER=${RUNASUSER} GROUP=${GROUP} ${SH} ${WRKDIR}/install.sh + @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @${ECHO_CMD} + @${ECHO_CMD} "********************************************************************************" + @${CAT} ${PKGMESSAGE} + @${ECHO_CMD} "********************************************************************************" + @${ECHO_CMD} .include <bsd.port.post.mk> diff --git a/www/resin3/distinfo b/www/resin3/distinfo index 1a90dbce027d..b696ff3ad4dd 100644 --- a/www/resin3/distinfo +++ b/www/resin3/distinfo @@ -1,2 +1,2 @@ -MD5 (resin-3.0.9.tar.gz) = 97a68da3582b7cd98c9e729f136abf27 -SIZE (resin-3.0.9.tar.gz) = 6326402 +MD5 (resin-3.0.11.tar.gz) = 952592162531aaf688cf0172784b1933 +SIZE (resin-3.0.11.tar.gz) = 6954237 diff --git a/www/resin3/files/install.sh b/www/resin3/files/install.sh index 6043a27c40ac..8a628185e34a 100644 --- a/www/resin3/files/install.sh +++ b/www/resin3/files/install.sh @@ -1,4 +1,6 @@ #! /bin/sh +# +# $FreeBSD$ set -e @@ -33,7 +35,7 @@ install %%WRKDIR%%/resin.sh.in %%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh chmod 755 %%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh echo Installed %%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh -install %%WRKSRC%%/bin/wrapper.pl %%PREFIX%%/sbin/%%APP_NAME%%ctl +install %%WRKDIR%%/resinctl %%PREFIX%%/sbin/%%APP_NAME%%ctl echo Installed %%PREFIX%%/sbin/%%APP_NAME%%ctl test -d %%APP_HOME%% || mkdir %%APP_HOME%% @@ -50,4 +52,4 @@ list() ( cd %%WRKSRC%% && find %%COPYDIRS%% -type d -empty -delete ) echo Installing in %%APP_HOME%% -list | xargs tar -C %%WRKSRC%% -cf- | tar -C %%APP_HOME%% -xpf- +list | ( cd %%WRKSRC%% && cpio -pdm -L -R $RUNASUSER:$GROUP %%APP_HOME%% ) diff --git a/www/resin3/files/patch-apache1-Makefile.in b/www/resin3/files/patch-apache1-Makefile.in index d227228139de..ad61eca13003 100644 --- a/www/resin3/files/patch-apache1-Makefile.in +++ b/www/resin3/files/patch-apache1-Makefile.in @@ -1,3 +1,5 @@ +$FreeBSD$ + --- src/c/apache1/Makefile.in.orig Mon Oct 11 11:34:53 2004 +++ src/c/apache1/Makefile.in Mon Oct 11 12:44:59 2004 @@ -38,8 +38,7 @@ diff --git a/www/resin3/files/patch-apache2-Makefile.in b/www/resin3/files/patch-apache2-Makefile.in index d7d041eb7213..5f8eade528a7 100644 --- a/www/resin3/files/patch-apache2-Makefile.in +++ b/www/resin3/files/patch-apache2-Makefile.in @@ -1,3 +1,5 @@ +$FreeBSD$ + --- src/c/apache2/Makefile.in.orig Mon Oct 11 11:34:53 2004 +++ src/c/apache2/Makefile.in Mon Oct 11 12:44:59 2004 @@ -38,8 +38,7 @@ diff --git a/www/resin3/files/patch-configure b/www/resin3/files/patch-configure index 503fd1585c3e..67ad30e33399 100644 --- a/www/resin3/files/patch-configure +++ b/www/resin3/files/patch-configure @@ -1,3 +1,5 @@ +$FreeBSD$ + --- configure.orig Tue Oct 12 18:34:32 2004 +++ configure Tue Oct 12 18:34:48 2004 @@ -8487,20 +8487,6 @@ diff --git a/www/resin3/files/patch-resin.conf b/www/resin3/files/patch-resin.conf index 4ad27e4a95ca..dcc5cf7a3a65 100644 --- a/www/resin3/files/patch-resin.conf +++ b/www/resin3/files/patch-resin.conf @@ -1,3 +1,5 @@ +$FreeBSD$ + --- conf/resin.conf.orig Tue Jun 15 10:50:09 2004 +++ conf/resin.conf Tue Jun 15 10:50:47 2004 @@ -158,7 +158,7 @@ diff --git a/www/resin3/files/patch-wrapper b/www/resin3/files/patch-wrapper deleted file mode 100644 index 7d3f9aadfb18..000000000000 --- a/www/resin3/files/patch-wrapper +++ /dev/null @@ -1,8 +0,0 @@ ---- bin/wrapper.pl.in.orig Sat Oct 4 09:45:23 2003 -+++ bin/wrapper.pl.in Sat Oct 4 09:45:43 2003 -@@ -1,4 +1,4 @@ --#! @PERL@ -+#! %%PERL%% - # - # Copyright(c) 1998-2002 Caucho Technology - # diff --git a/www/resin3/files/pkg-message.in b/www/resin3/files/pkg-message.in index e4d9e708a1ef..ce12375aa0b6 100644 --- a/www/resin3/files/pkg-message.in +++ b/www/resin3/files/pkg-message.in @@ -1,8 +1,14 @@ Resin is now installed in %%APP_HOME%% -You may want to start it using the -startup script installed as %%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh and then point -your web browser to the default home page at http://localhost:%%PORT%%/ to read -the documentation and test the samples. +You may want to activate it in /etc/rc.conf: + +%%APP_NAME%%_enable="YES" + +Then start it: + +env - %%PREFIX%%/etc/rc.d/%%APP_NAME%%.sh start + +And point your web browser to the default home page at +http://localhost:%%PORT%%/ to read the documentation and test the samples. Resin configuration is located at %%PREFIX%%/etc/%%APP_NAME%%/resin.xml diff --git a/www/resin3/files/resin.sh.in b/www/resin3/files/resin.sh.in index d2c7816829f2..a60b51bbcf68 100644 --- a/www/resin3/files/resin.sh.in +++ b/www/resin3/files/resin.sh.in @@ -1,54 +1,31 @@ #!/bin/sh # -# Resin startup script. +# $FreeBSD$ # -# Borrowed from jakarta-tomcat41 + +# PROVIDE: %%APP_NAME%% + # -# $FreeBSD$ +# Add the following line to /etc/rc.conf to enable %%APP_NAME%%: +# +# %%APP_NAME%%_enable="YES" # -# Determine PREFIX -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${0##*/}\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -# Set some variables -MYSELF=`basename $0` -ARGS="-conf $PREFIX/etc/%%APP_NAME%%/resin.xml \ --chdir \ --name %%APP_NAME%% \ --class com.caucho.server.resin.Resin \ --pid %%PID_FILE%%" -PATH=/usr/sbin:/usr/bin:/bin - -unset CLASSPATH -export JAVA_HOME=%%JAVA_HOME%% -export RESIN_HOME=$PREFIX/%%APP_NAME%% - -set -e - -case "$1" in - start) - echo -n ' ' - truncate -s 0 %%PID_FILE%% - chown %%RUNASUSER%%:%%GROUP%% %%PID_FILE%% - chmod 600 %%PID_FILE%% - su -f -m %%RUNASUSER%% -c "exec $PREFIX/sbin/%%APP_NAME%%ctl $ARGS start" \ - >/dev/null && echo -n '%%APP_NAME%%' - ;; - - stop) - echo -n ' ' - chown %%RUNASUSER%%:%%GROUP%% %%PID_FILE%% - chmod 600 %%PID_FILE%% - su -f -m %%RUNASUSER%% -c "exec $PREFIX/sbin/%%APP_NAME%%ctl $ARGS stop" \ - >/dev/null 2>&1 ; echo -n '%%APP_NAME%%' - ;; - *) - echo "" - echo "Usage: ${MYSELF} { start | stop }" - echo "" - exit 64 - ;; -esac +. /etc/rc.subr + +name=%%APP_NAME%% +rcvar=`set_rcvar` + +command=%%PREFIX%%/sbin/%%APP_NAME%%ctl +command_args="$1" +pidfile=%%PID_FILE%% +procname=%%JAVA%% + +# set defaults + +%%APP_NAME%%_enable=${%%APP_NAME%%_enable:-"NO"} +%%APP_NAME%%_user=${%%APP_NAME%%_user:-"www"} +%%APP_NAME%%_group=${%%APP_NAME%%_group:-"www"} + +load_rc_config ${name} +run_rc_command "$1" diff --git a/www/resin3/files/resinctl b/www/resin3/files/resinctl new file mode 100644 index 000000000000..764032cc9e93 --- /dev/null +++ b/www/resin3/files/resinctl @@ -0,0 +1,190 @@ +#! %%PYTHON_CMD%% + +################################################################################ +# Author: Jean-Baptiste Quenot <jb.quenot@caraldi.com> +# Purpose: Manage resin pid file and log files +# Date Created: 2005-01-21 15:43:19 +# Revision: $FreeBSD$ +################################################################################ +# Copyright (c) 2004, Jean-Baptiste Quenot <jb.quenot@caraldi.com> +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# * The name of the contributors may not be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +################################################################################ +# +# Files handled by this script (pid file, log files) must reside in a writable +# directory, ie the directory must be owned by the user running the program. + +import sys, os, signal, time, stat, re + +def classpath(): + classpath = [] + resin_libdir = APP_HOME + "/lib" + java_libdir = os.environ['JAVA_HOME'] + "/lib" + for libdir in [resin_libdir, java_libdir]: + for file in os.listdir(libdir): + if re.search("\.jar$", file): + classpath.append(libdir + "/" + file) + return ':'.join(classpath) + +# -socketwait 12345 +# -stdout $APP_HOME/log/stdout.log +# -stderr $APP_HOME/log/stderr.log + +def readProcessId(): + f = open(PID_FILE, 'r') + pid = int(f.readline()) + f.close() + return pid + +def isProgramRunning(pid): + # Send a dummy signal to the process. If it died, an exception is + # thrown + try: + os.kill(pid, signal.SIGCONT) + return 1 + except OSError: + return 0 + +def usage(): + print >> sys.stderr, "Usage: %s {start|stop|restart}" % sys.argv[0] + +def start(): + cwd = os.getcwd() + if os.path.exists(PID_FILE): + # Read the process id + pid = readProcessId() + + if isProgramRunning(pid): + print >> sys.stderr, '%s already started' % APP_NAME + sys.exit(3) + + if not(os.path.exists(COMMAND)): + print >> sys.stderr, '%s cannot be found' % COMMAND + sys.exit(3) + + # Append program output to a log file + l = open(LOG_FILE, 'a') + orig_stderr = os.dup(sys.stderr.fileno()) + os.dup2(l.fileno(), sys.stdout.fileno()) + os.dup2(l.fileno(), sys.stderr.fileno()) + + finfo = os.stat(COMMAND)[stat.ST_MODE] + executable = stat.S_IMODE(finfo) & 0111 + if not(executable): + sys.stderr = os.fdopen(orig_stderr, 'w') + print >> sys.stderr, 'Cannot run %s, execute bit is missing' % COMMAND + sys.exit(5) + + if APP_HOME: + # Change current directory to APP_HOME + os.chdir(APP_HOME) + + # Start program in the background + pid = os.spawnv(os.P_NOWAIT, COMMAND, ARGS) + + # Wait a little + time.sleep(.4) + (unused_pid, status) = os.waitpid(pid, os.WNOHANG) + + # Check program exit status, if available + if unused_pid != 0 and os.WIFEXITED(status): + sys.stderr = os.fdopen(orig_stderr, 'w') + print >> sys.stderr, 'Could not start %s. Check %s for errors.' % (APP_NAME, LOG_FILE) + sys.exit(2) + + # It's alive, so write down the process id + os.chdir(cwd) + f = open(PID_FILE, 'w') + print >> f, pid + f.close() + +def warnNotRunning(): + if sys.argv[1] == "stop": + print >> sys.stderr, '%s is not running' % APP_NAME + else: + print >> sys.stderr, 'Warning: %s was not running' % APP_NAME + +def cleanup(): + os.unlink(PID_FILE) + +def stop(): + if os.path.exists(PID_FILE): + # Read the process id + pid = readProcessId() + else: + warnNotRunning() + return + + if not(isProgramRunning(pid)): + warnNotRunning() + cleanup() + return + + # Terminate program + os.kill(pid, signal.SIGTERM) + + while isProgramRunning(pid): + time.sleep(.1) + + cleanup() + +if __name__ == '__main__': + LOG_FILE = "%%LOG_FILE%%" + APP_NAME = "%%APP_NAME%%" + APP_HOME = "%%APP_HOME%%" + CONTROL_PROGRAM = "%%APP_NAME%%ctl" + PID_FILE = "%%PID_FILE%%" + COMMAND = "%%JAVA%%" + ARGS = [COMMAND] + + if os.environ.has_key('JAVA_OPTS'): + ARGS += os.environ['JAVA_OPTS'].split(" ") + + ARGS += [ + "-Dresin.home=%%APP_HOME%%", + "-Djava.util.logging.manager=com.caucho.log.LogManagerImpl", + "com.caucho.server.resin.Resin", + "-conf", "%%PREFIX%%/etc/%%APP_NAME%%/resin.xml" + ] + + os.environ['JAVA_HOME'] = "%%JAVA_HOME%%" + os.environ['CLASSPATH'] = classpath() + + if len(sys.argv) != 2: + usage() + sys.exit(1) + + if sys.argv[1] == "start": + start() + + elif sys.argv[1] == "stop": + stop() + + elif sys.argv[1] == "restart": + stop() + start() + + else: + usage() + sys.exit(1) diff --git a/www/resin3/pkg-descr b/www/resin3/pkg-descr index 015d3d5586de..2cb2a45e22cd 100644 --- a/www/resin3/pkg-descr +++ b/www/resin3/pkg-descr @@ -8,12 +8,10 @@ Sun. o You may use Resin for development, evaluation, and demos. o You must contact us to purchase a deployment license if either: - * You are paid to use Resin. * You are paying someone else to use Resin. o If no one is paid to use Resin, you may use Resin for deployment: - * students * private use * tiny startups with neither funding nor income. diff --git a/www/resin3/pkg-plist b/www/resin3/pkg-plist index e5372ec9c686..5605f8490846 100644 --- a/www/resin3/pkg-plist +++ b/www/resin3/pkg-plist @@ -1,5 +1,8 @@ +@comment $FreeBSD$ %%APP_NAME%%/lib/LICENSE.isorelax %%APP_NAME%%/lib/LICENSE.retroweaver +%%APP_NAME%%/lib/aopalliance.jar +%%APP_NAME%%/lib/boot.jar %%APP_NAME%%/lib/ejb-20.jar %%APP_NAME%%/lib/ejb-30.jar %%APP_NAME%%/lib/isorelax.jar @@ -14,10 +17,13 @@ %%APP_NAME%%/lib/portlet-10.jar %%APP_NAME%%/lib/resin-jdk15.jar %%APP_NAME%%/lib/resin.jar +%%APP_NAME%%/lib/resinboot.jar %%APP_NAME%%/lib/retroweaver.jar +%%APP_NAME%%/lib/saaj.jar %%APP_NAME%%/lib/webutil.jar %%APP_NAME%%/webapps/ROOT/index.jsp %%APP_NAME%%/webapps/resin-doc.war +%%APP_NAME%%/libexec/libresin_os.so etc/%%APP_NAME%%/app-default.xml etc/rc.d/%%APP_NAME%%.sh sbin/%%APP_NAME%%ctl @@ -27,6 +33,7 @@ sbin/%%APP_NAME%%ctl @dirrm %%APP_NAME%%/lib @dirrm %%APP_NAME%%/webapps/ROOT @dirrm %%APP_NAME%%/webapps +@dirrm %%APP_NAME%%/libexec @dirrm %%APP_NAME%% @unexec if cmp -s %D/etc/%%APP_NAME%%/resin.xml %D/etc/%%APP_NAME%%/resin.xml-dist; then rm -f %D/etc/%%APP_NAME%%/resin.xml ; else echo If permanently deleting this package, %D/etc/%%APP_NAME%%/resin.xml must be removed manually; fi etc/%%APP_NAME%%/resin.xml-dist |