It was breaking because of wrong python shebang. This port is a python port, renamed per section 6.17. Unbroke: * Added USES=shebangfix and SHEBANG_FILES * Added stripping (post-install) Additional changes: * Added USE_QT4 * Added USE_PYTHON=concurrent Approved by: tcberner (mentor, implicit) Approved by: portmgr (port compliance, infrastructure)
11 lines
431 B
C
11 lines
431 B
C
--- veusz/helpers/src/qtloops/isnan.h.orig 2013-11-27 18:00:21 UTC
|
|
+++ veusz/helpers/src/qtloops/isnan.h
|
|
@@ -50,7 +50,7 @@
|
|
# define isFinite(_a) (_finite(_a)) /* Win32 definition */
|
|
#elif defined(__sgi)
|
|
# define isFinite(_a) (_isfinite(_a))
|
|
-#elif defined(isfinite)
|
|
+#elif defined(isfinite) || defined(__FreeBSD__)
|
|
# define isFinite(_a) (isfinite(_a))
|
|
#elif defined(__osf__)
|
|
# define isFinite(_a) (finite(_a) && !isNaN(_a))
|