mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 15:29:15 -04:00
math/metis. Because math/metis and math/metis-edf are conflicting, this means that the ports which depend on SuiteSparse and on metis-edf became BROKEN. To solve this problem, this revision adds the missings includes brought by metis-edf to metis. Note for myself: if everything goes well, do not forget to deprecate the port math/metis-edf in a near future.
17 lines
520 B
Text
17 lines
520 B
Text
--- programs/CMakeLists.txt.orig 2013-03-30 16:24:45 UTC
|
|
+++ programs/CMakeLists.txt
|
|
@@ -13,9 +13,14 @@ foreach(prog gpmetis ndmetis mpmetis m2g
|
|
# target_link_libraries(${prog} metis profiler)
|
|
endforeach(prog)
|
|
|
|
+# Borrowed from metis-edf
|
|
+file(GLOB metis_h *.h)
|
|
+
|
|
if(METIS_INSTALL)
|
|
install(TARGETS gpmetis ndmetis mpmetis m2gmetis graphchk cmpfillin
|
|
RUNTIME DESTINATION bin)
|
|
+# Borrowed from metis-edf
|
|
+ install(FILES ${metis_h} DESTINATION include/programs)
|
|
endif()
|
|
|
|
# Try to find subversion revision.
|