The following reply was made to PR ports/168799; it has been noted by GNATS.
From: Martin Birgmeier <[email protected]> To: [email protected], [email protected] Cc: Subject: Re: ports/168799: math/cantor 4.8.3_1 package creation fails Date: Sat, 16 Jun 2012 12:53:41 +0200 This is a multi-part message in MIME format. --------------020107020002080708040002 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Here are the patches to get cantor building correctly. Regards, Martin --------------020107020002080708040002 Content-Type: text/plain; charset=ISO-8859-1; name="patch-CMakeLists.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-CMakeLists.txt" --- ./CMakeLists.txt.ORIG 2012-05-11 15:11:13.000000000 +0200 +++ ./CMakeLists.txt 2012-06-16 12:46:51.000000000 +0200 @@ -6,7 +6,7 @@ set(CMAKE_MODULE_PATH ${cantor_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) macro_optional_find_package(Analitza) -macro_log_feature(Analitza_FOUND "libanalitza" "A library provided by KAlgebra" FALSE "" "Backend to use KAlgebra with Cantor.") +macro_log_feature(ANALITZA_FOUND "libanalitza" "A library provided by KAlgebra" FALSE "" "Backend to use KAlgebra with Cantor.") macro_optional_find_package(R) macro_log_feature(R_FOUND "R" "A free software environment for statistical computing and graphics" "http://www.r-project.org/" FALSE "" "Backend to use R with Cantor.") --------------020107020002080708040002 Content-Type: text/plain; charset=ISO-8859-1; name="patch-src-backends-CMakeLists.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-src-backends-CMakeLists.txt" --- ./src/backends/CMakeLists.txt.ORIG 2012-05-11 15:11:13.000000000 +0200 +++ ./src/backends/CMakeLists.txt 2012-06-16 12:47:07.000000000 +0200 @@ -3,9 +3,9 @@ add_subdirectory(octave) add_subdirectory(scilab) -if(Analitza_FOUND) +if(ANALITZA_FOUND) add_subdirectory(kalgebra) -endif(Analitza_FOUND) +endif(ANALITZA_FOUND) if(NOT WIN32) add_subdirectory(sage) --------------020107020002080708040002-- _______________________________________________ kde-freebsd mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-freebsd See also http://freebsd.kde.org/ for latest information
