python/py-dateutil: don't run livecheck on all subports
--- trunk/dports/python/py-dnspython/Portfile 2011-11-06 17:57:45 UTC (rev 86880)
+++ trunk/dports/python/py-dnspython/Portfile 2011-11-06 17:58:16 UTC (rev 86881)
@@ -36,6 +36,10 @@
}
}
-livecheck.type regex
-livecheck.url ${homepage}
-livecheck.regex {is (\d+(?:\.\d+)*),}
+if {${name} == ${subport}} {
+ livecheck.type regex
+ livecheck.url ${homepage}
+ livecheck.regex {is (\d+(?:\.\d+)*),}
+} else {
+ livecheck.type none
+}