Revision
133463
Author
ryandesign@macports.org
Date
2015-03-02 11:44:32 -0800 (Mon, 02 Mar 2015)

Log Message

fauxident: add modeline and adjust whitespace to match

Modified Paths

Diff

Modified: trunk/dports/net/fauxident/Portfile (133462 => 133463)


--- trunk/dports/net/fauxident/Portfile	2015-03-02 14:50:01 UTC (rev 133462)
+++ trunk/dports/net/fauxident/Portfile	2015-03-02 19:44:32 UTC (rev 133463)
@@ -1,3 +1,4 @@
+# -*- 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
@@ -6,16 +7,17 @@
 version             1.2.1
 revision            2
 categories          net
+platforms           darwin freebsd
+maintainers         nomaintainer
 license             GPL-2
-maintainers         nomaintainer
+supported_archs     noarch
+
 description         small extremely naive ident server
-long_description \
-   fauxident is a small Python script that will act as an extremely naive \
-   ident server, answering all ident requests with a consistent response \
-   -- either an ERROR or a USERID response.
 
-platforms           darwin freebsd
-supported_archs     noarch
+long_description    fauxident is a small Python script that will act as an \
+                    extremely naive ident server, answering all ident requests \
+                    with a consistent response -- either an ERROR or a USERID \
+                    response.
 
 homepage            http://www.alcyone.com/software/fauxident/
 master_sites        ${homepage}
@@ -26,21 +28,21 @@
 depends_lib         port:python27
 
 post-extract {
-   file attributes ${worksrcpath}/fauxident.py -permissions 0755
+    file attributes ${worksrcpath}/fauxident.py -permissions 0755
 }
 
 configure {
-   reinplace "s|/usr/local/bin/python|${prefix}/bin/python2.7|g" \
-      ${worksrcpath}/fauxident.py
+    reinplace "s|/usr/local/bin/python|${prefix}/bin/python2.7|g" \
+        ${worksrcpath}/fauxident.py
 }
 
 build               {}
 
 destroot {
-   file mkdir ${destroot}${prefix}/bin
-   file mkdir ${destroot}${prefix}/share/doc/${name}
-   file copy ${worksrcpath}/fauxident.py ${destroot}${prefix}/bin/
-   file copy ${worksrcpath}/COPYING ${worksrcpath}/README \
-      ${worksrcpath}/doc/index.html ${worksrcpath}/doc/home \
-      ${destroot}${prefix}/share/doc/${name}
+    file mkdir ${destroot}${prefix}/bin
+    file mkdir ${destroot}${prefix}/share/doc/${name}
+    file copy ${worksrcpath}/fauxident.py ${destroot}${prefix}/bin/
+    file copy ${worksrcpath}/COPYING ${worksrcpath}/README \
+        ${worksrcpath}/doc/index.html ${worksrcpath}/doc/home \
+        ${destroot}${prefix}/share/doc/${name}
 }