[62374] trunk/dports/mail/cclient/Portfile

nox at macports.org nox at macports.org
Tue Jan 5 08:59:41 PST 2010


Revision: 62374
          http://trac.macports.org/changeset/62374
Author:   nox at macports.org
Date:     2010-01-05 08:59:40 -0800 (Tue, 05 Jan 2010)
Log Message:
-----------
Make whitespace changes to cclient

Modified Paths:
--------------
    trunk/dports/mail/cclient/Portfile

Modified: trunk/dports/mail/cclient/Portfile
===================================================================
--- trunk/dports/mail/cclient/Portfile	2010-01-05 16:59:29 UTC (rev 62373)
+++ trunk/dports/mail/cclient/Portfile	2010-01-05 16:59:40 UTC (rev 62374)
@@ -1,72 +1,76 @@
 # $Id$
 
-PortSystem 1.0
+PortSystem      1.0
 
-name			cclient
-version			2007d
-categories		mail
-maintainers		nomaintainer
-description		UW IMAP c-client library
-long_description	\
-				C-client is a common API for accessing mailboxes. It is \
-				used internally by the popular PINE mail reader as well as the \
-				University of Washington's IMAP server.
-homepage		http://www.washington.edu/imap/
-platforms		darwin
-master_sites	ftp://ftp.cac.washington.edu/imap/ \
-				ftp://ftp.cac.washington.edu/imap/old/ \
-				macports:pguyot
-distname		imap-${version}	
-dist_subdir		imap-uw
-worksrcdir		imap-${version}
-checksums           md5     ec27cd4c5972b981bb96e9da0430af53 \
-                    sha1    c77a3feaa68fa8a73eea85718e66eba9ae3e222c \
-                    rmd160  d403678f83e761237cbdf62b4bcde466cdf85123
+name            cclient
+version         2007d
+platforms       darwin
+categories      mail
+maintainers     nomaintainer
+description     UW IMAP c-client library
 
-depends_lib		port:openssl \
-				lib:libz:zlib \
-				lib:libgssapi_krb5:kerberos5
+long_description \
+    C-client is a common API for accessing mailboxes. It is used internally by \
+    the popular PINE mail reader as well as the University of Washington's \
+    IMAP server.
 
-use_configure	no
+homepage        http://www.washington.edu/imap/
+master_sites    ftp://ftp.cac.washington.edu/imap/ \
+                ftp://ftp.cac.washington.edu/imap/old/ \
+                macports:pguyot
+distname        imap-${version}
+dist_subdir     imap-uw
 
+checksums       md5     ec27cd4c5972b981bb96e9da0430af53 \
+                sha1    c77a3feaa68fa8a73eea85718e66eba9ae3e222c \
+                rmd160  d403678f83e761237cbdf62b4bcde466cdf85123
+
+depends_lib     port:openssl \
+                lib:libz:zlib \
+                lib:libgssapi_krb5:kerberos5
+
+worksrcdir      imap-${version}
+
 post-patch {
-	reinplace "s|/System/Library/OpenSSL SSLINCLUDE=/usr/include/openssl SSLLIB=/usr/lib|${prefix}/etc/openssl SSLINCLUDE=${prefix}/include SSLLIB=${prefix}/lib|g" ${worksrcpath}/Makefile
-	reinplace "s| -Wno-pointer-sign||g" ${worksrcpath}/src/osdep/unix/Makefile
+    reinplace "s|/System/Library/OpenSSL SSLINCLUDE=/usr/include/openssl SSLLIB=/usr/lib|${prefix}/etc/openssl SSLINCLUDE=${prefix}/include SSLLIB=${prefix}/lib|g" ${worksrcpath}/Makefile
+    reinplace "s| -Wno-pointer-sign||g" ${worksrcpath}/src/osdep/unix/Makefile
 }
 
-build.target	oxp
-build.args		EXTRACFLAGS=-fno-common CC=${configure.cc}
+use_configure   no
 
+build.target    oxp
+build.args      EXTRACFLAGS=-fno-common CC=${configure.cc}
+
+use_parallel_build no
+
+destroot {
+    xinstall -m 755 -d ${destroot}${prefix}/include/c-client
+    xinstall -m 644 -W ${worksrcpath}/c-client \
+        c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h flocksim.h \
+        flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h mail.h \
+        misc.h netmsg.h newsrc.h nl.h nntp.h osdep.h \
+        pseudo.h rfc822.h smtp.h sslio.h tcp.h tcp_unix.h unix.h \
+        utf8.h utf8aux.h \
+        ${destroot}${prefix}/include/c-client
+    xinstall -m 644 ${worksrcpath}/c-client/c-client.a \
+        ${destroot}${prefix}/lib/libc-client4.a
+    system "cd ${destroot}${prefix}/lib/ && ranlib libc-client4.a"
+}
+
+platform darwin 10 {
+    patchfiles-append patch-Makefile-fixpam
+}
+
 variant ssl_plaintext description {Allow plaintext passwords over SSL} {
-	patchfiles patch-Makefile
-	build.args-append SSLTYPE=unix
+    patchfiles patch-Makefile
+    build.args-append SSLTYPE=unix
 }
 
 variant universal {
-	build.args-delete EXTRACFLAGS="-fno-common"
-	build.args-append EXTRACFLAGS="${configure.universal_cflags}" EXTRALDFLAGS="${configure.universal_ldflags}"
+    build.args-delete EXTRACFLAGS="-fno-common"
+    build.args-append EXTRACFLAGS="${configure.universal_cflags}" EXTRALDFLAGS="${configure.universal_ldflags}"
 }
 
-destroot {
-	xinstall -m 755 -d ${destroot}${prefix}/include/c-client
-	xinstall -m 644 -W ${worksrcpath}/c-client \
-		c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h flocksim.h \
-		flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h mail.h \
-		misc.h netmsg.h newsrc.h nl.h nntp.h osdep.h \
-		pseudo.h rfc822.h smtp.h sslio.h tcp.h tcp_unix.h unix.h \
-		utf8.h utf8aux.h \
-		${destroot}${prefix}/include/c-client
-	xinstall -m 644 ${worksrcpath}/c-client/c-client.a \
-		${destroot}${prefix}/lib/libc-client4.a
-	system "cd ${destroot}${prefix}/lib/ && ranlib libc-client4.a"
-}
-
 livecheck.type  regex
 livecheck.url   http://ftp.ntua.gr/pub/net/mail/imap/?C=M&O=D
 livecheck.regex {imap-(\d+(?:[a-z]\d*)?)\.tar}
-
-use_parallel_build  no
-
-platform darwin 10 {
-    patchfiles-append patch-Makefile-fixpam
-}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100105/05bfd791/attachment-0001.html>


More information about the macports-changes mailing list