From 12315f4d0e0ae993805f141f64cb8c73c5297311 Mon Sep 17 00:00:00 2001 From: Hans Lambermont Date: Sat, 12 Oct 2002 11:37:38 +0000 Subject: Initial revision --- source/darwin/Makefile | 47 ++++++++++++++++++ .../darwin/blendercreator.app/Contents/Info.plist | 53 +++++++++++++++++++++ .../Contents/MacOS/blendercreator | 1 + source/darwin/blendercreator.app/Contents/PkgInfo | 1 + .../Contents/Resources/blender creator icon.icns | Bin 0 -> 33075 bytes .../Contents/Resources/blender file icon.icns | Bin 0 -> 48147 bytes .../darwin/blenderplayer.app/Contents/Info.plist | 47 ++++++++++++++++++ .../blenderplayer.app/Contents/MacOS/blenderplayer | 1 + source/darwin/blenderplayer.app/Contents/PkgInfo | 1 + .../Contents/Resources/blender file icon.icns | Bin 0 -> 48147 bytes .../Contents/Resources/blender player icon.icns | Bin 0 -> 33075 bytes .../blenderpublisher.app/Contents/Info.plist | 53 +++++++++++++++++++++ .../Contents/MacOS/blenderpublisher | 1 + .../darwin/blenderpublisher.app/Contents/PkgInfo | 1 + .../Contents/Resources/blender file icon.icns | Bin 0 -> 48147 bytes .../Contents/Resources/blender publisher icon.icns | Bin 0 -> 35306 bytes 16 files changed, 206 insertions(+) create mode 100644 source/darwin/Makefile create mode 100644 source/darwin/blendercreator.app/Contents/Info.plist create mode 100644 source/darwin/blendercreator.app/Contents/MacOS/blendercreator create mode 100644 source/darwin/blendercreator.app/Contents/PkgInfo create mode 100644 source/darwin/blendercreator.app/Contents/Resources/blender creator icon.icns create mode 100644 source/darwin/blendercreator.app/Contents/Resources/blender file icon.icns create mode 100644 source/darwin/blenderplayer.app/Contents/Info.plist create mode 100644 source/darwin/blenderplayer.app/Contents/MacOS/blenderplayer create mode 100644 source/darwin/blenderplayer.app/Contents/PkgInfo create mode 100644 source/darwin/blenderplayer.app/Contents/Resources/blender file icon.icns create mode 100644 source/darwin/blenderplayer.app/Contents/Resources/blender player icon.icns create mode 100644 source/darwin/blenderpublisher.app/Contents/Info.plist create mode 100644 source/darwin/blenderpublisher.app/Contents/MacOS/blenderpublisher create mode 100644 source/darwin/blenderpublisher.app/Contents/PkgInfo create mode 100644 source/darwin/blenderpublisher.app/Contents/Resources/blender file icon.icns create mode 100644 source/darwin/blenderpublisher.app/Contents/Resources/blender publisher icon.icns (limited to 'source/darwin') diff --git a/source/darwin/Makefile b/source/darwin/Makefile new file mode 100644 index 00000000000..a53af8cb8e2 --- /dev/null +++ b/source/darwin/Makefile @@ -0,0 +1,47 @@ +# +# $Id: Makefile,v 1.1.1.1 2002/10/12 11:37:43 hans Exp $ +# +# ***** BEGIN GPL/BL DUAL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. The Blender +# Foundation also sells licenses for use in proprietary software under +# the Blender License. See http://www.blender.org/BL/ for information +# about this. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. +# All rights reserved. +# +# The Original Code is: all of this file. +# +# Contributor(s): none yet. +# +# ***** END GPL/BL DUAL LICENSE BLOCK ***** +# + +include nan_definitions.mk + +DIR = $(OCGDIR)/$(DEBUG_DIR) + +all:: + @# set up directory structure for the OSX aplication bundle + @echo "---> creating directory structure for $(APPLICATION)" + @rm -rf $(DIR)/$(APPLICATION).app + @cp -R $(APPLICATION).app $(DIR) + @#cat $(APPLICATION).app/Contents/Info.plist | sed s/VERSION/`cat ../../VERSION`/ | sed s/DATE/`date +'%Y-%b-%d'`/ > $(DIR)/$(APPLICATION).app/Contents/Info.plist + @echo "---> copying binary" + @cp $(DIR)/$(APPLICATION) $(DIR)/$(APPLICATION).app/Contents/MacOS/ + @echo "---> removing CVS directories and Mac hidden files from distribution" + @find $(DIR)/$(APPLICATION).app -name CVS -prune -exec rm -rf {} \; + @find $(DIR)/$(APPLICATION).app -name .DS_Store -exec rm -f {} \; diff --git a/source/darwin/blendercreator.app/Contents/Info.plist b/source/darwin/blendercreator.app/Contents/Info.plist new file mode 100644 index 00000000000..08709cd26e3 --- /dev/null +++ b/source/darwin/blendercreator.app/Contents/Info.plist @@ -0,0 +1,53 @@ + + + + + CFBundleInfoDictionaryVersion + 6.0 + + CFBundleExecutable + blendercreator + + CFBundlePackageType + APPL + CFBundleSignature + ???? + + CFBundleIconFile + blender creator icon.icns + + CFBundleName + BlenderCreator + CFBundleIdentifier + com.nantechnologies.blendercreator + + CFBundleVersion + VERSION, DATE, Copyright NaN Technologies BV + CFBundleShortVersionString + VERSION + CFBundleGetInfoString + VERSION, DATE, Copyright NaN Technologies BV + + CFBundleDocumentTypes + + + CFBundleTypeIconFile + blender file icon.icns + CFBundleTypeName + Blender File + CFBundleTypeOSTypes + + BLND + + CFBundleTypeExtensions + + blend + + CFBundleTypeRole + Editor + LSIsAppleDefaultForType + + + + + diff --git a/source/darwin/blendercreator.app/Contents/MacOS/blendercreator b/source/darwin/blendercreator.app/Contents/MacOS/blendercreator new file mode 100644 index 00000000000..5e05e74a307 --- /dev/null +++ b/source/darwin/blendercreator.app/Contents/MacOS/blendercreator @@ -0,0 +1 @@ +placeholder diff --git a/source/darwin/blendercreator.app/Contents/PkgInfo b/source/darwin/blendercreator.app/Contents/PkgInfo new file mode 100644 index 00000000000..bd04210fb49 --- /dev/null +++ b/source/darwin/blendercreator.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/source/darwin/blendercreator.app/Contents/Resources/blender creator icon.icns b/source/darwin/blendercreator.app/Contents/Resources/blender creator icon.icns new file mode 100644 index 00000000000..8b182a682a0 Binary files /dev/null and b/source/darwin/blendercreator.app/Contents/Resources/blender creator icon.icns differ diff --git a/source/darwin/blendercreator.app/Contents/Resources/blender file icon.icns b/source/darwin/blendercreator.app/Contents/Resources/blender file icon.icns new file mode 100644 index 00000000000..0d38a7b4215 Binary files /dev/null and b/source/darwin/blendercreator.app/Contents/Resources/blender file icon.icns differ diff --git a/source/darwin/blenderplayer.app/Contents/Info.plist b/source/darwin/blenderplayer.app/Contents/Info.plist new file mode 100644 index 00000000000..f46490a40ba --- /dev/null +++ b/source/darwin/blenderplayer.app/Contents/Info.plist @@ -0,0 +1,47 @@ + + + + + CFBundleDocumentTypes + + + CFBundleTypeExtensions + + blend + + CFBundleTypeIconFile + blender file icon.icns + CFBundleTypeName + Blender File + CFBundleTypeOSTypes + + BLND + + CFBundleTypeRole + Viewer + LSIsAppleDefaultForType + + + + CFBundleExecutable + blenderplayer + CFBundleGetInfoString + VERSION, DATE, Copyright NaN Technologies BV + CFBundleIconFile + blender player icon.icns + CFBundleIdentifier + com.nantechnologies.blenderplayer + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + BlenderPlayer + CFBundlePackageType + APPL + CFBundleShortVersionString + VERSION + CFBundleSignature + ???? + CFBundleVersion + VERSION, DATE, Copyright NaN Technologies BV + + diff --git a/source/darwin/blenderplayer.app/Contents/MacOS/blenderplayer b/source/darwin/blenderplayer.app/Contents/MacOS/blenderplayer new file mode 100644 index 00000000000..5e05e74a307 --- /dev/null +++ b/source/darwin/blenderplayer.app/Contents/MacOS/blenderplayer @@ -0,0 +1 @@ +placeholder diff --git a/source/darwin/blenderplayer.app/Contents/PkgInfo b/source/darwin/blenderplayer.app/Contents/PkgInfo new file mode 100644 index 00000000000..bd04210fb49 --- /dev/null +++ b/source/darwin/blenderplayer.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/source/darwin/blenderplayer.app/Contents/Resources/blender file icon.icns b/source/darwin/blenderplayer.app/Contents/Resources/blender file icon.icns new file mode 100644 index 00000000000..0d38a7b4215 Binary files /dev/null and b/source/darwin/blenderplayer.app/Contents/Resources/blender file icon.icns differ diff --git a/source/darwin/blenderplayer.app/Contents/Resources/blender player icon.icns b/source/darwin/blenderplayer.app/Contents/Resources/blender player icon.icns new file mode 100644 index 00000000000..8b182a682a0 Binary files /dev/null and b/source/darwin/blenderplayer.app/Contents/Resources/blender player icon.icns differ diff --git a/source/darwin/blenderpublisher.app/Contents/Info.plist b/source/darwin/blenderpublisher.app/Contents/Info.plist new file mode 100644 index 00000000000..f22de5a4460 --- /dev/null +++ b/source/darwin/blenderpublisher.app/Contents/Info.plist @@ -0,0 +1,53 @@ + + + + + CFBundleInfoDictionaryVersion + 6.0 + + CFBundleExecutable + blenderpublisher + + CFBundlePackageType + APPL + CFBundleSignature + ???? + + CFBundleIconFile + blender publisher icon.icns + + CFBundleName + BlenderPublisher + CFBundleIdentifier + com.nantechnologies.blenderpublisher + + CFBundleVersion + VERSION, DATE, Copyright NaN Technologies BV + CFBundleShortVersionString + VERSION + CFBundleGetInfoString + VERSION, DATE, Copyright NaN Technologies BV + + CFBundleDocumentTypes + + + CFBundleTypeIconFile + blender file icon.icns + CFBundleTypeName + Blender File + CFBundleTypeOSTypes + + BLND + + CFBundleTypeExtensions + + blend + + CFBundleTypeRole + Editor + LSIsAppleDefaultForType + + + + + diff --git a/source/darwin/blenderpublisher.app/Contents/MacOS/blenderpublisher b/source/darwin/blenderpublisher.app/Contents/MacOS/blenderpublisher new file mode 100644 index 00000000000..5e05e74a307 --- /dev/null +++ b/source/darwin/blenderpublisher.app/Contents/MacOS/blenderpublisher @@ -0,0 +1 @@ +placeholder diff --git a/source/darwin/blenderpublisher.app/Contents/PkgInfo b/source/darwin/blenderpublisher.app/Contents/PkgInfo new file mode 100644 index 00000000000..bd04210fb49 --- /dev/null +++ b/source/darwin/blenderpublisher.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/source/darwin/blenderpublisher.app/Contents/Resources/blender file icon.icns b/source/darwin/blenderpublisher.app/Contents/Resources/blender file icon.icns new file mode 100644 index 00000000000..0d38a7b4215 Binary files /dev/null and b/source/darwin/blenderpublisher.app/Contents/Resources/blender file icon.icns differ diff --git a/source/darwin/blenderpublisher.app/Contents/Resources/blender publisher icon.icns b/source/darwin/blenderpublisher.app/Contents/Resources/blender publisher icon.icns new file mode 100644 index 00000000000..2b166c76d56 Binary files /dev/null and b/source/darwin/blenderpublisher.app/Contents/Resources/blender publisher icon.icns differ -- cgit v1.2.3