From owner-svn-ports-all@freebsd.org Thu Apr 28 13:54:23 2016 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 5ED15B1F811; Thu, 28 Apr 2016 13:54:23 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 07F9B14C6; Thu, 28 Apr 2016 13:54:22 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3SDsMRG044639; Thu, 28 Apr 2016 13:54:22 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3SDsMQk044638; Thu, 28 Apr 2016 13:54:22 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201604281354.u3SDsMQk044638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 28 Apr 2016 13:54:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414171 - head/www/p5-RT-Extension-MandatoryOnTransition 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.21 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: Thu, 28 Apr 2016 13:54:23 -0000 Author: matthew Date: Thu Apr 28 13:54:21 2016 New Revision: 414171 URL: https://svnweb.freebsd.org/changeset/ports/414171 Log: Add support for rt-4.4.x and make it the default selection. PR: 209122 Submitted by: marko.cupac@mimar.rs Modified: head/www/p5-RT-Extension-MandatoryOnTransition/Makefile Modified: head/www/p5-RT-Extension-MandatoryOnTransition/Makefile ============================================================================== --- head/www/p5-RT-Extension-MandatoryOnTransition/Makefile Thu Apr 28 13:44:24 2016 (r414170) +++ head/www/p5-RT-Extension-MandatoryOnTransition/Makefile Thu Apr 28 13:54:21 2016 (r414171) @@ -3,6 +3,7 @@ PORTNAME= RT-Extension-MandatoryOnTransition DISTVERSION= 0.10 +PORTREVISION= 1 CATEGORIES= www net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,16 +14,17 @@ COMMENT= Extension to require core and t LICENSE= GPLv2 OPTIONS_SINGLE= RTVERSION -OPTIONS_SINGLE_RTVERSION= RT40 RT42 +OPTIONS_SINGLE_RTVERSION= RT40 RT42 RT44 RT40_DESC= Install for rt-4.0.x (www/rt40) RT42_DESC= Install for rt-4.2.x (www/rt42) -OPTIONS_DEFAULT= RT42 +RT44_DESC= Install for rt-4.4.x (www/rt44) +OPTIONS_DEFAULT= RT44 .include -.for opt in 40 42 -.if ${PORT_OPTIONS:MRT${opt}} -RT_VER= ${opt} +.for opt in ${OPTIONS_SINGLE_RTVERSION} +.if ${PORT_OPTIONS:M${opt}} +RT_VER= ${opt:S/RT//} .endif .endfor @@ -40,7 +42,7 @@ USE_PERL5= configure PLIST_SUB+= RT_VER=${RT_VER} # Note: You can install using an arbitrary $PREFIX but only if it -# matches the $PREFIX used to install www/rt{40,42}. Hence ignore +# matches the $PREFIX used to install www/rt{40,42,44}. Hence ignore # $PREFIX in the environment and inherit settings from RT.pm do-configure: @cd ${CONFIGURE_WRKSRC} && \