ports/net/freerdp/files/patch-winpr_CMakeLists.txt
Carlos J. Puga Medina 6937c98e2b net/freerdp: Update to 2.0.0-rc1
- Enable 64 bit file support in winpr
- Remove unneeded patches (added upstream)
- Add support for ICU for unicode conversion
- Add support for KERBEROS
- Add MANPAGES option and fix man pages installation in /usr/local/man
- Fix WWW in pkg-descr
- Pet portlint

Changelog: https://github.com/FreeRDP/FreeRDP/blob/2.0.0-rc1/ChangeLog

PR:		224658
Submitted by:	cpm
Reviewed by:	kevans
Approved by:	kevans (maintainer)
2018-01-04 19:37:58 +00:00

18 lines
402 B
Text

--- winpr/CMakeLists.txt.orig 2017-11-28 14:26:30 UTC
+++ winpr/CMakeLists.txt
@@ -180,7 +180,14 @@ if(BUILD_TESTING)
add_subdirectory(test)
endif()
-install_freerdp_man(wlog.7 7)
+if(WITH_MANPAGES)
+ if(BSD)
+ install(FILES wlog.7 DESTINATION man/man7)
+ else()
+ install_freerdp_man(wlog.7 7)
+ endif()
+endif(WITH_MANPAGES)
+
# Exporting
if(${CMAKE_VERSION} VERSION_GREATER "2.8.10")