Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 362379 | Differences between
and this patch

Collapse All | Expand All

(-)CMakeLists.txt (-4 / +4 lines)
Lines 337-343 Link Here
337
install (
337
install (
338
  FILES ${CMAKE_CURRENT_BINARY_DIR}/VERSION
338
  FILES ${CMAKE_CURRENT_BINARY_DIR}/VERSION
339
  DESTINATION ${WL_INSTALL_DATADIR}
339
  DESTINATION ${WL_INSTALL_DATADIR}
340
  CONFIGURATIONS Debug;Release
340
  CONFIGURATIONS Debug;Release;Gentoo
341
  COMPONENT CoreVersionFile
341
  COMPONENT CoreVersionFile
342
)
342
)
343
343
Lines 403-409 Link Here
403
    pics
403
    pics
404
    scripting
404
    scripting
405
  DESTINATION ${WL_INSTALL_DATADIR}
405
  DESTINATION ${WL_INSTALL_DATADIR}
406
  CONFIGURATIONS Debug;Release
406
  CONFIGURATIONS Debug;Release;Gentoo
407
  COMPONENT CoreDataFiles
407
  COMPONENT CoreDataFiles
408
)
408
)
409
409
Lines 413-419 Link Here
413
    CREDITS
413
    CREDITS
414
    ChangeLog
414
    ChangeLog
415
  DESTINATION ${WL_INSTALL_DATADIR}
415
  DESTINATION ${WL_INSTALL_DATADIR}
416
  CONFIGURATIONS Debug;Release
416
  CONFIGURATIONS Debug;Release;Gentoo
417
  COMPONENT CoreLicenseFiles
417
  COMPONENT CoreLicenseFiles
418
)
418
)
419
419
Lines 434-440 Link Here
434
  DIRECTORY
434
  DIRECTORY
435
    ${CMAKE_CURRENT_BINARY_DIR}/locale/
435
    ${CMAKE_CURRENT_BINARY_DIR}/locale/
436
  DESTINATION ${WL_INSTALL_DATADIR}/locale
436
  DESTINATION ${WL_INSTALL_DATADIR}/locale
437
  CONFIGURATIONS Debug;Release
437
  CONFIGURATIONS Debug;Release;Gentoo
438
  COMPONENT CoreLanguageFiles
438
  COMPONENT CoreLanguageFiles
439
)
439
)
440
440
(-)po/CMakeLists.txt (-3 / +3 lines)
Lines 1-8 Link Here
1
if (${CMAKE_BUILD_TYPE} STREQUAL Release)
1
if (${CMAKE_BUILD_TYPE} STREQUAL Gentoo)
2
  add_custom_target (
2
  add_custom_target (
3
    lang ALL
3
    lang ALL
4
  )
4
  )
5
else (${CMAKE_BUILD_TYPE} STREQUAL Release)
5
else (${CMAKE_BUILD_TYPE} STREQUAL Gentoo)
6
  add_custom_target (
6
  add_custom_target (
7
    lang_dummy ALL
7
    lang_dummy ALL
8
    COMMAND cmake -E make_directory ${CMAKE_BINARY_DIR}/locale
8
    COMMAND cmake -E make_directory ${CMAKE_BINARY_DIR}/locale
Lines 11-17 Link Here
11
  add_custom_target (
11
  add_custom_target (
12
    lang
12
    lang
13
  )
13
  )
14
endif (${CMAKE_BUILD_TYPE} STREQUAL Release)
14
endif (${CMAKE_BUILD_TYPE} STREQUAL Gentoo)
15
15
16
macro(CreateLocale locale_name)
16
macro(CreateLocale locale_name)
17
  set (commands "")
17
  set (commands "")

Return to bug 362379