aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorGravatar Elvio Basello2008-04-04 23:05:19 +0000
committerGravatar Elvio Basello2008-04-04 23:05:19 +0000
commit10a08a43927cf1b77e7887ac1aa5ea937b563d92 (patch)
treef0d5ae35ac3eb3ab3f89070a355a4f1619177b24 /data
parentmaybe fixed skel for windows compilation (diff)
downloadKVIrc-10a08a43927cf1b77e7887ac1aa5ea937b563d92.tar.gz
KVIrc-10a08a43927cf1b77e7887ac1aa5ea937b563d92.tar.bz2
KVIrc-10a08a43927cf1b77e7887ac1aa5ea937b563d92.zip
patched MacOS X stuff
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1394 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'data')
-rw-r--r--data/CMakeLists.txt3
-rw-r--r--data/resources_mac/CMakeLists.txt5
-rw-r--r--data/resources_mac/Info.plist40
3 files changed, 46 insertions, 2 deletions
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
index 7a19c7e66..ec8764fd7 100644
--- a/data/CMakeLists.txt
+++ b/data/CMakeLists.txt
@@ -1,5 +1,4 @@
# CMakeLists for data/
# Find subdirs
-SUBDIRS(config defscript deftheme icons man mimelnk msgcolors pics)
-
+SUBDIRS(config defscript deftheme icons man mimelnk msgcolors pics resources_mac)
diff --git a/data/resources_mac/CMakeLists.txt b/data/resources_mac/CMakeLists.txt
new file mode 100644
index 000000000..887b378b3
--- /dev/null
+++ b/data/resources_mac/CMakeLists.txt
@@ -0,0 +1,5 @@
+# CMakeLists for data/resources_mac
+IF(APPLE)
+ INSTALL(FILES kvirc.icns DESTINATION ${INSTALL_PREFIX}/Contents/Resources/)
+ INSTALL(FILES Info.plist DESTINATION ${INSTALL_PREFIX}/Contents/)
+ENDIF()
diff --git a/data/resources_mac/Info.plist b/data/resources_mac/Info.plist
new file mode 100644
index 000000000..279fef9a6
--- /dev/null
+++ b/data/resources_mac/Info.plist
@@ -0,0 +1,40 @@
+<?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>CFBundleExecutable</key>
+ <string>kvirc4</string>
+ <key>CFBundleIconFile</key>
+ <string>kvirc.icns</string>
+ <key>CFBundleIdentifier</key>
+ <string>com.kvirc.kvirc</string>
+ <key>CFBundleLocalizations</key>
+ <array>
+ <string>en</string>
+ <string>bg</string>
+ <string>ca</string>
+ <string>cs</string>
+ <string>de</string>
+ <string>es</string>
+ <string>fr</string>
+ <string>hu</string>
+ <string>it</string>
+ <string>nl</string>
+ <string>pl</string>
+ <string>pt</string>
+ <string>pt_BR</string>
+ <string>ru</string>
+ <string>sr</string>
+ </array>
+ <key>CFBundleName</key>
+ <string>KVirc</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>4.0.0</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>NSAppleScriptEnabled</key>
+ <false/>
+</dict>
+</plist>