From owner-svn-ports-all@FreeBSD.ORG Wed Nov 21 23:01:58 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C264341D; Wed, 21 Nov 2012 23:01:58 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id A6AA98FC08; Wed, 21 Nov 2012 23:01:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qALN1wCY048009; Wed, 21 Nov 2012 23:01:58 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qALN1wcA048008; Wed, 21 Nov 2012 23:01:58 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201211212301.qALN1wcA048008@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 21 Nov 2012 23:01:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307630 - 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-all@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 21 Nov 2012 23:01:58 -0000 Author: bapt Date: Wed Nov 21 23:01:58 2012 New Revision: 307630 URL: http://svnweb.freebsd.org/changeset/ports/307630 Log: Convert to new options framework Feature safe: yes Modified: head/x11-toolkits/p5-Alien-wxWidgets/Makefile Modified: head/x11-toolkits/p5-Alien-wxWidgets/Makefile ============================================================================== --- head/x11-toolkits/p5-Alien-wxWidgets/Makefile Wed Nov 21 23:00:24 2012 (r307629) +++ head/x11-toolkits/p5-Alien-wxWidgets/Makefile Wed Nov 21 23:01:58 2012 (r307630) @@ -13,7 +13,9 @@ COMMENT= Perl5 module for building, find BUILD_DEPENDS= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -OPTIONS= UNICODE "Build with Unicode support" on +OPTIONS_DEFINE= UNICODE +OPTIONS_DEFAULT= UNICODE +UNICODE_DESC= Build with Unicode support USE_GCC= any USE_WX= 2.6+ @@ -26,7 +28,7 @@ PERL_MODBUILD= yes BUILD_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable .endif -.if defined(WITH_UNICODE) +.if ${PORT_OPTIONS:MUNICODE} WX_UNICODE= yes WX_UNI= uni_ CONFIGURE_ARGS+= --wxWidgets-build=0 --wxWidgets-unicode=1