[94920] users/krischik/Utilities

krischik at macports.org krischik at macports.org
Mon Jul 2 05:29:56 PDT 2012


Revision: 94920
          https://trac.macports.org/changeset/94920
Author:   krischik at macports.org
Date:     2012-07-02 05:29:54 -0700 (Mon, 02 Jul 2012)
Log Message:
-----------
qt4-mac needs to be build seperatly ?\226?\128?\148 i wonder why it did not inherit the +universal variant otherwise

Modified Paths:
--------------
    users/krischik/Utilities/Clean.command
    users/krischik/Utilities/Copy_To_New.command
    users/krischik/Utilities/Install.command
    users/krischik/Utilities/Install_BitTornado.command
    users/krischik/Utilities/Install_Dovecot.command
    users/krischik/Utilities/Install_GNOME.command
    users/krischik/Utilities/Install_Gimp.command
    users/krischik/Utilities/Install_KDE4.command
    users/krischik/Utilities/Install_Maintained.command
    users/krischik/Utilities/Install_Minimum.command
    users/krischik/Utilities/Install_Mobile_Development.command
    users/krischik/Utilities/Install_Player.command
    users/krischik/Utilities/Install_Python.command
    users/krischik/Utilities/Install_SpamAssassin.command
    users/krischik/Utilities/Install_Subversion.command
    users/krischik/Utilities/Install_VIM.command
    users/krischik/Utilities/Load.command
    users/krischik/Utilities/Make_DBus_User.command
    users/krischik/Utilities/Make_Dovecot_Certificates.command
    users/krischik/Utilities/Make_Dovecot_Directories.command
    users/krischik/Utilities/Make_Dovecot_User.command
    users/krischik/Utilities/Make_Fetchmail_Directories.command
    users/krischik/Utilities/Make_Fetchmail_User.command
    users/krischik/Utilities/Restart_DBus.command
    users/krischik/Utilities/Restart_Dovecot.command
    users/krischik/Utilities/Restart_Fetchmail.command
    users/krischik/Utilities/Setup.command
    users/krischik/Utilities/Uninstall_GNOME.command
    users/krischik/Utilities/Uninstall_KDE4.command
    users/krischik/Utilities/Update.command

Modified: users/krischik/Utilities/Clean.command
===================================================================
--- users/krischik/Utilities/Clean.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Clean.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,11 +8,11 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
-    Clean;
+    Clean
     gfind "/opt/local"			    \
 	-regextype grep			    \
 	-iregex '.\+mp_[[:digit:]]\{10\}'   \
@@ -22,10 +22,10 @@
 	-iregex '.\+mp_[[:digit:]]\{10\}'   \
 	-exec grm --verbose '{}' ';'
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Copy_To_New.command
===================================================================
--- users/krischik/Utilities/Copy_To_New.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Copy_To_New.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,7 +6,7 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
+setopt X_Trace
 
 if test "${USER}" = "root"; then
     pushd "/opt/local.old"
@@ -20,17 +20,19 @@
 	    etc/dovecot/passwd.dovecot			    \
 	    etc/dovecot/renewcert.zsh			    \
 	    etc/dovecot/userdb.dovecot			    \
+	    etc/fetchmailrc				    \
 	    etc/leafnode/config				    \
 	    etc/rsyncd.conf				    \
 	    etc/ssl					    \
+	    share/purple				    \
 	    var/log					    \
 	    var/run/dovecot				    \
 	    var/run/fetchmail				    \
-	    var/spool/news				    ;
+	    var/spool/news
 	do
-	    gcp --archive --verbose "${I}" "/opt/local/${I}";
+	    gcp --archive --verbose "${I}" "/opt/local/${I}"
 	done; unset I
-    popd;
+    popd
 
     pushd "/opt/local"
 	/bin/chmod +a "martin allow write"	    \
@@ -41,12 +43,13 @@
 	    etc					    \
 	    etc/LaunchDaemons			    \
 	    etc/dovecot				    \
-	    etc/macports			    ;
-    popd;
+	    etc/macports
+    popd
 else
-    setopt Multi_OS;
-    sudo ${0} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install.command
===================================================================
--- users/krischik/Utilities/Install.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,14 +8,14 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    Update_Tree;
-    Update_Packages;
+    Update_Tree
+    Update_Packages
 
     for I in									\
 	"acl2"									\
@@ -76,7 +76,7 @@
 	"xz"									\
 	"transmission-x11 +aqua"						\
 	"fontforge +freetype_bytecode"						\
-	"ImageMagick +graphviz+gs+hdri+jbig+jpeg2+lcms+lqr+mpeg+perl+rsvg+wmf"	;
+	"ImageMagick +graphviz+gs+hdri+jbig+jpeg2+lcms+lqr+mpeg+perl+rsvg+wmf"
     do
 	Install_Update ${=I} "${General_Variants}"
     done; unset I
@@ -88,14 +88,15 @@
 	Install_Update ${=I}
     done; unset I
 
-    Clean;
+    Clean
 
     port select gcc gnat-gcc42
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_BitTornado.command
===================================================================
--- users/krischik/Utilities/Install_BitTornado.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_BitTornado.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,24 +8,24 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
     for I in		    \
 	"py26-wxpython"	    \
-	"bittornado"	    ;
+	"bittornado"
     do
-	Install_Update ${I} ${=General_Variants};
+	Install_Update ${I} ${=General_Variants}
     done; unset I
 
     port select gcc gnat-gcc42
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Install_Dovecot.command
===================================================================
--- users/krischik/Utilities/Install_Dovecot.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Dovecot.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,32 +8,32 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    launchctl unload -w "/Library/LaunchDaemons/org.macports.dovecot.plist";
-    launchctl unload -w "/Library/LaunchDaemons/org.macports.slapd.plist";
+    launchctl unload -w "/Library/LaunchDaemons/org.macports.dovecot.plist"
+    launchctl unload -w "/Library/LaunchDaemons/org.macports.slapd.plist"
 
     for I in				    \
 	"fetchmail +fetchmailconf+ssl+ntml" \
 	"imapfilter"			    \
 	"openldap"			    \
-	"dovecot"			    ;
+	"dovecot"
     do
-	Install_Update ${I} ${=General_Variants};
+	Install_Update ${I} ${=General_Variants}
     done; unset I
 
-    launchctl load -w "/Library/LaunchDaemons/org.macports.slapd.plist";
-    launchctl load -w "/Library/LaunchDaemons/org.macports.dovecot.plist";
+    launchctl load -w "/Library/LaunchDaemons/org.macports.slapd.plist"
+    launchctl load -w "/Library/LaunchDaemons/org.macports.dovecot.plist"
 
     port select gcc gnat-gcc42
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Install_GNOME.command
===================================================================
--- users/krischik/Utilities/Install_GNOME.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_GNOME.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,16 +8,16 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
-    Unload_System;
+    Unload_System
 
     port select gcc gcc42
 
-    Update_Tree;
-    Update_Packages;
+    Update_Tree
+    Update_Packages
 
     for I in						    \
 	"cairo"						    \
@@ -37,21 +37,21 @@
 	"gimp2 gvfs+help_browser"			    \
 	"gimp-app +animation +help_browser +gvfs"	    \
 	"gimp-user-manual +de"				    \
-	"pan2"						    ;
+	"pan2"
     do
 	port install ${=I} ${=General_Variants} ${=Gnome_Variants}
     done; unset I
 
     port select gcc gnat-gcc42
-    Clean;
-    Load_System;
+    Clean
+    Load_System
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    Unload_User;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
+    Unload_User
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
     Load_User
-fi;
+fi
 
 # To start gnome put "exec gnome-session" in your .xinitrc
 # See also http://trac.macports.org/wiki/GNOME
@@ -59,5 +59,6 @@
 #
 # sudo port select python26
 #
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Gimp.command
===================================================================
--- users/krischik/Utilities/Install_Gimp.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Gimp.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,11 +8,11 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
+setopt No_X_Trace
 setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
-    Unload_System;
+    Unload_System
 
     port select gcc gcc42
 
@@ -44,7 +44,8 @@
     Unload_User
     sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
     Load_User
-fi;
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_KDE4.command
===================================================================
--- users/krischik/Utilities/Install_KDE4.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_KDE4.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -45,5 +45,6 @@
     Load_User
 fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Maintained.command
===================================================================
--- users/krischik/Utilities/Install_Maintained.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Maintained.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,14 +8,14 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    Update_Tree;
-    Update_Packages;
+    Update_Tree
+    Update_Packages
 
     for I in					    \
 	"atari800"				    \
@@ -26,7 +26,7 @@
 	"nonpareil"				    \
 	"nrg4iso"				    \
 	"oorexx"				    \
-	"sigil"					    ;
+	"sigil"
     do
 	port install -f ${=I} ${=General_Variants}
     done; unset I
@@ -34,10 +34,11 @@
     port select gcc gnat-gcc42
     Clean
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Minimum.command
===================================================================
--- users/krischik/Utilities/Install_Minimum.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Minimum.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,14 +8,15 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt Multi_OS;
+setopt No_X_Trace
+setopt Multi_OS
 
 sudo port install								    \
     "coreutils" ${=General_Variants}						    \
     "zsh-devel" "+doc" "+mp_completion" ${=General_Variants}			    \
     "subversion" "+bash_completion" "+tools" "+unicode_path" ${=General_Variants}   \
-    1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out							    ;
+    1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Mobile_Development.command
===================================================================
--- users/krischik/Utilities/Install_Mobile_Development.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Mobile_Development.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,15 +8,15 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    Update_Tree;
-    Foce_Activate;
-    Update_Packages;
+    Update_Tree
+    Foce_Activate
+    Update_Packages
 
     for I in		    \
 	"android"	    \
@@ -25,22 +25,22 @@
 	"microemu"	    \
 	"proguard"	    \
 	"scala29"	    \
-	"scala_select"	    ;
+	"scala_select"
     do
-	Install_Update ${I} ${=General_Variants};
+	Install_Update ${I} ${=General_Variants}
     done; unset I
 
     for I in		    \
-	"wine"		    ;
+	"wine"
     do
-	Install_Update ${I};
+	Install_Update ${I}
     done; unset I
 
     port select gcc gnat-gcc42
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Install_Player.command
===================================================================
--- users/krischik/Utilities/Install_Player.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Player.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -22,16 +22,18 @@
     for I in									\
 	"poppler"								\
 	"MPlayer +aa+caca+dts+mencoder_extras+esd+fribidi+live+osd+sdl+speex"   \
-	"avidemux +aac+dts+esd+jack+lame+ogg+x264+xvid"				\
+	"avidemux +aac+dts+esd+jack+lame+ogg+x264+xvid"
     do
 	Install_Update ${=I} "${General_Variants}"
     done; unset I
 
-    for I in									\
+    for I in		\
+	"qt4_select"	\
+	"qt4-mac"	\
 	"VLC +huge+qt4"
     do
 	Install_Update ${=I} "${Qt_Variants}${General_Variants}"
-    done; unset I
+    done; unset I;
 
     port select gcc gnat-gcc42
     Clean
@@ -44,5 +46,6 @@
     Load_User
 fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Python.command
===================================================================
--- users/krischik/Utilities/Install_Python.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Python.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,30 +8,30 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    Update_Tree;
-    Update_Packages;
+    Update_Tree
+    Update_Packages
 
-    for I in				    \
-	"python27 ${=General_Variants}"	    \
-	"py27-ctypes ${=General_Variants}"  \
-	"py27-crypto  ${=General_Variants}" \
-	"py27-tkinter ${=General_Variants}" ;
+    for I in		\
+	"python27 "	\
+	"py27-ctypes"	\
+	"py27-crypto"	\
+	"py27-tkinter"
     do
-	Install_Update ${I} --enforce-variants;
+	Install_Update ${I} "${=General_Variants}"s
     done; unset I
 
-    port select python25
+    port select python27
     port select gcc gnat-gcc42
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Install_SpamAssassin.command
===================================================================
--- users/krischik/Utilities/Install_SpamAssassin.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_SpamAssassin.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,18 +8,18 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    launchctl unload -w "/Library/LaunchDaemons/org.macports.spamd.plist";
+    launchctl unload -w "/Library/LaunchDaemons/org.macports.spamd.plist"
 
     for I in					    \
-	"p5-mail-spamassassin +bayes+razor+ssl"	    ;
+	"p5-mail-spamassassin +bayes+razor+ssl"
     do
-	Install_Update ${I} "${=General_Variants}";
+	Install_Update ${I} "${=General_Variants}"
     done; unset I
 
     pushd /opt/local/etc/mail/spamassassin
@@ -28,21 +28,21 @@
 	    local.cf	\
 	    v310.pre	\
 	    v312.pre	\
-	    v320.pre	;
+	    v320.pre
 	do
 	    if test ! -f "${I}";  then
-	       gcp --verbose "${I}.sample" "${I}";
-	    fi;
+	       gcp --verbose "${I}.sample" "${I}"
+	    fi
 	done; unset I
-    popd;
+    popd
 
-    launchctl load -w "/Library/LaunchDaemons/org.macports.spamd.plist";
+    launchctl load -w "/Library/LaunchDaemons/org.macports.spamd.plist"
 
     port select gcc gnat-gcc42
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Install_Subversion.command
===================================================================
--- users/krischik/Utilities/Install_Subversion.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_Subversion.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,7 +8,7 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
+setopt No_X_Trace
 setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
@@ -17,21 +17,21 @@
     Update_Tree
     Update_Packages
 
-    for I in										    \
-	"junit ${=General_Variants}"							    \
-	"subversion +bash_completion+tools+mod_dav_svn+unicode_path${=General_Variants}"    \
-	"cvs2svn ${=General_Variants}"							    \
-	"subversion-javahlbindings ${=General_Variants}"					    ;
+    for I in								\
+	"juni"								\
+	"subversion +bash_completion+tools+mod_dav_svn+unicode_path"    \
+	"cvs2svn"							\
+	"subversion-javahlbindings"
     do
-	Install_Update ${I};
+	Install_Update ${I} "${=General_Variants}"
     done; unset I
 
     port select gcc gnat-gcc42
     Clean
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Install_VIM.command
===================================================================
--- users/krischik/Utilities/Install_VIM.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Install_VIM.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,14 +8,14 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
+setopt No_X_Trace
 setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     port select gcc gcc42
 
-    Update_Tree;
-    Update_Packages;
+    Update_Tree
+    Update_Packages
 
     for I in		\
 	"autoconf"	\
@@ -28,15 +28,15 @@
 	"perl5"		\
 	"python26"	\
 	"ruby"		\
-	"tcl"		;
+	"tcl"
     do
-	Install_Update ${I} "${=General_Variants}";
+	Install_Update ${I} "${=General_Variants}"
     done; unset I
 
     for I in					\
-	"MacVim +cscope +huge +nls +ruby +xim"	;
+	"MacVim +cscope +huge +nls +ruby +xim"
     do
-	Install_Update ${I};
+	Install_Update ${I}
     done; unset I
 
     for I in	    \
@@ -52,19 +52,19 @@
 	rvim	    \
 	view	    \
 	vim	    \
-	vimdiff	    ;
+	vimdiff
     do
 	if test ! -e /opt/local/bin/${I};  then
-	   gln --symbolic mvim /opt/local/bin/${I};
-	fi;
+	   gln --symbolic mvim /opt/local/bin/${I}
+	fi
     done; unset I
 
     port select gcc gnat-gcc42
     Clean
 else
-    setopt Multi_OS;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Load.command
===================================================================
--- users/krischik/Utilities/Load.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Load.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,18 +8,19 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt Err_Exit;
+setopt No_X_Trace
+setopt Err_Exit
 
 if test "${USER}" = "root"; then
     sudo gchown -R ${1} ~/Library/Preferences/KDE
-    Load_System;
+    Load_System
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} ${USER} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-    Load_User;
-fi;
+    sudo ${0:a} ${USER} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+    Load_User
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Make_DBus_User.command
===================================================================
--- users/krischik/Utilities/Make_DBus_User.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Make_DBus_User.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,18 +6,18 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt No_X_Trace;
-setopt Err_Exit;
+setopt No_X_Trace
+setopt Err_Exit
 
 if test "${USER}" = "root"; then
     dscl . -create /Groups/_netdev
 
     defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add _netdev
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab :

Modified: users/krischik/Utilities/Make_Dovecot_Certificates.command
===================================================================
--- users/krischik/Utilities/Make_Dovecot_Certificates.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Make_Dovecot_Certificates.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,7 +6,7 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
+setopt X_Trace
 
 # Generates a self-signed certificate.
 # Edit dovecot-openssl.cnf before running this.

Modified: users/krischik/Utilities/Make_Dovecot_Directories.command
===================================================================
--- users/krischik/Utilities/Make_Dovecot_Directories.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Make_Dovecot_Directories.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,8 +6,8 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
-setopt No_Err_Exit;
+setopt X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     gmkdir --parents --verbose /opt/local/var/log/dovecot
@@ -19,10 +19,10 @@
     gchown --recursive _dovecot:_dovecot /opt/local/var/run/dovecot
     gchown --recursive _dovecot:_dovecot /opt/local/etc/dovecot
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Make_Dovecot_User.command
===================================================================
--- users/krischik/Utilities/Make_Dovecot_User.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Make_Dovecot_User.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,8 +6,8 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
-setopt No_Err_Exit;
+setopt X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     dscl . -create /Groups/_dovecot
@@ -21,10 +21,10 @@
 
     defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add _fetchmail _dovecot
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Make_Fetchmail_Directories.command
===================================================================
--- users/krischik/Utilities/Make_Fetchmail_Directories.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Make_Fetchmail_Directories.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,8 +6,8 @@
 #   $HeadURL: http://svn.macports.org/repository/macports/users/krischik/Utilities/Clean.command $
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
-setopt No_Err_Exit;
+setopt X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     gmkdir --parents --verbose /opt/local/var/log/fetchmail
@@ -17,10 +17,11 @@
     gchown _fetchmail:_fetchmail /opt/local/var/run/fetchmail
     gchown _fetchmail:_fetchmail /private/etc/fetchmailrc
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
     sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
-fi;
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Make_Fetchmail_User.command
===================================================================
--- users/krischik/Utilities/Make_Fetchmail_User.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Make_Fetchmail_User.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,8 +6,8 @@
 #   $HeadURL: http://svn.macports.org/repository/macports/users/krischik/Utilities/Clean.command $
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
-setopt No_Err_Exit;
+setopt X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     dscl . -create /Groups/_fetchmail
@@ -21,10 +21,11 @@
 
     defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add _fetchmail _dovecot
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
     sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
-fi;
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Restart_DBus.command
===================================================================
--- users/krischik/Utilities/Restart_DBus.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Restart_DBus.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,8 +6,8 @@
 #   $HeadURL: http://svn.macports.org/repository/macports/users/krischik/Utilities/Update.command $
 ############################################################## }}}1 ##########
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
 
@@ -28,10 +28,11 @@
     launchctl load   -w    /Library/LaunchAgents/org.freedesktop.dbus-session.plist
     launchctl start         org.freedesktop.dbus-session
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-fi;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Restart_Dovecot.command
===================================================================
--- users/krischik/Utilities/Restart_Dovecot.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Restart_Dovecot.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,21 +6,21 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt X_Trace;
-setopt No_Err_Exit;
+setopt X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
-    launchctl unload -w "/Library/LaunchDaemons/org.macports.dovecot.plist";
-    launchctl unload -w "/Library/LaunchDaemons/org.macports.slapd.plist";
-    launchctl load   -w "/Library/LaunchDaemons/org.macports.slapd.plist";
-    launchctl load   -w "/Library/LaunchDaemons/org.macports.dovecot.plist";
+    launchctl unload -w "/Library/LaunchDaemons/org.macports.dovecot.plist"
+    launchctl unload -w "/Library/LaunchDaemons/org.macports.slapd.plist"
+    launchctl load   -w "/Library/LaunchDaemons/org.macports.slapd.plist"
+    launchctl load   -w "/Library/LaunchDaemons/org.macports.dovecot.plist"
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
 
     ps auxw | grep "dovecot\|imap\|pop3"
-fi;
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :

Modified: users/krischik/Utilities/Restart_Fetchmail.command
===================================================================
--- users/krischik/Utilities/Restart_Fetchmail.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Restart_Fetchmail.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,8 +6,8 @@
 #   $HeadURL: http://svn.macports.org/repository/macports/users/krischik/Utilities/Clean.command $
 ############################################################## }}}1 ##########
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
 
@@ -22,10 +22,11 @@
     launchctl load   -w    /Library/LaunchDaemons/com.krischik.fetchmail.plist
     launchctl start        com.krischik.fetchmail
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
     sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
-fi;
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Setup.command
===================================================================
--- users/krischik/Utilities/Setup.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Setup.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -6,7 +6,7 @@
 #   $HeadURL$
 ############################################################## }}}1 ##########
 
-setopt No_X_Trace;
+setopt No_X_Trace
 
 case "${OSTYPE}" in
     ((darwin11*))
@@ -18,7 +18,7 @@
     ((darwin9*))
 	typeset  General_Variants=""
     ;;
-esac;
+esac
 
 typeset       Qt_Variants="+docs+cocoa"
 #typeset   Gnome_Variants="+quartz+no_X11"
@@ -30,7 +30,7 @@
     typeset Base_Work_Dir="/Volumes/Shared/MacPorts/dports"
 elif test -d "/Volumes/Shared-1/MacPorts/dports"; then
     typeset Base_Work_Dir="/Volumes/Shared-1/MacPorts/dports"
-fi;
+fi
 
 path=/opt/local/bin
 path+=/bin
@@ -40,11 +40,11 @@
 path+=/usr/local/bin
 path+=/usr/X11/bin
 
-typeset -x -g -U -T PKG_CONFIG_PATH pkg_config_path ':';
+typeset -x -g -U -T PKG_CONFIG_PATH pkg_config_path ':'
 
-pkg_config_path+="/opt/local/share/pkgconfig";
-pkg_config_path+="/opt/local/libexec/qt4-mac/lib/pkgconfig";
-pkg_config_path+="/opt/local/lib/pkgconfig";
+pkg_config_path+="/opt/local/share/pkgconfig"
+pkg_config_path+="/opt/local/libexec/qt4-mac/lib/pkgconfig"
+pkg_config_path+="/opt/local/lib/pkgconfig"
 
 function Load ()
     {
@@ -52,34 +52,34 @@
 
     if test -e ${in_PList}; then
 	launchctl load -w ${in_PList}
-    fi;
+    fi
 
-    return;
+    return
     } # Load
 
 function Load_System ()
     {
-    Load "/Library/LaunchDaemons/org.macports.dbus.plist";
-    Load "/Library/LaunchDaemons/org.macports.slapd.plist";
-    Load "/Library/LaunchDaemons/org.freedesktop.dbus-system.plist";
-    Load "/Library/LaunchDaemons/org.macports.gdm.plist";
-    Load "/Library/LaunchDaemons/org.macports.rsyncd.plist";
-    Load "/Library/LaunchDaemons/org.macports.spamd.plist";
-    Load "/Library/LaunchDaemons/org.macports.dovecot.plist";
-    Load "/Library/LaunchDaemons/org.macports.mysql5.plist";
+    Load "/Library/LaunchDaemons/org.macports.dbus.plist"
+    Load "/Library/LaunchDaemons/org.macports.slapd.plist"
+    Load "/Library/LaunchDaemons/org.freedesktop.dbus-system.plist"
+    Load "/Library/LaunchDaemons/org.macports.gdm.plist"
+    Load "/Library/LaunchDaemons/org.macports.rsyncd.plist"
+    Load "/Library/LaunchDaemons/org.macports.spamd.plist"
+    Load "/Library/LaunchDaemons/org.macports.dovecot.plist"
+    Load "/Library/LaunchDaemons/org.macports.mysql5.plist"
 
-    return;
+    return
     } # Load_System
 
 function Load_User ()
     {
-    Load "/Library/LaunchAgents/org.freedesktop.dbus-session.plist";
+    Load "/Library/LaunchAgents/org.freedesktop.dbus-session.plist"
 
     if test -d /Applications/MacPorts/KDE4/kdeinit4.app; then
 	open /Applications/MacPorts/KDE4/kdeinit4.app
-    fi;
+    fi
 
-    return;
+    return
     } # Load_User
 
 function Unload ()
@@ -88,71 +88,71 @@
 
     if test -e ${in_PList}; then
 	launchctl unload -w ${in_PList}
-    fi;
+    fi
 
-    return;
+    return
     } # Unload
 
 function Unload_System ()
     {
-    Unload "/Library/LaunchDaemons/org.macports.dbus.plist";
-    Unload "/Library/LaunchDaemons/org.macports.rsyncd.plist";
-    Unload "/Library/LaunchDaemons/org.macports.spamd.plist";
-    Unload "/Library/LaunchDaemons/org.freedesktop.dbus-system.plist";
-    Unload "/Library/LaunchDaemons/org.macports.gdm.plist";
-    #Unload "/Library/LaunchDaemons/org.macports.dovecot.plist";
+    Unload "/Library/LaunchDaemons/org.macports.dbus.plist"
+    Unload "/Library/LaunchDaemons/org.macports.rsyncd.plist"
+    Unload "/Library/LaunchDaemons/org.macports.spamd.plist"
+    Unload "/Library/LaunchDaemons/org.freedesktop.dbus-system.plist"
+    Unload "/Library/LaunchDaemons/org.macports.gdm.plist"
+    #Unload "/Library/LaunchDaemons/org.macports.dovecot.plist"
 
-    return;
+    return
     } # Unload_System
 
 function Unload_User ()
     {
-    Unload "/Library/LaunchAgents/org.freedesktop.dbus-session.plist";
+    Unload "/Library/LaunchAgents/org.freedesktop.dbus-session.plist"
 
-    return;
+    return
     } # Unload_User
 
 function Install_Update ()
     {
-    local in_Package="${1}";
-    local in_Options="${2} ${3} ${4}";
+    local in_Package="${1}"
+    local in_Options="${2} ${3} ${4}"
 
     echo "===> Install  ${=in_Package} ${=in_Options}"
 
     if ! port -f install ${=in_Package} ${=in_Options}; then
-	port upgrade --enforce-variants ${=in_Package} ${=in_Options};
-    fi;
+	port upgrade --enforce-variants ${=in_Package} ${=in_Options}
+    fi
 
-    port activate ${=in_Package} ${=in_Options} || true;
+    port activate ${=in_Package} ${=in_Options} || true
     return
     } # Install_Update
 
 function Update_Tree ()
     {
     if test -d "${Base_Work_Dir}"; then
-	pushd "${Base_Work_Dir}";
-	    typeset Archive_Owner="$(gstat -c %U .)";
-	    typeset Archive_Group="$(gstat -c %G .)";
+	pushd "${Base_Work_Dir}"
+	    typeset Archive_Owner="$(gstat -c %U .)"
+	    typeset Archive_Group="$(gstat -c %G .)"
 
 	    svn cleanup
 	    svn revert PortIndex*
 	    svn update
 	    portindex
 	    gchown --recursive ${Archive_Owner}:${Archive_Group} .
-	popd;
-    fi;
+	popd
+    fi
 
     echo "===> Self Update"
-    port selfupdate;
+    port selfupdate
     echo "===> Sync"
-    port sync;
+    port sync
 
     return
     } # Update_Tree
 
 function Update_Packages ()
     {
-    port -p upgrade --enforce-variants outdated ${General_Variants};
+    port -p upgrade --enforce-variants outdated ${General_Variants}
 
     return
     } # Update_Packages
@@ -160,9 +160,9 @@
 function Clean ()
     {
     echo "===> Clean"
-    port -p uninstall inactive;
-    port -p uninstall outdated;
-    port -f -q clean --all all >/dev/null;
+    port -p uninstall inactive
+    port -p uninstall outdated
+    port -f -q clean --all all >/dev/null
 
     return
     } # Clean

Modified: users/krischik/Utilities/Uninstall_GNOME.command
===================================================================
--- users/krischik/Utilities/Uninstall_GNOME.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Uninstall_GNOME.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,11 +8,11 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
-    Unload_System;
+    Unload_System
 
     for I in						    \
 	"gnome-control-center"				    \
@@ -32,15 +32,16 @@
 	port uninstall --follow-dependents ${=I}
     done; unset I
 
-    Clean;
-    Load_System;
+    Clean
+    Load_System
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    Unload_User;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
+    Unload_User
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
     Load_User
-fi;
+fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Uninstall_KDE4.command
===================================================================
--- users/krischik/Utilities/Uninstall_KDE4.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Uninstall_KDE4.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -7,7 +7,7 @@
 ############################################################## }}}1 ##########
 
 setopt No_X_Trace
-setopt No_Err_Exit;
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     Unload_System
@@ -40,5 +40,6 @@
     Load_User
 fi
 
+############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Update.command
===================================================================
--- users/krischik/Utilities/Update.command	2012-07-02 12:26:27 UTC (rev 94919)
+++ users/krischik/Utilities/Update.command	2012-07-02 12:29:54 UTC (rev 94920)
@@ -8,27 +8,27 @@
 
 source ${0:a:h}/Setup.command
 
-setopt No_X_Trace;
-setopt No_Err_Exit;
+setopt No_X_Trace
+setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
     Unload_System
 
     port select gcc gcc42
 
-    Update_Tree;
-    Update_Packages;
+    Update_Tree
+    Update_Packages
 
     port select gcc gnat-gcc42
     Clean
     Load_System
 else
-    setopt Multi_OS;
+    setopt Multi_OS
 
-    Unload_User;
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out;
-    Load_User;
-fi;
+    Unload_User
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+    Load_User
+fi
 
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120702/e44b6add/attachment-0001.html>


More information about the macports-changes mailing list