From owner-svn-ports-all@freebsd.org Sat Aug 29 21:06:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 249FC9BF0BD; Sat, 29 Aug 2015 21:06:00 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0734E36; Sat, 29 Aug 2015 21:05:59 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7TL5x7V017701; Sat, 29 Aug 2015 21:05:59 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7TL5xRU017699; Sat, 29 Aug 2015 21:05:59 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508292105.t7TL5xRU017699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 29 Aug 2015 21:05:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395567 - head/www/rt40 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Aug 2015 21:06:00 -0000 Author: matthew Date: Sat Aug 29 21:05:58 2015 New Revision: 395567 URL: https://svnweb.freebsd.org/changeset/ports/395567 Log: Prepare for perl-5.22 - Add dependency on www/p5-CGI conditional on perl version. CGI is no-longer a core module with 5.22. - Make the default web server interface Apache + FCGI rather than Apache + mod_perl. Current versions of mod_perl aren't compatible with perl-5.22 Modified: head/www/rt40/Makefile head/www/rt40/Makefile.cpan Modified: head/www/rt40/Makefile ============================================================================== --- head/www/rt40/Makefile Sat Aug 29 20:36:26 2015 (r395566) +++ head/www/rt40/Makefile Sat Aug 29 21:05:58 2015 (r395567) @@ -2,6 +2,7 @@ PORTNAME= rt PORTVERSION= 4.0.24 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 40 @@ -37,7 +38,7 @@ OPTIONS_SINGLE_DB= MYSQL ORACLE PGSQL SQ OPTIONS_RADIO= WEB OPTIONS_RADIO_WEB= AP_MODFASTCGI AP_MODPERL LIGHTTPD SPAWN_FCGI -OPTIONS_DEFAULT= AP_MODPERL GD GPG MYSQL +OPTIONS_DEFAULT= AP_MODFASTCGI GD GPG MYSQL USERS?= www GROUPS?= rt www @@ -208,4 +209,10 @@ post-install: (cd ${WRKSRC}/etc && \ ${COPYTREE_SHARE} upgrade ${STAGEDIR}${DOCSDIR} "! -name *\.in") -.include +.include + +.if ${PERL_LEVEL} >= 502200 +CORE_DEPS+= p5-CGI>0:${PORTSDIR}/www/p5-CGI +.endif + +.include Modified: head/www/rt40/Makefile.cpan ============================================================================== --- head/www/rt40/Makefile.cpan Sat Aug 29 20:36:26 2015 (r395566) +++ head/www/rt40/Makefile.cpan Sat Aug 29 21:05:58 2015 (r395567) @@ -10,8 +10,8 @@ ### Digest::base core ### Time::HiRes core ### Errno core -### CGI 3.38 core -### CGI::Cookie 1.20 core +### CGI 3.38 core (perl<5.22) +### CGI::Cookie 1.20 core (perl<5.22) ### Storable 2.08 core ### Getopt::Long 2.24 core ### Pod::Usage core