Revision
86886
Author
ram@macports.org
Date
2011-11-06 10:01:01 -0800 (Sun, 06 Nov 2011)

Log Message

python/py-pyfftw3: don't run livecheck on all subports

Modified Paths

Diff

Modified: trunk/dports/python/py-pyfftw3/Portfile (86885 => 86886)


--- trunk/dports/python/py-pyfftw3/Portfile	2011-11-06 18:00:31 UTC (rev 86885)
+++ trunk/dports/python/py-pyfftw3/Portfile	2011-11-06 18:01:01 UTC (rev 86886)
@@ -39,6 +39,10 @@
   reinplace "s|@@MP_PREFIX@@|${prefix}|" ${worksrcpath}/setup.py
 }
 
-livecheck.type      regex
-livecheck.url       ${homepage}
-livecheck.regex     {Latest version is (\d+(?:\.\d+)*)}
+if {${name} == ${subport}} {
+  livecheck.type      regex
+  livecheck.url       ${homepage}
+  livecheck.regex     {Latest version is (\d+(?:\.\d+)*)}
+} else {
+  livecheck.type      none
+}