[109120] branches/subversion-subports/dports/devel

larryv at macports.org larryv at macports.org
Wed Aug 7 23:51:49 PDT 2013


Revision: 109120
          https://trac.macports.org/changeset/109120
Author:   larryv at macports.org
Date:     2013-08-07 23:51:49 -0700 (Wed, 07 Aug 2013)
Log Message:
-----------
[subversion-subports] Reformat and adjust columns.

Modified Paths:
--------------
    branches/subversion-subports/dports/devel/subversion/Portfile
    branches/subversion-subports/dports/devel/subversion-javahlbindings/Portfile
    branches/subversion-subports/dports/devel/subversion-perlbindings/Portfile
    branches/subversion-subports/dports/devel/subversion-python24bindings/Portfile
    branches/subversion-subports/dports/devel/subversion-python25bindings/Portfile
    branches/subversion-subports/dports/devel/subversion-python26bindings/Portfile
    branches/subversion-subports/dports/devel/subversion-python27bindings/Portfile
    branches/subversion-subports/dports/devel/subversion-rubybindings/Portfile

Modified: branches/subversion-subports/dports/devel/subversion/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -9,26 +9,33 @@
 categories              devel
 platforms               darwin
 maintainers             geeklair.net:dluke blair
-description             subversion (svn) -- a version control system designed to be a better cvs
+description             subversion (svn) -- a version control system \
+                        designed to be a better cvs
 license                 Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1).
+long_description        Subversion (svn) is a version control system \
+                        designed to be as similar to cvs(1) as possible, \
+                        while fixing many outstanding problems with \
+                        cvs(1).
 
 homepage                http://subversion.apache.org/
 master_sites            apache:subversion
 use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+checksums               md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                        sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                        rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:sqlite3 \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:file port:libcomerr
+depends_lib             port:apr \
+                        port:apr-util \
+                        port:cyrus-sasl2 \
+                        port:db46 \
+                        port:expat \
+                        port:file \
+                        port:gettext \
+                        port:libcomerr \
+                        port:libiconv \
+                        port:serf1 \
+                        port:sqlite3
 depends_run             port:curl-ca-bundle
 
 test.run                yes
@@ -37,12 +44,15 @@
 
 patchfiles              config_impl.h.patch
 
-post-patch {            reinplace "s|__PREFIX__|${prefix}|" ${worksrcpath}/subversion/libsvn_subr/config_impl.h
-                        }
+post-patch {
+    reinplace "s|__PREFIX__|${prefix}|" \
+        ${worksrcpath}/subversion/libsvn_subr/config_impl.h
+}
 
 configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
                         --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
+                        --with-apr-util=${prefix}/bin/apu-1-config \
+                        --without-apxs \
                         --mandir=\\\${prefix}/share/man \
                         --with-serf=${prefix} \
                         --with-sasl=${prefix} \
@@ -51,101 +61,105 @@
 
 use_parallel_build      yes
 build.target            all tools
-destroot.target-append install-tools
+destroot.target-append  install-tools
 
-pre-test {              set x {}
-                        fs-traverse dir ${worksrcpath}/subversion {
-                                if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
-                                        lappend x ${dir}
-                                        continue
-                                        }
-                                }
+pre-test {
+    set x {}
+    fs-traverse dir ${worksrcpath}/subversion {
+        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
+            lappend x ${dir}
+            continue
+        }
+    }
+    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
+}
 
-                        test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-destroot {
+    # install global config file so curl-ca-bundle certs are used
+    xinstall -d ${destroot}${prefix}/etc/subversion
+    xinstall -m 644 ${filespath}/servers.default \
+        ${destroot}${prefix}/etc/subversion
+    # install bash completion file
+    set completions_path ${destroot}${prefix}/share/bash-completion/completions
+    xinstall -d ${completions_path}
+    xinstall -m 644 ${worksrcpath}/tools/client-side/bash_completion \
+        ${completions_path}/subversion
+}
 
-post-destroot {         # install global config file so curl-ca-bundle certs are used
-                        xinstall -d ${destroot}${prefix}/etc/subversion
-                        xinstall -m 644 ${filespath}/servers.default ${destroot}${prefix}/etc/subversion
-                        # install bash completion file
-                        set completions_path ${destroot}${prefix}/share/bash-completion/completions
-                        xinstall -d ${completions_path}
-                        xinstall -m 644 ${worksrcpath}/tools/client-side/bash_completion ${completions_path}/subversion
-                        }
+post-activate {
+    if {![file exists ${prefix}/etc/subversion/servers]} {
+        copy ${prefix}/etc/subversion/servers.default \
+            ${prefix}/etc/subversion/servers
+    }
+}
 
-post-activate {         if {![file exists ${prefix}/etc/subversion/servers]} {
-                                copy ${prefix}/etc/subversion/servers.default ${prefix}/etc/subversion/servers
-                                }
-                        }
+variant mod_dav_svn description {Install the subversion apache module (mod_dav_svn)} {
+    depends_build           path:apache2/bin/apxs:apache2
+    configure.args-append   --with-apxs=${prefix}/apache2/bin/apxs \
+                            --disable-mod-activation
+    configure.args-delete   --without-apxs
 
-variant mod_dav_svn     description {Install the subversion apache module (mod_dav_svn)} {
-                        depends_build path:apache2/bin/apxs:apache2
-                        configure.args-append \
-                                --with-apxs=${prefix}/apache2/bin/apxs \
-                                --disable-mod-activation
-                        configure.args-delete --without-apxs
+    destroot.violate_mtree  yes
+}
 
-                        destroot.violate_mtree yes
-                        }
+variant no_bdb description {Build without support for BerkeleyDB repositories} {
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
-variant no_bdb          description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+variant mac_os_x_server_mod_dav_svn description {Unsupported - attempt to build the subversion apache module with apple supplied apache2} {
+    configure.args-append   --with-apxs=/opt/apache2/bin/apxs \
+                            --disable-mod-activation
+    configure.args-delete   --without-apxs
 
-variant mac_os_x_server_mod_dav_svn     description {Unsupported - attempt to build the subversion apache module with apple supplied apache2} {
-                                        configure.args-append \
-                                                --with-apxs=/opt/apache2/bin/apxs \
-                                                --disable-mod-activation
-                                        configure.args-delete --without-apxs
+    destroot.violate_mtree  yes
 
-                                        destroot.violate_mtree yes
+    post-install {
+        ui_warn "This variant (+mac_os_x_server_mod_dav_svn) builds against the Apple-supplied apache2 in /opt/apache2 and thus may have problems that the normal variant (+mod_dav_svn) which builds against the macports supplied apache2 will not have."
+    }
+}
 
-                                        post-install {
-                                                        ui_warn "This variant (+mac_os_x_server_mod_dav_svn) builds against the Apple-supplied apache2 in /opt/apache2 and thus may have problems that the normal variant (+mod_dav_svn) which builds against the macports supplied apache2 will not have."
-                                        }
-                                        }
+variant tools description {Install some optional extra subversion tools} {
+    post-destroot {
+        xinstall -d -m 755 ${destroot}${prefix}/share/${name}
+        delete ${worksrcpath}/tools/diff/
+        delete ${worksrcpath}/tools/server-side/mod_dontdothat
+        eval delete [glob ${worksrcpath}/tools/server-side/*{.o,.lo,.c}]
+        delete ${worksrcpath}/tools/server-side/fsfs-stats
+        delete ${worksrcpath}/tools/server-side/svn-populate-node-origins-index
+        delete ${worksrcpath}/tools/server-side/svn-rep-sharing-stats
+        delete ${worksrcpath}/tools/server-side/svnauthz-validate
+        copy ${worksrcpath}/tools ${destroot}${prefix}/share/${name}/tools
+    }
+}
 
-variant tools           description {Install some optional extra subversion tools} {
-                        post-destroot {
-                                xinstall -d -m 755 ${destroot}${prefix}/share/${name}
-                                delete ${worksrcpath}/tools/diff/
-                                delete ${worksrcpath}/tools/server-side/mod_dontdothat
-                                eval delete [glob ${worksrcpath}/tools/server-side/*{.o,.lo,.c}]
-                                delete ${worksrcpath}/tools/server-side/fsfs-stats
-                                delete ${worksrcpath}/tools/server-side/svn-populate-node-origins-index
-                                delete ${worksrcpath}/tools/server-side/svn-rep-sharing-stats
-                                delete ${worksrcpath}/tools/server-side/svnauthz-validate
-                                copy ${worksrcpath}/tools ${destroot}${prefix}/share/${name}/tools
-                                }
-                        }
-
 # see http://subversion.tigris.org/issues/show_bug.cgi?id=2464
-variant unicode_path    description {Installs a hack to workaround Mac OS X unicode path issues} {
-                        patchfiles-append patch-osx_unicode_precomp.diff
-                        post-install {
-                                ui_warn "This variant (+unicode_path) implements a hack to deal with composed/decomposed unicode handling on Mac OS X which is different from linux and windows. It is an implementation of solution 1 from http://svn.collab.net/repos/svn/trunk/notes/unicode-composition-for-filenames which _WILL_ break some setups. Please be sure you understand what you are asking for when you install this variant."
-                                }
-                        }
+variant unicode_path description {Installs a hack to workaround Mac OS X unicode path issues} {
+    patchfiles-append       patch-osx_unicode_precomp.diff
+    post-install {
+        ui_warn "This variant (+unicode_path) implements a hack to deal with composed/decomposed unicode handling on Mac OS X which is different from linux and windows. It is an implementation of solution 1 from http://svn.collab.net/repos/svn/trunk/notes/unicode-composition-for-filenames which _WILL_ break some setups. Please be sure you understand what you are asking for when you install this variant."
+    }
+}
 
-variant disable_keychain        description {Disables support for the Mac OS X Keychain} {
-                                        configure.args-append --disable-keychain
-                                }
+variant disable_keychain description {Disables support for the Mac OS X Keychain} {
+    configure.args-append   --disable-keychain
+}
 
 # CarbonCore/MacTypes.h: No such file or directory
-platform puredarwin {           configure.args-append \
-                                        --disable-keychain
-                                }
+platform puredarwin {
+    configure.args-append   --disable-keychain
+}
 
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type          regex
+livecheck.url           http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex         "(\\d+\\.\\d+\\.\\d+)/"

Modified: branches/subversion-subports/dports/devel/subversion-javahlbindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-javahlbindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-javahlbindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -9,43 +9,51 @@
 categories              devel java
 platforms               darwin
 maintainers             geeklair.net:dluke blair
-description             Java (javahl) bindings for the subversion version control system (svn)
+description             Java (javahl) bindings for the subversion \
+                        version control system (svn)
 license                 Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The java bindings \
-                        provide access to subversion API from java.
+long_description        Subversion (svn) is a version control system \
+                        designed to be as similar to cvs(1) as possible, \
+                        while fixing many outstanding problems with \
+                        cvs(1). The java bindings provide access to \
+                        subversion API from java.
 
 homepage                http://subversion.apache.org/
 master_sites            apache:subversion
 use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+checksums               md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                        sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                        rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
 distname                subversion-${version}
 dist_subdir             subversion
 
 depends_build           port:junit
-
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:sqlite3 port:gettext \
-                        port:libiconv port:serf1 \
+depends_lib             port:apr \
+                        port:apr-util \
                         port:cyrus-sasl2 \
-                        port:file port:libcomerr
+                        port:db46 \
+                        port:expat \
+                        port:file \
+                        port:gettext \
+                        port:libcomerr \
+                        port:libiconv \
+                        port:serf1 \
+                        port:sqlite3 \
+                        port:subversion
 
 configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
                         --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
+                        --with-apr-util=${prefix}/bin/apu-1-config \
+                        --without-apxs \
                         --mandir=\\\${prefix}/share/man \
                         --with-serf=${prefix} \
                         --with-sasl=${prefix} \
                         --with-libmagic=${prefix} \
                         --without-gnome-keyring \
-                        --enable-javahl --without-jikes \
+                        --enable-javahl \
+                        --without-jikes \
                         --with-junit=${prefix}/share/java/junit.jar
 
 build.target            javahl
@@ -60,68 +68,71 @@
 
 patchfiles              patch-configure.diff
 
-pre-test {              reinplace "s|-Djava.library.path=:\$(libdir)|-Djava.library.path=:${worksrcpath}/subversion/bindings/javahl/native/.libs|g" \
-                        ${worksrcpath}/Makefile
+pre-test {
+    reinplace "s|-Djava.library.path=:\$(libdir)|-Djava.library.path=:${worksrcpath}/subversion/bindings/javahl/native/.libs|g" \
+        ${worksrcpath}/Makefile
 
-                        system "ln -sf ${worksrcpath}/subversion/bindings/javahl/native/.libs/libsvnjavahl-1.dylib ${worksrcpath}/subversion/bindings/javahl/native/.libs/libsvnjavahl.jnilib"
-                        }
+    system "ln -sf ${worksrcpath}/subversion/bindings/javahl/native/.libs/libsvnjavahl-1.dylib ${worksrcpath}/subversion/bindings/javahl/native/.libs/libsvnjavahl.jnilib"
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        reinplace "s|\\(LINK_JAVAHL_CXX.*\\)-rpath|\\1-dynamiclib -rpath|g" \
-                                ${worksrcpath}/Makefile.in
-                        reinplace "s|@@DESTROOT@@|${destroot}|g" \
-                                ${worksrcpath}/configure
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+    reinplace "s|\\(LINK_JAVAHL_CXX.*\\)-rpath|\\1-dynamiclib -rpath|g" \
+        ${worksrcpath}/Makefile.in
+    reinplace "s|@@DESTROOT@@|${destroot}|g" \
+        ${worksrcpath}/configure
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
-platform darwin  10     {       pre-fetch {
-                                        if {![file isfile "/System/Library/Frameworks/JavaVM.framework/Headers/jni.h"]} {
-                                                return -code error "\n********************\n${name} requires the Java for Mac OS X Developer Package from Apple.\nPlease download and install this package:\nhttps://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20719\n********************"
-                                        }
-                                }
-                        }
+platform darwin 10 {
+    pre-fetch {
+        if {![file isfile "/System/Library/Frameworks/JavaVM.framework/Headers/jni.h"]} {
+            return -code error "\n********************\n${name} requires the Java for Mac OS X Developer Package from Apple.\nPlease download and install this package:\nhttps://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20719\n********************"
+        }
+    }
+}
 
-platform darwin 9       {       pre-fetch {
-                                        if {![file isfile "/System/Library/Frameworks/JavaVM.framework/Headers/jni.h"]} {
-                                                return -code error "\n********************\n${name} requires the Java for Mac OS X Developer Package from Apple.\nPlease download and install this package:\nhttps://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20720\n********************"
-                                        }
-                                }
-                        }
+platform darwin 9 {
+    pre-fetch {
+        if {![file isfile "/System/Library/Frameworks/JavaVM.framework/Headers/jni.h"]} {
+            return -code error "\n********************\n${name} requires the Java for Mac OS X Developer Package from Apple.\nPlease download and install this package:\nhttps://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20720\n********************"
+        }
+    }
+}
 
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 post-destroot {
-                file mkdir ${destroot}/Library/Java/Extensions
-                system "ln -sf ${prefix}/lib/libsvnjavahl-1.dylib ${destroot}/Library/Java/Extensions/libsvnjavahl.jnilib"
-                file mkdir ${destroot}${prefix}/share/java
-                system "ln -sf ${prefix}/lib/svn-javahl/svn-javahl.jar ${destroot}${prefix}/share/java/svn-javahl.jar"
-                }
+    file mkdir ${destroot}/Library/Java/Extensions
+    system "ln -sf ${prefix}/lib/libsvnjavahl-1.dylib ${destroot}/Library/Java/Extensions/libsvnjavahl.jnilib"
+    file mkdir ${destroot}${prefix}/share/java
+    system "ln -sf ${prefix}/lib/svn-javahl/svn-javahl.jar ${destroot}${prefix}/share/java/svn-javahl.jar"
+}
 
 # CarbonCore/MacTypes.h: No such file or directory
-platform puredarwin {           configure.args-append \
-                                        --disable-keychain
-                                }
+platform puredarwin {
+    configure.args-append   --disable-keychain
+}
 
-pre-activate    {
-                #- this port used to create a symlink directly in ${prefix} which was fixed in 1.8.1_1
-                #- we need to remove this symlink fromo ${prefix} though, so upgrades work
-                #- this can eventually be removed, origionally added 2013-07-25
-                set badfile ${prefix}/lib/libsvnjavahl-1.jnilib
-                if {[file exists ${badfile}] && [registry_file_registered ${badfile}] == "0"} {
-                        if {[catch {delete ${badfile}}]} {
-                                ui_warn "Cannot delete ${badfile}; please remove it manually"
-                        }       
-                }
-                
-                }
+pre-activate {
+    #- this port used to create a symlink directly in ${prefix} which was fixed in 1.8.1_1
+    #- we need to remove this symlink fromo ${prefix} though, so upgrades work
+    #- this can eventually be removed, origionally added 2013-07-25
+    set badfile ${prefix}/lib/libsvnjavahl-1.jnilib
+    if {[file exists ${badfile}] && [registry_file_registered ${badfile}] == "0"} {
+        if {[catch {delete ${badfile}}]} {
+            ui_warn "Cannot delete ${badfile}; please remove it manually"
+        }
+    }
+}
 
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type      regex
+livecheck.url       http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex     "(\\d+\\.\\d+\\.\\d+)/"

Modified: branches/subversion-subports/dports/devel/subversion-perlbindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-perlbindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-perlbindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -3,21 +3,23 @@
 
 PortSystem 1.0
 
-name                    subversion-perlbindings
-version                 1.8.1
-revision                1
-categories              devel perl
-platforms               darwin
-maintainers             geeklair.net:dluke blair
-description             Perl bindings for the subversion version control system (svn)
-license                 Apache-2
+name                subversion-perlbindings
+version             1.8.1
+revision            1
+categories          devel perl
+platforms           darwin
+maintainers         geeklair.net:dluke blair
+description         Perl bindings for the subversion version control \
+                    system (svn)
+license             Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The perl bindings \
-                        provide access to subversion API from perl.
+long_description    Subversion (svn) is a version control system \
+                    designed to be as similar to cvs(1) as possible, \
+                    while fixing many outstanding problems with cvs(1). \
+                    The perl bindings provide access to subversion API \
+                    from perl. 
 
-homepage                http://subversion.apache.org/
+homepage            http://subversion.apache.org/
 
 set perl5.branches {5.8 5.10 5.12 5.14 5.16}
 foreach branch ${perl5.branches} {
@@ -36,88 +38,95 @@
     distfiles
     supported_archs noarch
     # depend on a default perl version
-    depends_lib port:${name}-5.12
+    depends_lib     port:${name}-5.12
     # avoid conflict with old version when upgrading
-    replaced_by ${name}-5.12
-    use_configure no
+    replaced_by     ${name}-5.12
+    use_configure   no
     build {}
     destroot {
         xinstall -d ${destroot}${prefix}/share/doc/${name}
         system "echo $name is a stub port > ${destroot}${prefix}/share/doc/${name}/README"
     }
-        livecheck.type  regex
-        livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-        livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+    livecheck.type  regex
+    livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
+    livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
 } else {
 
-master_sites            apache:subversion
-use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+master_sites        apache:subversion
+use_bzip2           yes
+checksums           md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                    sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                    rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-distname                subversion-${version}
-dist_subdir             subversion
+distname            subversion-${version}
+dist_subdir         subversion
 
-test.run                yes
-test.target             check-swig-pl
+test.run            yes
+test.target         check-swig-pl
 
-use_parallel_build      no
+use_parallel_build  no
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:perl${perl5.branch} \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:sqlite3 port:file \
-                        port:libcomerr
+depends_lib         port:apr \
+                    port:apr-util \
+                    port:cyrus-sasl2 \
+                    port:db46 \
+                    port:expat \
+                    port:file \
+                    port:gettext \
+                    port:libcomerr \
+                    port:libiconv \
+                    port:perl${perl5.branch} \
+                    port:serf1 \
+                    port:sqlite3 \
+                    port:subversion
 
-configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
-                        --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
-                        --mandir=\\\${prefix}/share/man \
-                        --with-serf=${prefix} \
-                        --with-sasl=${prefix} \
-                        --with-libmagic=${prefix} \
-                        --without-gnome-keyring
+configure.args      --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
+                    --with-apr=${prefix}/bin/apr-1-config \
+                    --with-apr-util=${prefix}/bin/apu-1-config \
+                    --without-apxs \
+                    --mandir=\\\${prefix}/share/man \
+                    --with-serf=${prefix} \
+                    --with-sasl=${prefix} \
+                    --with-libmagic=${prefix} \
+                    --without-gnome-keyring
 
-configure.env           ac_cv_path_PERL=${prefix}/bin/perl${perl5.branch}
+configure.env       ac_cv_path_PERL=${prefix}/bin/perl${perl5.branch}
 
-patchfiles              patch-swig-perl-native-core.c.diff
+patchfiles          patch-swig-perl-native-core.c.diff
 
-build.target            swig-pl
-destroot.target         install-swig-pl-lib DESTDIR=${destroot} && \
-                        cd "${worksrcpath}/subversion/bindings/swig/perl/native" &&\
-                        make pure_install
+build.target        swig-pl
+destroot.target     install-swig-pl-lib DESTDIR=${destroot} && \
+                    cd "${worksrcpath}/subversion/bindings/swig/perl/native" &&\
+                    make pure_install
 
-destroot.args           INSTALLDIRS=vendor
+destroot.args       INSTALLDIRS=vendor
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
 post-destroot {
-                foreach packlist [exec find ${destroot} -name .packlist] {
-                        ui_info "Fixing packlist ${packlist}"
-                        reinplace "s|${destroot}||" ${packlist}
-                }
-        }
+    foreach packlist [exec find ${destroot} -name .packlist] {
+        ui_info "Fixing packlist ${packlist}"
+        reinplace "s|${destroot}||" ${packlist}
+    }
+}
 
 # CarbonCore/MacTypes.h: No such file or directory
-platform puredarwin {           configure.args-append \
-                                        --disable-keychain
-                                }
+platform puredarwin {
+    configure.args-append   --disable-keychain
+}
 
-livecheck.type  none
+livecheck.type      none
 }

Modified: branches/subversion-subports/dports/devel/subversion-python24bindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-python24bindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-python24bindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -3,108 +3,118 @@
 
 PortSystem 1.0
 
-name                    subversion-python24bindings
-version                 1.8.1
-revision                1
-categories              devel python
-platforms               darwin
-maintainers             openmaintainer blair
-description             Python bindings for the subversion version control system (svn)
-license                 Apache-2
+name                subversion-python24bindings
+version             1.8.1
+revision            1
+categories          devel python
+platforms           darwin
+maintainers         openmaintainer blair
+description         Python bindings for the subversion version control \
+                    system (svn)
+license             Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The python bindings \
-                        provide access to subversion API from python.
+long_description    Subversion (svn) is a version control system \
+                    designed to be as similar to cvs(1) as possible, \
+                    while fixing many outstanding problems with cvs(1). \
+                    The python bindings provide access to subversion API \
+                    from python.
 
-homepage                http://subversion.apache.org/
-master_sites            apache:subversion
-use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+homepage            http://subversion.apache.org/
+master_sites        apache:subversion
+use_bzip2           yes
+checksums           md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                    sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                    rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-distname                subversion-${version}
-dist_subdir             subversion
+distname            subversion-${version}
+dist_subdir         subversion
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:python24 \
-                        port:py24-bsddb port:sqlite3 \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:file port:libcomerr
+depends_lib         port:apr \
+                    port:apr-util \
+                    port:cyrus-sasl2 \
+                    port:db46 \
+                    port:expat \
+                    port:file \
+                    port:gettext \
+                    port:libcomerr \
+                    port:libiconv \
+                    port:py24-bsddb \
+                    port:python24 \
+                    port:serf1 \
+                    port:sqlite3 \
+                    port:subversion
 
-patchfiles              patch-swig-python-core.diff
+patchfiles          patch-swig-python-core.diff
 
 post-patch {
-        system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py24/g'"
-        file rename \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py24
+    system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py24/g'"
+    file rename \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py24
 }
 
-configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
-                        --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
-                        --mandir=\\\${prefix}/share/man \
-                        --with-serf=${prefix} \
-                        --with-sasl=${prefix} \
-                        --with-libmagic=${prefix} \
-                        --without-gnome-keyring
+configure.args      --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
+                    --with-apr=${prefix}/bin/apr-1-config \
+                    --with-apr-util=${prefix}/bin/apu-1-config \
+                    --without-apxs \
+                    --mandir=\\\${prefix}/share/man \
+                    --with-serf=${prefix} \
+                    --with-sasl=${prefix} \
+                    --with-libmagic=${prefix} \
+                    --without-gnome-keyring
 
-configure.env           ac_cv_path_PYTHON=${prefix}/bin/python2.4 \
-                        ac_cv_python_includes=-I${prefix}/include/python2.4 \
-                        ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup" \
-                        ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup" \
-                        ac_cv_python_compile=${configure.cc}
+configure.env       ac_cv_path_PYTHON=${prefix}/bin/python2.4 \
+                    ac_cv_python_includes=-I${prefix}/include/python2.4 \
+                    ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup" \
+                    ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup" \
+                    ac_cv_python_compile=${configure.cc}
 
-use_parallel_build      yes
-build.target            swig-py
-destroot.target         install-swig-py DESTDIR=${destroot}
+use_parallel_build  yes
+build.target        swig-py
+destroot.target     install-swig-py DESTDIR=${destroot}
 
-test.run                yes
-test.target             check-swig-py
+test.run            yes
+test.target         check-swig-py
 
 pre-test {
-                        set x {}
-                        fs-traverse dir ${worksrcpath}/subversion {
-                                if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
-                                lappend x ${dir}
-                                continue
-                                }
-                        }
-                        test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
-                        }
+    set x {}
+    fs-traverse dir ${worksrcpath}/subversion {
+        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
+            lappend x ${dir}
+            continue
+        }
+    }
+    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46 port:py-bsddb
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46 \
+                            port:py-bsddb
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
 post-destroot {
-                set PYTHON_PATH ${prefix}/lib/python2.4
+    set PYTHON_PATH ${prefix}/lib/python2.4
 
-                xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
-                xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
-                        ${destroot}${PYTHON_PATH}/site-packages
-                reinplace "s|@PREFIX@|${prefix}|g" \
-                        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
+    xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
+        ${destroot}${PYTHON_PATH}/site-packages
+    reinplace "s|@PREFIX@|${prefix}|g" \
+        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    file rename "${destroot}${prefix}/lib/svn-python" \
+        "${destroot}${prefix}/lib/svn-python2.4"
+}
 
-                file rename "${destroot}${prefix}/lib/svn-python" \
-                        "${destroot}${prefix}/lib/svn-python2.4"
-                }
-
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type      regex
+livecheck.url       http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex     "(\\d+\\.\\d+\\.\\d+)/"

Modified: branches/subversion-subports/dports/devel/subversion-python25bindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-python25bindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-python25bindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -3,108 +3,116 @@
 
 PortSystem 1.0
 
-name                    subversion-python25bindings
-version                 1.8.1
-revision                1
-categories              devel python
-platforms               darwin
-maintainers             openmaintainer blair
-description             Python bindings for the subversion version control system (svn)
-license                 Apache-2
+name                subversion-python25bindings
+version             1.8.1
+revision            1
+categories          devel python
+platforms           darwin
+maintainers         openmaintainer blair
+description         Python bindings for the subversion version control \
+                    system (svn)
+license             Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The python bindings \
-                        provide access to subversion API from python.
+long_description    Subversion (svn) is a version control system \
+                    designed to be as similar to cvs(1) as possible, \
+                    while fixing many outstanding problems with cvs(1). \
+                    The python bindings provide access to subversion API \
+                    from python.
 
-homepage                http://subversion.apache.org/
-master_sites            apache:subversion
-use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+homepage            http://subversion.apache.org/
+master_sites        apache:subversion
+use_bzip2           yes
+checksums           md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                    sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                    rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-distname                subversion-${version}
-dist_subdir             subversion
+distname            subversion-${version}
+dist_subdir         subversion
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:python25 \
-                        port:sqlite3 \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:file port:libcomerr
+depends_lib         port:apr \
+                    port:apr-util \
+                    port:cyrus-sasl2 \
+                    port:db46 \
+                    port:expat \
+                    port:file \
+                    port:gettext \
+                    port:libcomerr \
+                    port:libiconv \
+                    port:python25 \
+                    port:serf1 \
+                    port:sqlite3 \
+                    port:subversion
 
-patchfiles              patch-swig-python-core.diff
+patchfiles          patch-swig-python-core.diff
 
 post-patch {
-        system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py25/g'"
-        file rename \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py25
+    system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py25/g'"
+    file rename \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py25
 }
 
-configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
-                        --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
-                        --mandir=\\\${prefix}/share/man \
-                        --with-serf=${prefix} \
-                        --with-sasl=${prefix} \
-                        --with-libmagic=${prefix} \
-                        --without-gnome-keyring
+configure.args      --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
+                    --with-apr=${prefix}/bin/apr-1-config \
+                    --with-apr-util=${prefix}/bin/apu-1-config \
+                    --without-apxs \
+                    --mandir=\\\${prefix}/share/man \
+                    --with-serf=${prefix} \
+                    --with-sasl=${prefix} \
+                    --with-libmagic=${prefix} \
+                    --without-gnome-keyring
 
-configure.env           ac_cv_path_PYTHON=${prefix}/bin/python2.5 \
-                        ac_cv_python_includes=-I${prefix}/include/python2.5 \
-                        ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup -lpython2.5" \
-                        ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup -lpython2.5" \
-                        ac_cv_python_compile=${configure.cc}
+configure.env       ac_cv_path_PYTHON=${prefix}/bin/python2.5 \
+                    ac_cv_python_includes=-I${prefix}/include/python2.5 \
+                    ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup -lpython2.5" \
+                    ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup -lpython2.5" \
+                    ac_cv_python_compile=${configure.cc}
 
-use_parallel_build      yes
-build.target            swig-py
-destroot.target         install-swig-py DESTDIR=${destroot}
+use_parallel_build  yes
+build.target        swig-py
+destroot.target     install-swig-py DESTDIR=${destroot}
 
-test.run                yes
-test.target             check-swig-py
+test.run            yes
+test.target         check-swig-py
 
 pre-test {
-                        set x {}
-                        fs-traverse dir ${worksrcpath}/subversion {
-                                if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
-                                lappend x ${dir}
-                                continue
-                                }
-                        }
-                        test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
-                        }
+    set x {}
+    fs-traverse dir ${worksrcpath}/subversion {
+        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
+            lappend x ${dir}
+            continue
+        }
+    }
+    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
 post-destroot {
-                set PYTHON_PATH ${prefix}/lib/python2.5
+    set PYTHON_PATH ${prefix}/lib/python2.5
 
-                xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
-                xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
-                        ${destroot}${PYTHON_PATH}/site-packages
-                reinplace "s|@PREFIX@|${prefix}|g" \
-                        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
+    xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
+        ${destroot}${PYTHON_PATH}/site-packages
+    reinplace "s|@PREFIX@|${prefix}|g" \
+        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    file rename "${destroot}${prefix}/lib/svn-python" \
+        "${destroot}${prefix}/lib/svn-python2.5"
+}
 
-                file rename "${destroot}${prefix}/lib/svn-python" \
-                        "${destroot}${prefix}/lib/svn-python2.5"
-                }
-
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type      regex
+livecheck.url       http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex     "(\\d+\\.\\d+\\.\\d+)/"

Modified: branches/subversion-subports/dports/devel/subversion-python26bindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-python26bindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-python26bindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -3,113 +3,121 @@
 
 PortSystem 1.0
 
-name                    subversion-python26bindings
-version                 1.8.1
-revision                1
-categories              devel python
-platforms               darwin
-maintainers             geeklair.net:dluke blair
-description             Python bindings for the subversion version control system (svn)
-license                 Apache-2
+name                subversion-python26bindings
+version             1.8.1
+revision            1
+categories          devel python
+platforms           darwin
+maintainers         geeklair.net:dluke blair
+description         Python bindings for the subversion version control \
+                    system (svn)
+license             Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The python bindings \
-                        provide access to subversion API from python.
+long_description    Subversion (svn) is a version control system \
+                    designed to be as similar to cvs(1) as possible, \
+                    while fixing many outstanding problems with cvs(1). \
+                    The python bindings provide access to subversion API \
+                    from python.
 
-homepage                http://subversion.apache.org/
-master_sites            apache:subversion
-use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+homepage            http://subversion.apache.org/
+master_sites        apache:subversion
+use_bzip2           yes
+checksums           md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                    sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                    rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-distname                subversion-${version}
-dist_subdir             subversion
+distname            subversion-${version}
+dist_subdir         subversion
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:python26 \
-                        port:sqlite3 \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:file port:libcomerr
+depends_lib         port:apr \
+                    port:apr-util \
+                    port:cyrus-sasl2 \
+                    port:db46 \
+                    port:expat \
+                    port:file \
+                    port:gettext \
+                    port:libcomerr \
+                    port:libiconv \
+                    port:python26 \
+                    port:serf1 \
+                    port:sqlite3 \
+                    port:subversion
 
-patchfiles              patch-swig-python-core.diff
+patchfiles          patch-swig-python-core.diff
 
 post-patch {
-        system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py26/g'"
-        file rename \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py26
+    system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py26/g'"
+    file rename \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py26
 }
 
-configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
-                        --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
-                        --mandir=\\\${prefix}/share/man \
-                        --with-serf=${prefix} \
-                        --with-sasl=${prefix} \
-                        --with-libmagic=${prefix} \
-                        --without-gnome-keyring
+configure.args      --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
+                    --with-apr=${prefix}/bin/apr-1-config \
+                    --with-apr-util=${prefix}/bin/apu-1-config \
+                    --without-apxs \
+                    --mandir=\\\${prefix}/share/man \
+                    --with-serf=${prefix} \
+                    --with-sasl=${prefix} \
+                    --with-libmagic=${prefix} \
+                    --without-gnome-keyring
 
-configure.env           ac_cv_path_PYTHON=${prefix}/bin/python2.6 \
-                        ac_cv_python_includes=-I${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 \
-                        ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.6/Python" \
-                        ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.6/Python" \
-                        ac_cv_python_compile=${configure.cc}
+configure.env       ac_cv_path_PYTHON=${prefix}/bin/python2.6 \
+                    ac_cv_python_includes=-I${frameworks_dir}/Python.framework/Versions/2.6/include/python2.6 \
+                    ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.6/Python" \
+                    ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.6/Python" \
+                    ac_cv_python_compile=${configure.cc}
 
-use_parallel_build      yes
-build.target            swig-py
-destroot.target         install-swig-py DESTDIR=${destroot}
+use_parallel_build  yes
+build.target        swig-py
+destroot.target     install-swig-py DESTDIR=${destroot}
 
-test.run                yes
-test.target             check-swig-py
+test.run            yes
+test.target         check-swig-py
 
 pre-test {
-                        set x {}
-                        fs-traverse dir ${worksrcpath}/subversion {
-                                if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
-                                lappend x ${dir}
-                                continue
-                                }
-                        }
-                        test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
-                        }
+    set x {}
+    fs-traverse dir ${worksrcpath}/subversion {
+        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
+            lappend x ${dir}
+            continue
+        }
+    }
+    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
 post-destroot {
-                set PYTHON_PATH ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6
+    set PYTHON_PATH ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6
 
-                xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
-                xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
-                        ${destroot}${PYTHON_PATH}/site-packages
-                reinplace "s|@PREFIX@|${prefix}|g" \
-                        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
+    xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
+        ${destroot}${PYTHON_PATH}/site-packages
+    reinplace "s|@PREFIX@|${prefix}|g" \
+        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    file rename "${destroot}${prefix}/lib/svn-python" \
+        "${destroot}${prefix}/lib/svn-python2.6"
+}
 
-                file rename "${destroot}${prefix}/lib/svn-python" \
-                        "${destroot}${prefix}/lib/svn-python2.6"
-                }
-
 # CarbonCore/MacTypes.h: No such file or directory
-platform puredarwin {           configure.args-append \
-                                        --disable-keychain
-                                }
+platform puredarwin {
+    configure.args-append   --disable-keychain
+}
 
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type      regex
+livecheck.url       http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex     "(\\d+\\.\\d+\\.\\d+)/"

Modified: branches/subversion-subports/dports/devel/subversion-python27bindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-python27bindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-python27bindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -3,113 +3,121 @@
 
 PortSystem 1.0
 
-name                    subversion-python27bindings
-version                 1.8.1
-revision                1
-categories              devel python
-platforms               darwin
-maintainers             geeklair.net:dluke blair
-description             Python bindings for the subversion version control system (svn)
-license                 Apache-2
+name                subversion-python27bindings
+version             1.8.1
+revision            1
+categories          devel python
+platforms           darwin
+maintainers         geeklair.net:dluke blair
+description         Python bindings for the subversion version control \
+                    system (svn)
+license             Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The python bindings \
-                        provide access to subversion API from python.
+long_description    Subversion (svn) is a version control system \
+                    designed to be as similar to cvs(1) as possible, \
+                    while fixing many outstanding problems with cvs(1). \
+                    The python bindings provide access to subversion API \
+                    from python.
 
-homepage                http://subversion.apache.org/
-master_sites            apache:subversion
-use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+homepage            http://subversion.apache.org/
+master_sites        apache:subversion
+use_bzip2           yes
+checksums           md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                    sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                    rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-distname                subversion-${version}
-dist_subdir             subversion
+distname            subversion-${version}
+dist_subdir         subversion
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:python27 \
-                        port:sqlite3 \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:file port:libcomerr
+depends_lib         port:apr \
+                    port:apr-util \
+                    port:cyrus-sasl2 \
+                    port:db46 \
+                    port:expat \
+                    port:file \
+                    port:gettext \
+                    port:libcomerr \
+                    port:libiconv \
+                    port:python27 \
+                    port:serf1 \
+                    port:sqlite3 \
+                    port:subversion
 
-patchfiles              patch-swig-python-core.diff
+patchfiles          patch-swig-python-core.diff
 
 post-patch {
-        system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py27/g'"
-        file rename \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
-                ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py27
+    system "cd ${worksrcpath}; find build* Makefile.in subversion/bindings/swig/python -type f -print0 | xargs -0 perl -w -p -i -e 's/libsvn_swig_py/libsvn_swig_py27/g'"
+    file rename \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py \
+        ${worksrcpath}/subversion/bindings/swig/python/libsvn_swig_py27
 }
 
-configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
-                        --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
-                        --mandir=\\\${prefix}/share/man \
-                        --with-serf=${prefix} \
-                        --with-sasl=${prefix} \
-                        --with-libmagic=${prefix} \
-                        --without-gnome-keyring
+configure.args      --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
+                    --with-apr=${prefix}/bin/apr-1-config \
+                    --with-apr-util=${prefix}/bin/apu-1-config \
+                    --without-apxs \
+                    --mandir=\\\${prefix}/share/man \
+                    --with-serf=${prefix} \
+                    --with-sasl=${prefix} \
+                    --with-libmagic=${prefix} \
+                    --without-gnome-keyring
 
-configure.env           ac_cv_path_PYTHON=${prefix}/bin/python2.7 \
-                        ac_cv_python_includes=-I${frameworks_dir}/Python.framework/Versions/2.7/include/python2.7 \
-                        ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.7/Python" \
-                        ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.7/Python" \
-                        ac_cv_python_compile=${configure.cc}
+configure.env       ac_cv_path_PYTHON=${prefix}/bin/python2.7 \
+                    ac_cv_python_includes=-I${frameworks_dir}/Python.framework/Versions/2.7/include/python2.7 \
+                    ac_cv_python_link="${configure.cc} -L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.7/Python" \
+                    ac_cv_python_libs="-L${prefix}/lib -bundle -undefined dynamic_lookup ${frameworks_dir}/Python.framework/Versions/2.7/Python" \
+                    ac_cv_python_compile=${configure.cc}
 
-use_parallel_build      yes
-build.target            swig-py
-destroot.target         install-swig-py DESTDIR=${destroot}
+use_parallel_build  yes
+build.target        swig-py
+destroot.target     install-swig-py DESTDIR=${destroot}
 
-test.run                yes
-test.target             check-swig-py
+test.run            yes
+test.target         check-swig-py
 
 pre-test {
-                        set x {}
-                        fs-traverse dir ${worksrcpath}/subversion {
-                                if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
-                                lappend x ${dir}
-                                continue
-                                }
-                        }
-                        test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
-                        }
+    set x {}
+    fs-traverse dir ${worksrcpath}/subversion {
+        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
+            lappend x ${dir}
+            continue
+        }
+    }
+    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
 post-destroot {
-                set PYTHON_PATH ${frameworks_dir}/Python.framework/Versions/2.7/lib/python2.7
+    set PYTHON_PATH ${frameworks_dir}/Python.framework/Versions/2.7/lib/python2.7
 
-                xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
-                xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
-                        ${destroot}${PYTHON_PATH}/site-packages
-                reinplace "s|@PREFIX@|${prefix}|g" \
-                        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    xinstall -m 755 -d ${destroot}${PYTHON_PATH}/site-packages
+    xinstall -m 755 ${portpath}/${filesdir}/svn-python.pth \
+        ${destroot}${PYTHON_PATH}/site-packages
+    reinplace "s|@PREFIX@|${prefix}|g" \
+        ${destroot}${PYTHON_PATH}/site-packages/svn-python.pth
+    file rename "${destroot}${prefix}/lib/svn-python" \
+        "${destroot}${prefix}/lib/svn-python2.7"
+}
 
-                file rename "${destroot}${prefix}/lib/svn-python" \
-                        "${destroot}${prefix}/lib/svn-python2.7"
-                }
-
 # CarbonCore/MacTypes.h: No such file or directory
-platform puredarwin {           configure.args-append \
-                                        --disable-keychain
-                                }
+platform puredarwin {
+    configure.args-append   --disable-keychain
+}
 
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type      regex
+livecheck.url       http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex     "(\\d+\\.\\d+\\.\\d+)/"

Modified: branches/subversion-subports/dports/devel/subversion-rubybindings/Portfile
===================================================================
--- branches/subversion-subports/dports/devel/subversion-rubybindings/Portfile	2013-08-08 06:23:18 UTC (rev 109119)
+++ branches/subversion-subports/dports/devel/subversion-rubybindings/Portfile	2013-08-08 06:51:49 UTC (rev 109120)
@@ -3,87 +3,96 @@
 
 PortSystem 1.0
 
-name                    subversion-rubybindings
-version                 1.8.1
-revision                1
-categories              devel ruby
-platforms               darwin
-maintainers             geeklair.net:dluke blair
-description             Ruby bindings for the subversion version control system (svn)
-license                 Apache-2
+name                subversion-rubybindings
+version             1.8.1
+revision            1
+categories          devel ruby
+platforms           darwin
+maintainers         geeklair.net:dluke blair
+description         Ruby bindings for the subversion version control \
+                    system (svn)
+license             Apache-2
 
-long_description        Subversion (svn) is a version control system designed to be \
-                        as similar to cvs(1) as possible, while fixing many \
-                        outstanding problems with cvs(1). The ruby bindings \
-                        provide access to subversion API from ruby.
+long_description    Subversion (svn) is a version control system \
+                    designed to be as similar to cvs(1) as possible, \
+                    while fixing many outstanding problems with cvs(1). \
+                    The ruby bindings provide access to subversion API \
+                    from ruby.
 
-homepage                http://subversion.apache.org/
-master_sites            apache:subversion
-use_bzip2               yes
-checksums       md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
-                sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
-                rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
+homepage            http://subversion.apache.org/
+master_sites        apache:subversion
+use_bzip2           yes
+checksums           md5     f2ee0471b8a560f5efa0f2349d9c9ab9 \
+                    sha1    7705819a0037c14fb32eef36f2e57a803217c689 \
+                    rmd160  aaff1efd8e1b8112603eb7855cb546316fe88707
 
-distname                subversion-${version}
-dist_subdir             subversion
+distname            subversion-${version}
+dist_subdir         subversion
 
-test.run                yes
-test.target             check-swig-rb
+test.run            yes
+test.target         check-swig-rb
 
-depends_lib             port:expat \
-                        port:apr port:apr-util \
-                        port:db46 port:subversion \
-                        port:ruby port:sqlite3 \
-                        port:gettext port:libiconv \
-                        port:serf1 port:cyrus-sasl2 \
-                        port:file port:libcomerr
+depends_lib         port:apr \
+                    port:apr-util \
+                    port:cyrus-sasl2 \
+                    port:db46 \
+                    port:expat \
+                    port:file \
+                    port:gettext \
+                    port:libcomerr \
+                    port:libiconv \
+                    port:ruby \
+                    port:serf1 \
+                    port:sqlite3 \
+                    port:subversion
 
-configure.env           RUBY=${prefix}/bin/ruby1.8
-configure.args          --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
-                        --with-apr=${prefix}/bin/apr-1-config \
-                        --with-apr-util=${prefix}/bin/apu-1-config --without-apxs \
-                        --mandir=\\\${prefix}/share/man \
-                        --with-serf=${prefix} \
-                        --with-sasl=${prefix} \
-                        --with-libmagic=${prefix} \
-                        --without-gnome-keyring
+configure.env       RUBY=${prefix}/bin/ruby1.8
+configure.args      --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6 \
+                    --with-apr=${prefix}/bin/apr-1-config \
+                    --with-apr-util=${prefix}/bin/apu-1-config \
+                    --without-apxs \
+                    --mandir=\\\${prefix}/share/man \
+                    --with-serf=${prefix} \
+                    --with-sasl=${prefix} \
+                    --with-libmagic=${prefix} \
+                    --without-gnome-keyring
 
-build.target            swig-rb
-destroot.target         install-swig-rb
+build.target        swig-rb
+destroot.target     install-swig-rb
 
-patchfiles              patch-swig-ruby-core.c.diff
+patchfiles          patch-swig-ruby-core.c.diff
 
 pre-test {
-                        set x {}
-                        fs-traverse dir ${worksrcpath}/subversion {
-                                if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
-                                lappend x ${dir}
-                                continue
-                                }
-                        }
+    set x {}
+    fs-traverse dir ${worksrcpath}/subversion {
+        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
+            lappend x ${dir}
+            continue
+        }
+    }
+    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
+}
 
-                        test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
-                        }
+pre-configure {
+    reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
+        ${worksrcpath}/configure
+}
 
-pre-configure {         reinplace "s|hardcode_direct=yes|hardcode_direct=no|g" \
-                                ${worksrcpath}/configure
-                        }
+post-configure {
+    reinplace "s|need_relink=yes|need_relink=no|g" ${worksrcpath}/libtool
+}
 
-post-configure {        reinplace "s|need_relink=yes|need_relink=no|g" \
-                                ${worksrcpath}/libtool
-                        }
-
 variant no_bdb description {Build without support for BerkeleyDB repositories} {
-                        depends_lib-delete      port:db46
-                        configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
-                        configure.args-append   --without-berkeley-db
-                        }
+    depends_lib-delete      port:db46
+    configure.args-delete   --with-berkeley-db=:${prefix}/include/db46:${prefix}/lib/db46:db-4.6
+    configure.args-append   --without-berkeley-db
+}
 
 # CarbonCore/MacTypes.h: No such file or directory
-platform puredarwin {           configure.args-append \
-                                        --disable-keychain
-                                }
+platform puredarwin {
+    configure.args-append   --disable-keychain
+}
 
-livecheck.type  regex
-livecheck.url   http://svn.apache.org/repos/asf/subversion/tags/
-livecheck.regex "(\\d+\\.\\d+\\.\\d+)/"
+livecheck.type      regex
+livecheck.url       http://svn.apache.org/repos/asf/subversion/tags/
+livecheck.regex     "(\\d+\\.\\d+\\.\\d+)/"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130807/b388ebef/attachment-0001.html>


More information about the macports-changes mailing list