~ubuntu-branches/ubuntu/trusty/stellarium/trusty

« back to all changes in this revision

Viewing changes to doc/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2013-06-26 10:04:00 UTC
  • Revision ID: package-import@ubuntu.com-20130626100400-6spbt49y17dzpv7g
Tags: 0.12.1-4
* Update dependency from ttf-dejavu-core to fonts-dejavu-core
* Temporary fix for build problems on kFreeBSD

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
  DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1
25
25
)
26
26
 
27
 
IF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)")
 
27
IF(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD")
28
28
  INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION man/man1)
29
 
ELSE(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)")
 
29
ELSE(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD")
30
30
  INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION share/man/man1)
31
 
ENDIF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)")
 
31
ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD")
32
32
 
33
33
ENDIF(UNIX AND NOT WIN32)
34
34