Revision
38822
Author
ram@macports.org
Date
2008-07-31 21:20:40 -0700 (Thu, 31 Jul 2008)

Log Message

revert r38815, as this breaks the matplotlib-basemap which is why the geos
port was not updated to 3.0.0 see ticket #13699

Modified Paths

Added Paths

Diff

Modified: trunk/dports/science/geos/Portfile (38821 => 38822)


--- trunk/dports/science/geos/Portfile	2008-08-01 01:18:12 UTC (rev 38821)
+++ trunk/dports/science/geos/Portfile	2008-08-01 04:20:40 UTC (rev 38822)
@@ -3,7 +3,7 @@
 PortSystem       1.0
 
 name             geos
-version          3.0.0
+version          2.2.3
 categories       science
 platforms        darwin
 maintainers      opendarwin@gaige.net ram
@@ -18,8 +18,12 @@
 master_sites     ${homepage}downloads/
 use_bzip2        yes
 
-checksums        md5 3f7940abee9fec69a9787878cd3ae771 \
-                 sha1 71090220351c8ae7bb147d74145fa5daf83e3c26 \
-                 rmd160  195fb24de2f67d515f629f1dcb3dccec7711bdac
+checksums	       md5 440be2b11fd3d711e950a47ea6f1b424 \
+                 sha1 c5da21829255e3625f7c2482c9220234cc5d9f90 \
+                 rmd160 968de157f96f41aa71d5ef7c28c7186e8db0939e
 
 use_parallel_build yes
+
+platform darwin 9 {
+	patchfiles patch-test_XMLTester.cpp.diff
+}

Added: trunk/dports/science/geos/files/patch-test_XMLTester.cpp.diff (0 => 38822)


--- trunk/dports/science/geos/files/patch-test_XMLTester.cpp.diff	                        (rev 0)
+++ trunk/dports/science/geos/files/patch-test_XMLTester.cpp.diff	2008-08-01 04:20:40 UTC (rev 38822)
@@ -0,0 +1,11 @@
+--- source/test/XMLTester.cpp	2007-11-24 13:52:10.000000000 -0500
++++ source/test/XMLTester.cpp	2007-11-24 13:54:58.000000000 -0500
+@@ -63,7 +63,7 @@
+ void
+ tolower(std::string& str)
+ {
+-	std::transform(str.begin(), str.end(), str.begin(), safe_ctype<std::tolower>);
++	std::transform(str.begin(), str.end(), str.begin(), (int(*)(int))std::tolower);
+ }
+ 
+ XMLTester::XMLTester()