Created attachment 159743 [details] Update to 1.1.00 Update to 1.1.00. Important changes include: - Remove RUN_DEPENDS on circuit simulators - Support building with WX 3.0 Minor, non-noteworthy changes include: - Update COMMENT and pkg-descr - Update LICENSE to GPLv3 - Respect CFLAGS from ports infrastructure
Created attachment 159744 [details] Poudriere build log
This patch fails to build like that: http://pd.valinor.palantiri.org/data/93amd64-default/2015-09-07_17h18m13s/logs/errors/gspiceui-1.1.00.log
(In reply to Bartek Rutkowski from comment #2) I'm running FreeBSD 10, so I can't seem to reproduce this issue. It looks like either the program or wxgtk30 requires c++11 support. Could you try adding USES=compiler:c++11-lib or removing WX 3.0?
(In reply to Kevin Zheng from comment #3) The line USES=compiler:c++11-lib exists in current Makefile. Add a line : CXXFLAGS+= -std=c++11 will resolve the problem. wen
Created attachment 161453 [details] Updated patch with CXXFLAGS fixed
A commit references this bug: Author: robak Date: Sun Nov 8 10:53:52 UTC 2015 New revision: 401047 URL: https://svnweb.freebsd.org/changeset/ports/401047 Log: cad/gspiceui: update 1.0.00 -> 1.1.00 - Remove RUN_DEPENDS on circuit simulators - Support building with WX 3.0 - Update COMMENT and pkg-descr - Update LICENSE to GPLv3 - Respect CFLAGS from ports infrastructure PR: 202232 Submitted by: Kevin Zheng <kevinz5000@gmail.com> (maintainer) Changes: head/cad/gspiceui/Makefile head/cad/gspiceui/distinfo head/cad/gspiceui/files/ head/cad/gspiceui/files/patch-src_Makefile head/cad/gspiceui/files/patch-src_TypeDefs.hpp head/cad/gspiceui/pkg-descr
Committed, thanks!