svn commit: r416192 - in head/graphics/seexpr: . files

Alexey Dokuchaev danfe at FreeBSD.org
Tue May 31 11:03:53 UTC 2016


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 at 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 <iostream> is included after <Python.h>
++                       COMMAND sed -i.bak -e "10s,^,#include <iostream>," sipAPIexpreditor.h
+                        VERBATIM)
+ 
+     add_library(expreditor SHARED sipexpreditorpart0.cpp)


More information about the svn-ports-all mailing list