From owner-svn-ports-all@FreeBSD.ORG Sun Jun 8 21:14:08 2014 Return-Path: Delivered-To: svn-ports-all@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 CD144B00; Sun, 8 Jun 2014 21:14:08 +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 BA38C2996; Sun, 8 Jun 2014 21:14:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s58LE8fw043768; Sun, 8 Jun 2014 21:14:08 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s58LE8c1043767; Sun, 8 Jun 2014 21:14:08 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201406082114.s58LE8c1043767@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 8 Jun 2014 21:14:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357073 - head/net/py-qt4-network 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.18 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: Sun, 08 Jun 2014 21:14:08 -0000 Author: rakuco Date: Sun Jun 8 21:14:08 2014 New Revision: 357073 URL: http://svnweb.freebsd.org/changeset/ports/357073 QAT: https://qat.redports.org/buildarchive/r357073/ Log: Enable debug symbols based on the right option. Fix a regression introduced in r311475, which checked for the value of the API option instead of WITH_DEBUG like the other py-qt4 ports. In practice, this meant py-qt4-network was built with debug and tracing symbols by default. MFH: 2014Q2 Modified: head/net/py-qt4-network/Makefile Modified: head/net/py-qt4-network/Makefile ============================================================================== --- head/net/py-qt4-network/Makefile Sun Jun 8 20:49:10 2014 (r357072) +++ head/net/py-qt4-network/Makefile Sun Jun 8 21:14:08 2014 (r357073) @@ -3,6 +3,7 @@ PORTNAME= network PORTVERSION= ${PYQT4_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net devel python MASTER_SITES= ${MASTER_SITES_PYQT4} @@ -50,7 +51,7 @@ ARGS+= --qsci-api --qsci-api-destdir=${ PLIST_SUB+= API="" .endif -.if ${PORT_OPTIONS:MAPI} +.if defined(WITH_DEBUG) ARGS+= --debug --trace .endif