From owner-svn-doc-all@freebsd.org Wed Oct 25 15:10:21 2017 Return-Path: Delivered-To: svn-doc-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 42C44E4C9BF; Wed, 25 Oct 2017 15:10:21 +0000 (UTC) (envelope-from ak@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 1C453709A7; Wed, 25 Oct 2017 15:10:21 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9PFAKts009354; Wed, 25 Oct 2017 15:10:20 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9PFAKF2009353; Wed, 25 Oct 2017 15:10:20 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201710251510.v9PFAKF2009353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Wed, 25 Oct 2017 15:10:20 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51145 - head/en_US.ISO8859-1/books/porters-handbook/special X-SVN-Group: doc-head X-SVN-Commit-Author: ak X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/porters-handbook/special X-SVN-Commit-Revision: 51145 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Oct 2017 15:10:21 -0000 Author: ak (ports committer) Date: Wed Oct 25 15:10:19 2017 New Revision: 51145 URL: https://svnweb.freebsd.org/changeset/doc/51145 Log: - Update wxWidgets section Differential Revision: https://reviews.freebsd.org/D12700 Approved by: portmgr (mat) Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Wed Oct 25 15:06:14 2017 (r51144) +++ head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Wed Oct 25 15:10:19 2017 (r51145) @@ -4167,35 +4167,20 @@ USE_PYTHON= autoplist distutils - 2.4 + 2.8 x11-toolkits/wxgtk24 + role="port">x11-toolkits/wxgtk28 - 2.6 + 3.0 x11-toolkits/wxgtk26 + role="port">x11-toolkits/wxgtk30 - - - 2.8 - x11-toolkits/wxgtk28 - - - The versions starting from 2.5 also - come in Unicode version and are installed by a slave port - named like the normal one plus a - -unicode suffix, but this can be - handled with variables (see - ). - - The variables in can be set to one or more of these combinations separated by spaces: @@ -4215,22 +4200,22 @@ USE_PYTHON= autoplist distutils Single version - 2.4 + 2.8 Ascending range - 2.4+ + 2.8+ Descending range - 2.6- + 3.0- Full range (must be ascending) - 2.4-2.6 + 2.8-3.0 @@ -4307,20 +4292,8 @@ USE_PYTHON= autoplist distutils python wxPython (Python bindings) - 2.4-2.6 + 2.8-3.0 - - - mozilla - wxMozilla - 2.4 - - - - svg - wxSVG - 2.6 - @@ -4418,73 +4391,11 @@ USE_PYTHON= autoplist distutils 2.4 and its contributed libraries. - USE_WX= 2.4 + USE_WX= 2.8 WX_COMPS= wx contrib - - Unicode - - The wxWidgets library - supports Unicode since version 2.5. In - the ports tree both versions are available and can be - selected with these variables: - - - Variables to Select Unicode in - <application>wxWidgets</application> - Versions - - - - - Variable - Description - Designed for - - - - - - WX_UNICODE - The port works only with - the Unicode version - the port - - - - WANT_UNICODE - The port works with both versions but prefers - the Unicode one - the port - - - - WITH_UNICODE - The port will use the Unicode version - the user - - - - WITHOUT_UNICODE - The port will use the normal version if - supported (when WX_UNICODE is not - defined) - the user - - - -
- - - Do not use WX_UNICODE for ports - that can use both Unicode and normal versions. If - the port needs to use Unicode by default, define - WANT_UNICODE instead. - -
- Detecting Installed Versions @@ -4507,8 +4418,8 @@ WX_COMPS= wx contrib
.include <bsd.port.pre.mk> -.if defined(WITH_WX) || !empty(PORT_OPTIONS:MWX) || !empty(HAVE_WX:Mwx-2.4) -USE_WX= 2.4 +.if defined(WITH_WX) || !empty(PORT_OPTIONS:MWX) || !empty(HAVE_WX:Mwx-2.8) +USE_WX= 2.8 CONFIGURE_ARGS+= --enable-wx .endif @@ -4516,11 +4427,11 @@ CONFIGURE_ARGS+= --enable-wx enables wxPython support if it is installed or if an option is selected, in addition to wxWidgets, both version - 2.6. + 2.8. - USE_WX= 2.6 + USE_WX= 2.8 WX_COMPS= wx -WANT_WX= 2.6 +WANT_WX= 2.8 .include <bsd.port.pre.mk> @@ -4573,12 +4484,6 @@ CONFIGURE_ARGS+= --enable-wxpython version that is going to be used (for example, 2.6) - - - WX_UNICODE - If not defined but Unicode is going to be used - then it will be defined - @@ -4611,7 +4516,7 @@ CONFIGURE_ARGS+= --enable-wxpython version string, assign it to a variable and pass it to the program. - USE_WX= 2.4 + USE_WX= 2.8 WX_PREMK= yes .include <bsd.port.pre.mk>