From owner-svn-ports-head@freebsd.org Wed Feb 22 19:51:09 2017 Return-Path: Delivered-To: svn-ports-head@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 6EB80CE6253; Wed, 22 Feb 2017 19:51:09 +0000 (UTC) (envelope-from rezny@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 3BAC5C6F; Wed, 22 Feb 2017 19:51:09 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1MJp8WK041733; Wed, 22 Feb 2017 19:51:08 GMT (envelope-from rezny@FreeBSD.org) Received: (from rezny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1MJp8xI041732; Wed, 22 Feb 2017 19:51:08 GMT (envelope-from rezny@FreeBSD.org) Message-Id: <201702221951.v1MJp8xI041732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rezny set sender to rezny@FreeBSD.org using -f From: Matthew Rezny Date: Wed, 22 Feb 2017 19:51:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434635 - head/net/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-head@freebsd.org X-Mailman-Version: 2.1.23 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: Wed, 22 Feb 2017 19:51:09 -0000 Author: rezny Date: Wed Feb 22 19:51:08 2017 New Revision: 434635 URL: https://svnweb.freebsd.org/changeset/ports/434635 Log: Replace USE_OPENSSL with USES=ssl and bump portrevision for SSL changes. This should have been part of the prior commit, oops. PR: 216781 Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9727 Modified: head/net/qt4-network/Makefile Modified: head/net/qt4-network/Makefile ============================================================================== --- head/net/qt4-network/Makefile Wed Feb 22 19:38:31 2017 (r434634) +++ head/net/qt4-network/Makefile Wed Feb 22 19:51:08 2017 (r434635) @@ -3,7 +3,7 @@ PORTNAME= network DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 PKGNAMEPREFIX= qt4- @@ -15,11 +15,11 @@ LICENSE_COMB= dual RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss +USES= ssl USE_QT4= qmake_build moc_build rcc_build corelib QT_DIST= yes HAS_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} -USE_OPENSSL= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH @@ -55,7 +55,8 @@ post-configure: -E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \ ${WRKSRC}/lib/pkgconfig/QtNetwork.pc ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/src/network/ssl/qsslsocket_openssl.cpp \ + ${WRKSRC}/src/network/ssl/qsslsocket_openssl.cpp + ${REINPLACE_CMD} -e 's|%%OPENSSLLIB%%|${OPENSSLLIB}|g' \ ${WRKSRC}/src/network/ssl/qsslsocket_openssl_symbols.cpp .include