most recent changes, diff for pbzip2

Index: archivers/pbzip2/Portfile
--- archivers/pbzip2/Portfile (revision 31107)
+++ archivers/pbzip2/Portfile (revision 31108)
@@ -1,44 +1,43 @@
# $Id$

-PortSystem 1.0
+PortSystem 1.0

-name pbzip2
-version 1.0.2
-categories archivers
-platforms darwin
-maintainers ram openmaintainer
-description parallel bzip2
+name pbzip2
+version 1.0.2
+categories archivers
+platforms darwin
+maintainers ram openmaintainer

-long_description \
- PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor that \
- uses pthreads and achieves near-linear speedup on SMP machines.
+description parallel bzip2
+long_description PBZIP2 is a parallel implementation of the bzip2 \
+ block-sorting file compressor that uses pthreads and achieves \
+ near-linear speedup on SMP machines.

-homepage http://compression.ca/pbzip2/
-master_sites ${homepage}
+homepage http://compression.ca/pbzip2/
+master_sites ${homepage}

-depends_lib port:bzip2
+depends_lib port:bzip2

-checksums md5 7c959f0554695bc484865b938e791aaf \
- sha1 8ae0ebcd08761332ade6baa4b1172a3f97f71169 \
- rmd160 c8ea882ae9d2739250ae3bea514c14537995ed37
+checksums md5 7c959f0554695bc484865b938e791aaf \
+ sha1 8ae0ebcd08761332ade6baa4b1172a3f97f71169 \
+ rmd160 c8ea882ae9d2739250ae3bea514c14537995ed37

-set CFLAGS "${configure.ldflags} ${configure.cppflags}"
+set CFLAGS "${configure.ldflags} ${configure.cppflags}"

configure {
- reinplace "s|-pthread -lpthread|${CFLAGS}|" ${worksrcpath}/Makefile
- reinplace "s|man|share/man|" ${worksrcpath}/Makefile
+ reinplace "s|-pthread -lpthread|${CFLAGS}|" ${worksrcpath}/Makefile
+ reinplace "s|man|share/man|" ${worksrcpath}/Makefile
}

-destroot.destdir PREFIX=${destroot}${prefix}
+destroot.destdir PREFIX=${destroot}${prefix}

post-destroot {
- set docdir ${prefix}/share/doc/${name}-${version}
- xinstall -d ${destroot}${docdir}
- xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog README \
- ${destroot}${docdir}
+ set docdir ${prefix}/share/doc/${name}-${version}
+ xinstall -d ${destroot}${docdir}
+ xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog README \
+ ${destroot}${docdir}
}

variant universal {
- set CFLAGS "${CFLAGS} ${configure.universal_cflags}"
+ set CFLAGS "${CFLAGS} ${configure.universal_cflags}"
}
-