[95300] trunk/dports/devel/thrift/Portfile

blair at macports.org blair at macports.org
Sun Jul 8 16:03:41 PDT 2012


Revision: 95300
          https://trac.macports.org/changeset/95300
Author:   blair at macports.org
Date:     2012-07-08 16:03:40 -0700 (Sun, 08 Jul 2012)
Log Message:
-----------
thrift: whitespace only changes; indent using 8 spaces.

Modified Paths:
--------------
    trunk/dports/devel/thrift/Portfile

Modified: trunk/dports/devel/thrift/Portfile
===================================================================
--- trunk/dports/devel/thrift/Portfile	2012-07-08 22:49:56 UTC (rev 95299)
+++ trunk/dports/devel/thrift/Portfile	2012-07-08 23:03:40 UTC (rev 95300)
@@ -1,85 +1,86 @@
 # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
 # $Id$
 
-PortSystem          1.0
+PortSystem      1.0
 
-name                thrift
-version             0.8.0
-revision            1
-categories          devel
-license             Apache-2
-maintainers         gmail.com:naoya.n blair openmaintainer
-platforms           darwin
+name            thrift
+version         0.8.0
+revision        1
+categories      devel
+license         Apache-2
+maintainers     gmail.com:naoya.n blair openmaintainer
+platforms       darwin
 
-description         framework for scalable cross-language services development
-long_description    Thrift is a software framework for scalable cross-language \
-                    services development. It combines a software stack with a \
-                    code generation engine to build services that work \
-                    efficiently and seamlessly between C++, Java, Python, PHP, \
-                    Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and \
-                    OCaml.
+description     framework for scalable cross-language services development
+long_description \
+                Thrift is a software framework for scalable cross-language \
+                services development. It combines a software stack with a \
+                code generation engine to build services that work \
+                efficiently and seamlessly between C++, Java, Python, PHP, \
+                Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and \
+                OCaml.
 
-homepage            http://thrift.apache.org/
-master_sites        apache:${name}/${version}
+homepage        http://thrift.apache.org/
+master_sites    apache:${name}/${version}
 
-checksums           md5     d29dfcd38d476cbc420b6f4d80ab966c \
-                    sha1    1d652d7078d9cc70e2a45d3119b13e86ebd446da \
-                    rmd160  bb0e1d2b6d30b70590752a7f9318e14de285c505
+checksums       md5     d29dfcd38d476cbc420b6f4d80ab966c \
+                sha1    1d652d7078d9cc70e2a45d3119b13e86ebd446da \
+                rmd160  bb0e1d2b6d30b70590752a7f9318e14de285c505
 
-use_parallel_build  no
+use_parallel_build no
 
-depends_build       port:boost \
-                    port:pkgconfig
+depends_build   port:boost \
+                port:pkgconfig
 
-configure.args      --with-csharp=no \
-                    --with-java=no \
-                    --with-erlang=no \
-                    --with-py=no \
-                    --with-perl=no \
-                    --with-ruby=no \
-                    --with-haskell=no \
-                    --with-php=no \
-                    --with-php_extension=no
+configure.args  --with-csharp=no \
+                --with-java=no \
+                --with-erlang=no \
+                --with-py=no \
+                --with-perl=no \
+                --with-ruby=no \
+                --with-haskell=no \
+                --with-php=no \
+                --with-php_extension=no
 
 variant java description "enable the Java library" {
-    depends_build-append    bin:ant:apache-ant
-    configure.env-append    JAVA_PREFIX=${prefix}/share/java
-    configure.args-delete   --with-java=no
-    configure.args-append   --with-java=yes
+        depends_build-append    bin:ant:apache-ant
+        configure.env-append    JAVA_PREFIX=${prefix}/share/java
+        configure.args-delete   --with-java=no
+        configure.args-append   --with-java=yes
 }
 
 variant csharp description "enable the C# library" {
-    configure.args-delete   --with-csharp=no
-    configure.args-append   --with-csharp=yes
-    depends_lib-append      port:mono
+        configure.args-delete   --with-csharp=no
+        configure.args-append   --with-csharp=yes
+        depends_lib-append      port:mono
 }
 
 # doesn't install into destroot
 #variant ruby description "enable the Ruby library" {
-#    configure.args-delete   --with-ruby=no
-#    configure.args-append   --with-ruby=yes
-#    depends_lib-append      port:ruby
+#        configure.args-delete   --with-ruby=no
+#        configure.args-append   --with-ruby=yes
+#        depends_lib-append      port:ruby
 #}
 
 variant haskell description "enable the Haskell library" {
-    configure.args-delete   --with-haskell=no
-    configure.args-append   --with-haskell=yes
-    depends_lib-append      port:ghc \
-                            port:hs-http \
-                            port:hs-binary
+        configure.args-delete   --with-haskell=no
+        configure.args-append   --with-haskell=yes
+        depends_lib-append      port:ghc \
+                                port:hs-http \
+                                port:hs-binary
 }
 
 variant php description "enable the PHP library" {
-    configure.env-append    PHP_PREFIX=${prefix}/lib/php
-    configure.args-delete   --with-php=no
-    configure.args-append   --with-php=yes
-    depends_lib-append      path:bin/php:php5
+        configure.env-append    PHP_PREFIX=${prefix}/lib/php
+        configure.args-delete   --with-php=no
+        configure.args-append   --with-php=yes
+        depends_lib-append      path:bin/php:php5
 }
 
 variant erlang description "enable the Erlang library" {
-    configure.args-delete   --with-erlang=no
-    configure.args-append   --with-erlang=yes
-    depends_lib-append      port:erlang
+        configure.args-delete   --with-erlang=no
+        configure.args-append   --with-erlang=yes
+        depends_lib-append      port:erlang
 }
 
 livecheck.type          regex
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120708/698a8de2/attachment.html>


More information about the macports-changes mailing list