svn commit: r318276 - head/www/rt40
Matthew Seaman
matthew at FreeBSD.org
Thu May 16 05:30:11 UTC 2013
Author: matthew
Date: Thu May 16 05:30:10 2013
New Revision: 318276
URL: http://svnweb.freebsd.org/changeset/ports/318276
Log:
Delete some dead code, left over from pre-OPTIONSNG days.
Clarify comments about choosing a web platform option: you don't need
to choose any of the four options show, but can use the built-in plack
webserver.
Submitted by: G.halse at ru.ac.za
Modified:
head/www/rt40/Makefile
Modified: head/www/rt40/Makefile
==============================================================================
--- head/www/rt40/Makefile Thu May 16 05:29:15 2013 (r318275)
+++ head/www/rt40/Makefile Thu May 16 05:30:10 2013 (r318276)
@@ -14,9 +14,15 @@ LATEST_LINK= rt40
# See doc/web_deployment.pod for info on the choices of webserver /
# webapp combinations. Note: if using apache, apache-2.2+ is
-# recommended. For deployment with nginx, use the SPAWN_FCGI method.
-# A standalone PSGI based webserver is always available, but this is
-# really only suitable for development usage.
+# recommended. For deployment with nginx, use the SPAWN_FCGI method
+# or the builtin webserver with a FCGI handler.
+#
+# The builtin standalone PSGI based webserver is always available, no
+# mater what choice of web deployment platform, or none, that you
+# make. Best Practical state that this is really only suitable for
+# development usage, although I have heard reports of people using it
+# successfully for medium sized deployments. If you only want the
+# builtin webserver, simply deselect all of the web options.
#
# See doc/full_text_indexing.pod if you need to set up full text
# indexes on your ticket database. PostgreSQL or Oracle are
@@ -34,7 +40,6 @@ OPTIONS_DEFAULT= AP_MODPERL GD GPG MYSQL
AP_MODFASTCGI_DESC= Deploy with apache and mod_fastcgi
AP_MODPERL_DESC= Deploy with apache and mod_perl
-BUILTIN_DESC= Deploy with built-in web server (not for production)
DEV_DESC= Configure for Developers
GD_DESC= Enable GD Graphs and Charts
GPG_DESC= Enable GnuPG support
@@ -69,12 +74,6 @@ USE_AUTOTOOLS= autoconf
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-noportdocs-Makefile.in
.endif
-.if !${PORT_OPTIONS:MAP_MODPERL} && !${PORT_OPTIONS:MAP_MODFASTCGI} && \
- !${PORT_OPTIONS:MLIGHTTPD} && !${PORT_OPTIONS:MSPAWN_FCGI} && \
- !${PORT_OPTIONS:MBUILTIN}
-IGNORE= please select one of AP_MODPERL, AP_MODFASTCGI, LIGHTTPD, SPAWN_FCGI or BUILTIN
-.endif
-
.if ${PORT_OPTIONS:MAP_MODPERL}
BUILD_DEPENDS+= ${MODPERL2_DEPS}
RUN_DEPENDS+= ${MODPERL2_DEPS}
More information about the svn-ports-head
mailing list