From owner-svn-ports-head@freebsd.org Sat Jun 18 22:10:56 2016 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 A5824A79132; Sat, 18 Jun 2016 22:10:56 +0000 (UTC) (envelope-from madpilot@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 5C742139C; Sat, 18 Jun 2016 22:10:56 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5IMAtCU053631; Sat, 18 Jun 2016 22:10:55 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5IMAtGG053628; Sat, 18 Jun 2016 22:10:55 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201606182210.u5IMAtGG053628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sat, 18 Jun 2016 22:10:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417093 - in head/net-im: cutegram libqtelegram-ae telegramqml 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.22 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: Sat, 18 Jun 2016 22:10:56 -0000 Author: madpilot Date: Sat Jun 18 22:10:55 2016 New Revision: 417093 URL: https://svnweb.freebsd.org/changeset/ports/417093 Log: Fix build with libc++ 3.8.0. PR: 209967 Submitted by: me Approved by: Henry Hu (maintainer) Modified: head/net-im/cutegram/Makefile head/net-im/libqtelegram-ae/Makefile head/net-im/telegramqml/Makefile Modified: head/net-im/cutegram/Makefile ============================================================================== --- head/net-im/cutegram/Makefile Sat Jun 18 22:07:12 2016 (r417092) +++ head/net-im/cutegram/Makefile Sat Jun 18 22:10:55 2016 (r417093) @@ -24,10 +24,17 @@ GH_TAGNAME= 91bf14b:tools USES= qmake:outsource desktop-file-utils USE_QT5= qmake_build buildtools_build core qml quick sql xml multimedia \ widgets dbus webkit quickcontrols graphicaleffects sql-sqlite3 +USE_OPENSSL= yes +QMAKE_ARGS= LIBQTELEGRAM_INCLUDE_PATH="${LOCALBASE}/include/libqtelegram-ae" \ + TELEGRAMQML_INCLUDE_PATH="${LOCALBASE}/include/telegramqml" INSTALLS_ICONS= yes post-extract: @${RMDIR} ${WRKSRC}/Cutegram/asemantools && \ ${MV} ${WRKSRC_tools} ${WRKSRC}/Cutegram/asemantools +post-patch: + @${REINPLACE_CMD} -e "/isEmpty(OPENSSL_INCLUDE_PATH)/d" \ + ${WRKSRC}/Cutegram/Cutegram.pro + .include Modified: head/net-im/libqtelegram-ae/Makefile ============================================================================== --- head/net-im/libqtelegram-ae/Makefile Sat Jun 18 22:07:12 2016 (r417092) +++ head/net-im/libqtelegram-ae/Makefile Sat Jun 18 22:10:55 2016 (r417093) @@ -19,6 +19,11 @@ GH_PROJECT= libqtelegram-aseman-edition USES= qmake:outsource USE_QT5= qmake_build buildtools_build core gui network multimedia +USE_OPENSSL= yes USE_LDCONFIG= yes +post-patch: + @${REINPLACE_CMD} -e "/OPENSSL_INCLUDE_PATH/d" \ + ${WRKSRC}/libqtelegram-ae.pri + .include Modified: head/net-im/telegramqml/Makefile ============================================================================== --- head/net-im/telegramqml/Makefile Sat Jun 18 22:07:12 2016 (r417092) +++ head/net-im/telegramqml/Makefile Sat Jun 18 22:10:55 2016 (r417093) @@ -20,7 +20,13 @@ GH_PROJECT= TelegramQML USES= qmake:outsource USE_QT5= qmake_build buildtools_build core qml quick sql xml multimedia +USE_OPENSSL= yes USE_LDCONFIG= yes -QMAKE_ARGS= BUILD_MODE+=lib +QMAKE_ARGS= BUILD_MODE+=lib \ + LIBQTELEGRAM_INCLUDE_PATH="${LOCALBASE}/include/libqtelegram-ae" + +post-patch: + @${REINPLACE_CMD} -e "/isEmpty(OPENSSL_INCLUDE_PATH)/d" \ + ${WRKSRC}/telegramqml.pri .include