[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r3307: Add the .DS_Store file required for the pretty dmg backgroun (in vidalia/trunk/pkg: . osx)



Author: phobos
Date: 2008-11-15 23:06:59 -0500 (Sat, 15 Nov 2008)
New Revision: 3307

Added:
   vidalia/trunk/pkg/osx/nonbundle-ds_store
Modified:
   vidalia/trunk/pkg/package.sh
Log:
Add the .DS_Store file required for the pretty dmg background.  Add in
the necessary changes to package.sh to create the pretty dmg with a
background.


Added: vidalia/trunk/pkg/osx/nonbundle-ds_store
===================================================================
(Binary files differ)


Property changes on: vidalia/trunk/pkg/osx/nonbundle-ds_store
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Modified: vidalia/trunk/pkg/package.sh
===================================================================
--- vidalia/trunk/pkg/package.sh	2008-11-16 03:52:30 UTC (rev 3306)
+++ vidalia/trunk/pkg/package.sh	2008-11-16 04:06:59 UTC (rev 3307)
@@ -11,10 +11,8 @@
 ##  the terms described in the LICENSE file.
 ##
 
-
 # Builds distribution packages for various platforms.
 
-
 # Check for proper script arguments
 if [ "$#" -eq 0 ]
 then
@@ -22,7 +20,6 @@
   exit 1
 fi
 
-
 # Make the distribution depending on what type was requested
 case "$1" in
 #
@@ -48,13 +45,15 @@
 # OS X .dmg
 #
 "osx")
-  mkdir ../LEGAL
+  mkdir ../LEGAL ../.background
   cp -R ../README ../src/vidalia/Vidalia.app ../
+  cp osx/background.png ../.background/
+  cp osx/nonbundle-ds_store ../.DS_Store
   cp ../CREDITS ../CHANGELOG ../Vidalia.app/
   cp ../LICENSE ../LICENSE-GPLV2 ../LICENSE-GPLV3 ../LICENSE-LGPLV3 ../LICENSE-OPENSSL ../LEGAL/
   cp -R ../LEGAL ../Vidalia.app/
   srcdir="../"
-  srcfiles="Vidalia.app README LEGAL"
+  srcfiles="Vidalia.app README LEGAL .background .DS_Store"
   osx/builddmg.sh "$srcdir" "$srcfiles"
   ;;