diff options
author | ohauer <ohauer@FreeBSD.org> | 2012-01-06 06:54:15 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2012-01-06 06:54:15 +0800 |
commit | 4eabe93727e8457022ee955b0a3fe1585a5c8666 (patch) | |
tree | 01fe2b703842721497dae9363e360d8058c3d839 /www | |
parent | f812a8fdb217021a13e40be771ca2f73c0562d99 (diff) | |
download | freebsd-ports-gnome-4eabe93727e8457022ee955b0a3fe1585a5c8666.tar.gz freebsd-ports-gnome-4eabe93727e8457022ee955b0a3fe1585a5c8666.tar.zst freebsd-ports-gnome-4eabe93727e8457022ee955b0a3fe1585a5c8666.zip |
- cleanup after apache13 remove
Approved by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
Diffstat (limited to 'www')
-rw-r--r-- | www/rt40/Makefile | 34 |
1 files changed, 9 insertions, 25 deletions
diff --git a/www/rt40/Makefile b/www/rt40/Makefile index b7738d8c8f7b..236c0f71f928 100644 --- a/www/rt40/Makefile +++ b/www/rt40/Makefile @@ -28,11 +28,10 @@ CONFLICTS= rt-3.6* rt-3.8* LATEST_LINK= rt40 # See doc/web_deployment.pod for info on the choices of webserver / -# webapp combinations. Note: apache-1.3.x is unsupported and untested -# upstream; apache-2.0+ is strongly 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. +# webapp combinations. Note: apache-1.3.x is no longer supported in +# ports: 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. # # See doc/full_text_indexing.pod if you need to set up full text # indexes on your ticket database. PostgreSQL or Oracle are @@ -40,8 +39,8 @@ LATEST_LINK= rt40 # mentioned in the docs is currently unsupported in the ports, but see # http://www.infracaninophile.co.uk/articles/sphinxse.html -OPTIONS= AP_MODPERL "Deploy with ${APACHE_PORT} and mod_perl" on \ - AP_MODFASTCGI "Deploy with ${APACHE_PORT} and mod_fastcgi" off \ +OPTIONS= AP_MODPERL "Deploy with apache and mod_perl" on \ + AP_MODFASTCGI "Deploy with apache and mod_fastcgi" off \ LIGHTTPD "Deploy with lighttpd and mod_fastcgi" off \ SPAWN_FCGI "Deploy with spawn_fcgi" off \ MYSQL "Enable MySQL backend" on \ @@ -69,16 +68,12 @@ BUILD_DEPENDS+= ${CORE_DEPS} \ ${DASHBOARDS_DEPS} \ ${USERLOGO_DEPS} -RUN_DEPENDS+= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= 5.8.3+ USE_AUTOTOOLS= autoconf -.include <bsd.port.pre.mk> - -.if defined(WITH_AP_MODPERL) || defined(WITH_AP_MODFASTCGI) -USE_APACHE= 20+ -.endif +.include <bsd.port.options.mk> .if defined(WITH_AP_MODPERL) @@ -87,17 +82,8 @@ USE_APACHE= 20+ IGNORE= please select at most one of AP_MODPERL, AP_MODFASTCGI, LIGHTTPD or SPAWN_FCGI .endif -WITH_APACHE= yes - -.include "${PORTSDIR}/Mk/bsd.apache.mk" - -.if ${APACHE_VERSION} == 13 -BUILD_DEPENDS+= ${MODPERL1_DEPS} -RUN_DEPENDS+= ${MODPERL1_DEPS} -.else BUILD_DEPENDS+= ${MODPERL2_DEPS} RUN_DEPENDS+= ${MODPERL2_DEPS} -.endif .elif defined(WITH_AP_MODFASTCGI) @@ -105,8 +91,6 @@ RUN_DEPENDS+= ${MODPERL2_DEPS} IGNORE= please select at most one of AP_MODPERL, AP_MODFASTCGI, LIGHTTPD or SPAWN_FCGI .endif -WITH_APACHE= yes - BUILD_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi RUN_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi \ ${FASTCGI_DEPS} @@ -270,4 +254,4 @@ post-install: ${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm-dist ${RT_ETC_PATH}/RT_SiteConfig.pm ${CAT} ${PKGMESSAGE} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |