diff options
author | makc <makc@FreeBSD.org> | 2011-04-09 03:26:19 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2011-04-09 03:26:19 +0800 |
commit | 015d1d2892f96c8fa7cfc3f3b9f3c272f11fa973 (patch) | |
tree | bc8f8173390ca5b58154d496e5cb6ef27d525aba /science/kst2 | |
parent | 8ace6dc0a777efd99c3b902f2ab5327e1da6a467 (diff) | |
download | freebsd-ports-gnome-015d1d2892f96c8fa7cfc3f3b9f3c272f11fa973.tar.gz freebsd-ports-gnome-015d1d2892f96c8fa7cfc3f3b9f3c272f11fa973.tar.zst freebsd-ports-gnome-015d1d2892f96c8fa7cfc3f3b9f3c272f11fa973.zip |
- Kst is broken with undefined CMAKE_BUILD_TYPE. Set CMAKE_BUILD_TYPE to
Release, until a proper fix will be committed to bsd.cmake.mk
- Enable MAKE_JOBS_SAFE again
Reported by: pointyhat
Diffstat (limited to 'science/kst2')
-rw-r--r-- | science/kst2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/science/kst2/Makefile b/science/kst2/Makefile index 33858a30493d..e49fedc64e88 100644 --- a/science/kst2/Makefile +++ b/science/kst2/Makefile @@ -22,10 +22,12 @@ USE_QT_VER= 4 QT_COMPONENTS= gui xml designer svg opengl \ qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes -#MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAFE= yes CMAKE_SOURCE_PATH= ${WRKSRC}/cmake CMAKE_ARGS+= -Dkst_install_prefix=${PREFIX} +#Kst does not support empty CMAKE_BUILD_TYPE +CMAKE_BUILD_TYPE= Release MAN1= kst2.1 |