From owner-svn-ports-all@freebsd.org Tue May 31 11:03:53 2016 Return-Path: Delivered-To: svn-ports-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 9BDADB55A98; Tue, 31 May 2016 11:03:53 +0000 (UTC) (envelope-from danfe@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 544581C35; Tue, 31 May 2016 11:03:53 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4VB3qN1073927; Tue, 31 May 2016 11:03:52 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4VB3qEB073924; Tue, 31 May 2016 11:03:52 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201605311103.u4VB3qEB073924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 31 May 2016 11:03:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416192 - in head/graphics/seexpr: . files 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.22 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: Tue, 31 May 2016 11:03:53 -0000 Author: danfe Date: Tue May 31 11:03:52 2016 New Revision: 416192 URL: https://svnweb.freebsd.org/changeset/ports/416192 Log: - Update to version 2.9 and drop no longer needed GH_TAGNAME - Unbreak the build by putting `sip_build' on the USE_PYQT list - Patch generated sipAPIexpreditor.h file to allow building against newish libc++ 3.8.0 Added: head/graphics/seexpr/files/patch-src_SeExprEditor_CMakeLists.txt (contents, props changed) Modified: head/graphics/seexpr/Makefile head/graphics/seexpr/distinfo Modified: head/graphics/seexpr/Makefile ============================================================================== --- head/graphics/seexpr/Makefile Tue May 31 11:00:00 2016 (r416191) +++ head/graphics/seexpr/Makefile Tue May 31 11:03:52 2016 (r416192) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= seexpr -DISTVERSION= 1.0.1.2015.08.29 -PORTREVISION= 1 +DISTVERSIONPREFIX= v +PORTVERSION= 2.9 CATEGORIES= graphics math MAINTAINER= danfe@FreeBSD.org @@ -13,10 +13,9 @@ LICENSE= APACHE20 USE_GITHUB= yes GH_ACCOUNT= wdas -GH_TAGNAME= 36ffb818b8 USES= bison cmake compiler:c++0x pyqt:4 python -USE_PYQT= gui_build +USE_PYQT= gui_build sip_build USE_QT4= moc_build qmake_build rcc_build uic_build gui opengl MAKE_JOBS_UNSAFE= yes Modified: head/graphics/seexpr/distinfo ============================================================================== --- head/graphics/seexpr/distinfo Tue May 31 11:00:00 2016 (r416191) +++ head/graphics/seexpr/distinfo Tue May 31 11:03:52 2016 (r416192) @@ -1,2 +1,2 @@ -SHA256 (wdas-seexpr-1.0.1.2015.08.29-36ffb818b8_GH0.tar.gz) = 8361adb26310060b063e37376625acb60314deac081130a397857f04884e2a7b -SIZE (wdas-seexpr-1.0.1.2015.08.29-36ffb818b8_GH0.tar.gz) = 709489 +SHA256 (wdas-seexpr-v2.9_GH0.tar.gz) = 097642881f2c360d825f31e7c23881226386776dccbe8aa5b37c9ee0077601b2 +SIZE (wdas-seexpr-v2.9_GH0.tar.gz) = 709434 Added: head/graphics/seexpr/files/patch-src_SeExprEditor_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seexpr/files/patch-src_SeExprEditor_CMakeLists.txt Tue May 31 11:03:52 2016 (r416192) @@ -0,0 +1,11 @@ +--- src/SeExprEditor/CMakeLists.txt.orig 2015-08-28 22:32:38 UTC ++++ src/SeExprEditor/CMakeLists.txt +@@ -103,6 +103,8 @@ ENDIF(WIN32) + -t WS_X11 -g -j 1 + -I. -I${PYQT4_SIP} -I${SIP_INCLUDE_DIR} + ${CMAKE_CURRENT_SOURCE_DIR}/SeExprEditor.sip ++# libc++ 3.8.0 hack: things break if is included after ++ COMMAND sed -i.bak -e "10s,^,#include ," sipAPIexpreditor.h + VERBATIM) + + add_library(expreditor SHARED sipexpreditorpart0.cpp)