diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-29 12:11:08 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-29 12:11:08 +0200 |
commit | 16e9630b79f0a7a90c6cedb6781175bb8b337dc1 (patch) | |
tree | e1b09d277dec2057e6b995ec099dd2b1f2129b35 /distribution/osx/gtk-bundle/XTrackCAD-help | |
parent | 09795a01ef859f072920de9df974d1b03b9ab9a4 (diff) |
New upstream version 4.3.0upstream/4.3.0
Diffstat (limited to 'distribution/osx/gtk-bundle/XTrackCAD-help')
7 files changed, 79 insertions, 0 deletions
diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/CMakeLists.txt b/distribution/osx/gtk-bundle/XTrackCAD-help/CMakeLists.txt new file mode 100644 index 0000000..c25d0e1 --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/CMakeLists.txt @@ -0,0 +1,14 @@ + +CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/Info-xtrkcad-help.plist.in ${CMAKE_CURRENT_BINARY_DIR}/Info.plist @ONLY) + +FILE(MAKE_DIRECTORY share) + +INSTALL ( + FILES ${CMAKE_CURRENT_BINARY_DIR}/Info.plist + DESTINATION ${XTRKCAD_SHARE_INSTALL_DIR}/XTrackCAD.help/Contents +) + +ADD_SUBDIRECTORY(Contents) + + + diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/CMakeLists.txt b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/CMakeLists.txt new file mode 100644 index 0000000..eb44cea --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/CMakeLists.txt @@ -0,0 +1,5 @@ + +ADD_SUBDIRECTORY(Resources) + + + diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/CMakeLists.txt b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/CMakeLists.txt new file mode 100644 index 0000000..275bb02 --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/CMakeLists.txt @@ -0,0 +1,12 @@ + +MAKE_DIRECTORY (${CMAKE_INSTALL_PREFIX}/${XTRKCAD_SHARE_INSTALL_DIR}/XTrackCAD.help/shrd) + +INSTALL ( + FILES ${CMAKE_CURRENT_SOURCE_DIR}/icon_16x16.png + DESTINATION ${XTRKCAD_SHARE_INSTALL_DIR}/XTrackCAD.help/Contents/Resources + ) + +ADD_SUBDIRECTORY(en.lproj) + + + diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/en.lproj/CMakeLists.txt b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/en.lproj/CMakeLists.txt new file mode 100644 index 0000000..4ac56f7 --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/en.lproj/CMakeLists.txt @@ -0,0 +1,10 @@ + + +INSTALL( + + FILES ${CMAKE_CURRENT_SOURCE_DIR}/InfoPlist.strings + DESTINATION ${XTRKCAD_SHARE_INSTALL_DIR}/XTrackCAD.help/Contents/Resources/en.lproj + ) + + + diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/en.lproj/InfoPlist.strings b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..b024970 --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +"CFBundleName" = "XTrackCAD Help" +"HPDBookTitle" = "XTrackCAD Help" diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/icon_16x16.png b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/icon_16x16.png Binary files differnew file mode 100644 index 0000000..ed29bd5 --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/Contents/Resources/icon_16x16.png diff --git a/distribution/osx/gtk-bundle/XTrackCAD-help/info-xtrkcad-help.plist.in b/distribution/osx/gtk-bundle/XTrackCAD-help/info-xtrkcad-help.plist.in new file mode 100644 index 0000000..4d149d6 --- /dev/null +++ b/distribution/osx/gtk-bundle/XTrackCAD-help/info-xtrkcad-help.plist.in @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>en_us</string> + <key>CFBundleIdentifier</key> + <string>org.xtrkcad.help</string> + <key>CFInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>BNDL</string> + <key>CFBundlePackageName</key> + <string>XTrackCAD</string> + <key>CFBundleShortVersionString</key> + <string>@XTRKCAD_VERSION@</string> + <key>CFBundleVersion</key> + <string>@XTRKCAD_VERSION@</string> + <key>CFBundleDisplayName</key> + <string>XTrackCAD-Help</string> + <key>HPDBookAccessPath</key> + <string>index.html</string> + <key>HPDBookIconPath</key> + <string>icon_16x16.png</string> + <key>HPDBookIndexPath</key> + <string>XTrackCAD.helpindex</string> + <key>HPDBookKBDProduct</key> + <string>xtrkcad1</string> + <key>HPDBookTitle</key> + <string>XTrackCAD Help</string> + <key>HPDBookType</key> + <string>3</string> + <key>HPDBookTopicListCSSPath</key> + <string>xtrkcad_lin.css</string> +</dict> +</plist> |