summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Waibel <waebbl@gmail.com>2017-11-22 00:41:38 +0100
committerPatrice Clement <monsieurp@gentoo.org>2017-12-02 23:53:11 +0100
commit8230f66468c12dd1df02eefbc31b57c5a10dd854 (patch)
tree3fa734c5f6d4493f9712270cf335ef59605fc083 /sci-libs/dcmtk/files
parentdev-util/geany-plugins: version bump to 1.32 and fix dependencies. (diff)
downloadgentoo-8230f66468c12dd1df02eefbc31b57c5a10dd854.tar.gz
gentoo-8230f66468c12dd1df02eefbc31b57c5a10dd854.tar.bz2
gentoo-8230f66468c12dd1df02eefbc31b57c5a10dd854.zip
sci-libs/dcmtk: patch to install docs.
Also fixes a warning about mycmakeargs not being an array in src_configure. Closes: https://bugs.gentoo.org/577594 Closes: https://github.com/gentoo/gentoo/pull/6258 Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'sci-libs/dcmtk/files')
-rw-r--r--sci-libs/dcmtk/files/dcmtk-fix_doc_install.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/sci-libs/dcmtk/files/dcmtk-fix_doc_install.patch b/sci-libs/dcmtk/files/dcmtk-fix_doc_install.patch
new file mode 100644
index 000000000000..50f4a362dccc
--- /dev/null
+++ b/sci-libs/dcmtk/files/dcmtk-fix_doc_install.patch
@@ -0,0 +1,16 @@
+diff --git a/doxygen/CMakeLists.txt b/doxygen/CMakeLists.txt
+index 6a0323f..4f18087 100644
+--- a/doxygen/CMakeLists.txt
++++ b/doxygen/CMakeLists.txt
+@@ -32,9 +32,9 @@ IF(DCMTK_WITH_DOXYGEN)
+ ENDIF(NOT WIN32)
+
+ # install html docs and manpages
+- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/htmldocs/ DESTINATION ${CMAKE_INSTALL_PREFIX}${INSTALL_HTMDIR} PATTERN "CVS" EXCLUDE)
++ INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/htmldocs/ DESTINATION ${INSTALL_HTMDIR} PATTERN "CVS" EXCLUDE)
+ IF(NOT WIN32)
+- INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/manpages/ DESTINATION ${CMAKE_INSTALL_PREFIX}${INSTALL_MANDIR} PATTERN "CVS" EXCLUDE)
++ INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/manpages/ DESTINATION ${INSTALL_MANDIR} PATTERN "CVS" EXCLUDE)
+ ENDIF(NOT WIN32)
+
+ # cleanup created files on "make clean" - directories are not removed with CMake 2.4 :-/