[22356] trunk/dports

source_changes at macosforge.org source_changes at macosforge.org
Mon Feb 26 22:14:43 PST 2007


Revision: 22356
          http://trac.macosforge.org/projects/macports/changeset/22356
Author:   pipping at macports.org
Date:     2007-02-26 22:14:43 -0800 (Mon, 26 Feb 2007)

Log Message:
-----------
 * cleanup

Modified Paths:
--------------
    trunk/dports/devel/gmp/Portfile
    trunk/dports/devel/pcre/Portfile
    trunk/dports/www/neon/Portfile

Modified: trunk/dports/devel/gmp/Portfile
===================================================================
--- trunk/dports/devel/gmp/Portfile	2007-02-27 06:07:13 UTC (rev 22355)
+++ trunk/dports/devel/gmp/Portfile	2007-02-27 06:14:43 UTC (rev 22356)
@@ -1,65 +1,60 @@
 # $Id$
 
 PortSystem 1.0
-name		gmp
-version		4.2.1
-revision	4
-categories	devel math
-maintainers	gwright at opendarwin.org
-platforms	darwin freebsd
-description	GNU multiple precision arithmetic library
-long_description	\
-		GNU MP is a library for arbitrary precision arithmetic,	\
-		operating on signed integers, rational numbers, and	\
-		floating point numbers.  It has a rich set of		\
-		functions, and the functions have a regular interface.	\
-		GNU MP is designed to be as fast as possible, both for	\
-		small operands and for huge operands.  The speed is	\
-		achieved by using fullwords as the basic arithmetic	\
-		type, by using fast algorithms, by carefully optimized	\
-		assembly code for the most common inner loops for a	\
-		lots of CPUs, and by a general emphasis on speed	\
-		(instead of simplicity or elegance).
+name            gmp
+version         4.2.1
+revision        4
+categories      devel math
+maintainers     gwright at opendarwin.org
+platforms       darwin freebsd
+description     GNU multiple precision arithmetic library
+long_description \
+    GNU MP is a library for arbitrary precision arithmetic, operating on\
+    signed integers, rational numbers, and floating point numbers. It   \
+    has a rich set of functions, and the functions have a regular       \
+    interface. GNU MP is designed to be as fast as possible, both for   \
+    small operands and for huge operands. The speed is achieved by using\
+    fullwords as the basic arithmetic type, by using fast algorithms, by\
+    carefully optimized assembly code for the most common inner loops   \
+    for a lots of CPUs, and by a general emphasis on speed (instead of  \
+    simplicity or elegance).
 
-homepage	http://www.swox.com/gmp/
+homepage        http://www.swox.com/gmp/
+master_sites    gnu
 
-master_sites	gnu
+checksums       md5 091c56e0e1cca6b09b17b69d47ef18e3 \
+                sha1 00a97f0ec1eb1d9429ab5c64be6889e8a497425e
+use_bzip2       yes
 
-checksums	md5  091c56e0e1cca6b09b17b69d47ef18e3 \
-		sha1 00a97f0ec1eb1d9429ab5c64be6889e8a497425e
+configure.env   ABI=32
+configure.args  --infodir=${prefix}/share/info \
+                --enable-shared \
+                --enable-cxx
 
-use_bzip2	yes
+post-destroot {
+    system "ranlib ${destroot}${prefix}/lib/libgmp.a"
+    ui_msg "running ranlib on static libraries"
+    delete ${destroot}${prefix}/include/gmpxx.h
+    delete ${destroot}${prefix}/lib/libgmpxx.a
+    delete ${destroot}${prefix}/lib/libgmpxx.la
+    delete ${destroot}${prefix}/lib/libgmpxx.dylib
+    delete ${destroot}${prefix}/lib/libgmpxx.3.dylib
+    delete ${destroot}${prefix}/lib/libgmpxx.3.1.1.dylib
+}
 
-configure.env	ABI=32
-configure.args	--infodir=\\\${prefix}/share/info	\
-		--enable-shared				\
-		--enable-cxx
-
-post-destroot	{ system "ranlib ${destroot}${prefix}/lib/libgmp.a"
-		  ui_msg "running ranlib on static libraries"
-
-		  file delete ${destroot}${prefix}/include/gmpxx.h
-
-		  file delete ${destroot}${prefix}/lib/libgmpxx.a
-		  file delete ${destroot}${prefix}/lib/libgmpxx.la
-		  file delete ${destroot}${prefix}/lib/libgmpxx.dylib
-		  file delete ${destroot}${prefix}/lib/libgmpxx.3.dylib
-		  file delete ${destroot}${prefix}/lib/libgmpxx.3.1.1.dylib
-                }
-
-default_variants	+test
-variant test	{ test.run	yes
-		  test.cmd	make
-		  test.target	check
-		}
-
-platform darwin x86	{
-	configure.env-delete	ABI=32
-	configure.args-append	--host=none-apple-darwin
+default_variants    +test
+variant test {
+    test.run        yes
+    test.cmd        make
+    test.target     check
 }
 
-platform darwin i386	{
-	configure.env-delete	ABI=32
-	configure.args-append	--host=none-apple-darwin
+platform darwin x86 {
+    configure.env-delete    ABI=32
+    configure.args-append   --host=none-apple-darwin
 }
 
+platform darwin i386 {
+    configure.env-delete    ABI=32
+    configure.args-append   --host=none-apple-darwin
+}

Modified: trunk/dports/devel/pcre/Portfile
===================================================================
--- trunk/dports/devel/pcre/Portfile	2007-02-27 06:07:13 UTC (rev 22355)
+++ trunk/dports/devel/pcre/Portfile	2007-02-27 06:14:43 UTC (rev 22356)
@@ -1,26 +1,26 @@
 # $Id$
 
 PortSystem 1.0
-name             pcre
-version          7.0
-categories       devel
-maintainers      toby at opendarwin.org
-description      Perl Compatible Regular Expressions Library
+name            pcre
+version         7.0
+categories      devel
+maintainers     toby at opendarwin.org
+description     Perl Compatible Regular Expressions Library
 long_description \
-	The PCRE library is a set of functions that implement \
-	regular expression pattern matching using the same \
-	syntax and semantics as Perl 5. PCRE has its own \
-	native API, as well as a set of wrapper functions \
-	that correspond to the POSIX regular expression API.
-homepage         http://www.pcre.org/
-platforms        darwin freebsd
-master_sites     ftp://ftp.fu-berlin.de/unix/misc/pcre/ \
-		ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \
-		ftp://ftp.tin.org/pub/libs/pcre/ \
-		freebsd
-use_bzip2        yes
-checksums        sha1 dc216fc717aca2ab2f7844d97adee6f6f3a6657c
-configure.args   --mandir=${prefix}/share/man \
-                 --enable-utf8 \
-                 --enable-unicode-properties
-test.run         yes
+    The PCRE library is a set of functions that implement regular       \
+    expression pattern matching using the same syntax and semantics as  \
+    Perl 5. PCRE has its own native API, as well as a set of wrapper    \
+    functions that correspond to the POSIX regular expression API.
+
+homepage        http://www.pcre.org/
+platforms       darwin freebsd
+master_sites    ftp://ftp.fu-berlin.de/unix/misc/pcre/ \
+                ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \
+                ftp://ftp.tin.org/pub/libs/pcre/ \
+                freebsd
+use_bzip2       yes
+checksums       sha1 dc216fc717aca2ab2f7844d97adee6f6f3a6657c
+configure.args  --mandir=${prefix}/share/man \
+                --enable-utf8 \
+                --enable-unicode-properties
+test.run        yes

Modified: trunk/dports/www/neon/Portfile
===================================================================
--- trunk/dports/www/neon/Portfile	2007-02-27 06:07:13 UTC (rev 22355)
+++ trunk/dports/www/neon/Portfile	2007-02-27 06:14:43 UTC (rev 22356)
@@ -1,35 +1,36 @@
 # $Id$
 
 PortSystem 1.0
-name		neon
-version		0.26.3
+name            neon
+version         0.26.3
+categories      www
+maintainers     dluke at geeklair.net
+description     An HTTP and WebDAV client library with a C interface
+platforms       darwin freebsd
+long_description \
+    neon is an HTTP and WebDAV client library with a C language API.    \
+    It provides a high-level interface to HTTP and WebDAV methods and a \
+    low-level interface to HTTP request handling, easily allowing the   \
+    implementation of new methods.
 
-categories	www
-maintainers	dluke at geeklair.net
-description	An HTTP and WebDAV client library with a C interface
-platforms	darwin freebsd
+homepage        http://www.webdav.org/neon/
+master_sites    http://www.webdav.org/neon/
+checksums       md5 6e52cd9c03e372026d6eccbfb80f09ef
 
-long_description neon is an HTTP and WebDAV client library with a C language \
-                 API.  It provides a high-level interface to HTTP and WebDAV \
-                 methods and a low-level interface to HTTP request handling, \
-                 easily allowing the implementation of new methods.
+depends_lib     port:expat \
+                port:gettext \
+                port:libiconv \
+                port:openssl \
+                port:zlib
+configure.env   LDFLAGS=-L$prefix/lib \
+                CPPFLAGS=-I$prefix/include
+configure.args  --with-ssl \
+                --enable-shared \
+                --with-expat \
+                --mandir=\\\${prefix}/share/man
 
-homepage	http://www.webdav.org/neon/
+destroot.destdir    prefix=${destroot}${prefix}
 
-master_sites	http://www.webdav.org/neon/
-checksums	md5 6e52cd9c03e372026d6eccbfb80f09ef
-
-depends_lib	port:expat port:openssl port:zlib port:gettext port:libiconv
-configure.env	LDFLAGS=-L$prefix/lib CPPFLAGS=-I$prefix/include
-configure.args	--with-ssl \
-		--enable-shared \
-		--with-expat \
-		--mandir=\\\${prefix}/share/man
-		
-configure.type	gnu
-
-destroot.destdir prefix=${destroot}${prefix}
-
-test.env	DYLD_LIBRARY_PATH=`find ${worksrcpath} -type d -name .libs | xargs echo | sed -e 's/ /:/g'`
-test.run	yes
-test.target	check
+test.env    DYLD_LIBRARY_PATH=`find ${worksrcpath} -type d -name .libs | xargs echo | sed -e 's/ /:/g'`
+test.run    yes
+test.target check

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070226/91af8bd5/attachment.html


More information about the macports-changes mailing list