From owner-svn-ports-head@FreeBSD.ORG Tue Apr 8 10:42:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B529A345; Tue, 8 Apr 2014 10:42:17 +0000 (UTC) Received: from svn.freebsd.org (svn.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 95BC31132; Tue, 8 Apr 2014 10:42:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s38AgHD2058365; Tue, 8 Apr 2014 10:42:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s38AgHwG058362; Tue, 8 Apr 2014 10:42:17 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201404081042.s38AgHwG058362@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 8 Apr 2014 10:42:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350597 - head/x11-toolkits/p5-Alien-wxWidgets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Apr 2014 10:42:17 -0000 Author: bapt Date: Tue Apr 8 10:42:16 2014 New Revision: 350597 URL: http://svnweb.freebsd.org/changeset/ports/350597 QAT: https://qat.redports.org/buildarchive/r350597/ Log: Support stage Update to 0.65 Switch default to use wxGTK 3.0 Properly support clang Modified: head/x11-toolkits/p5-Alien-wxWidgets/Makefile head/x11-toolkits/p5-Alien-wxWidgets/distinfo head/x11-toolkits/p5-Alien-wxWidgets/pkg-plist Modified: head/x11-toolkits/p5-Alien-wxWidgets/Makefile ============================================================================== --- head/x11-toolkits/p5-Alien-wxWidgets/Makefile Tue Apr 8 10:39:41 2014 (r350596) +++ head/x11-toolkits/p5-Alien-wxWidgets/Makefile Tue Apr 8 10:42:16 2014 (r350597) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Alien-wxWidgets -PORTVERSION= 0.62 +PORTVERSION= 0.65 CATEGORIES= x11-toolkits perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,36 +10,20 @@ PKGNAMEPREFIX= p5- MAINTAINER= pclin@FreeBSD.org COMMENT= Perl5 module for building, finding and using wxWidgets binaries -OPTIONS_DEFINE= UNICODE -OPTIONS_DEFAULT= UNICODE -UNICODE_DESC= Build with Unicode support - -USE_GCC= any -USES= perl5 +USES= perl5 compiler:env USE_PERL5= modbuild -USE_WX= 2.6+ -WX_COMPS= wx contrib - -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MUNICODE} +USE_WX= 3.0 +WX_COMPS= wx WX_UNICODE= yes WX_UNI= uni_ CONFIGURE_ARGS+= --wxWidgets-build=0 --wxWidgets-unicode=1 -.else -CONFIGURE_ARGS+= --wxWidgets-build=0 --wxWidgets-unicode=0 -.endif - -WX_UVER= ${WX_CONFIG:T} --version | ${TR} '.' '_' -PLIST_SUB+= WX_UVER="$$(${WX_UVER})" WX_UNI=${WX_UNI} -MAN3= Alien::wxWidgets.3 \ - Alien::wxWidgets::Utility.3 +WX_UVER!= ${MAKE} -C ${PORTSDIR}/x11-toolkits/wxgtk30 -V'$${PORTVERSION:C/\./_/g}' +PLIST_SUB+= WX_UVER=${WX_UVER} WX_UNI=${WX_UNI} post-patch: @${REINPLACE_CMD} -e 's/wx-config/${WX_CONFIG:T}/' ${WRKSRC}/Build.PL @${REINPLACE_CMD} -e "s/\'wx-config/\'${WX_CONFIG:T}/" -e "s/lc_r/lpthread/" \ ${WRKSRC}/inc/My/Build/Any_wx_config.pm -.include +.include Modified: head/x11-toolkits/p5-Alien-wxWidgets/distinfo ============================================================================== --- head/x11-toolkits/p5-Alien-wxWidgets/distinfo Tue Apr 8 10:39:41 2014 (r350596) +++ head/x11-toolkits/p5-Alien-wxWidgets/distinfo Tue Apr 8 10:42:16 2014 (r350597) @@ -1,2 +1,2 @@ -SHA256 (Alien-wxWidgets-0.62.tar.gz) = feb655ea2a9f64c43f10b556648bc42d7e7224bbe753f657bd584b39d3e68aba -SIZE (Alien-wxWidgets-0.62.tar.gz) = 666834 +SHA256 (Alien-wxWidgets-0.65.tar.gz) = b4772a319d78cd3c933e90d7bd2f766cd57216c5234abdfd2c43a10ba83c8f40 +SIZE (Alien-wxWidgets-0.65.tar.gz) = 669968 Modified: head/x11-toolkits/p5-Alien-wxWidgets/pkg-plist ============================================================================== --- head/x11-toolkits/p5-Alien-wxWidgets/pkg-plist Tue Apr 8 10:39:41 2014 (r350596) +++ head/x11-toolkits/p5-Alien-wxWidgets/pkg-plist Tue Apr 8 10:42:16 2014 (r350597) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Alien::wxWidgets.3.gz +%%PERL5_MAN3%%/Alien::wxWidgets::Utility.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Alien/wxWidgets/Utility.pm %%SITE_PERL%%/%%PERL_ARCH%%/Alien/wxWidgets/Config/gtk2_%%WX_UVER%%_%%WX_UNI%%gcc_3_4.pm %%SITE_PERL%%/%%PERL_ARCH%%/Alien/wxWidgets.pm