[109305] trunk/dports/devel/subversion/Portfile

larryv at macports.org larryv at macports.org
Mon Aug 12 11:52:36 PDT 2013


Revision: 109305
          https://trac.macports.org/changeset/109305
Author:   larryv at macports.org
Date:     2013-08-12 11:52:36 -0700 (Mon, 12 Aug 2013)
Log Message:
-----------
subversion: Only default to certsync if startupitem.autostart is available.

Currently, a user on 2.2.0 stable installing subversion for the first time
will have to manually run "port load" to start certsync's Keychain
syncing, which is undesirable. We should stick with curl-ca-bundle until
startupitem.autostart is released.

Modified Paths:
--------------
    trunk/dports/devel/subversion/Portfile

Modified: trunk/dports/devel/subversion/Portfile
===================================================================
--- trunk/dports/devel/subversion/Portfile	2013-08-12 18:50:47 UTC (rev 109304)
+++ trunk/dports/devel/subversion/Portfile	2013-08-12 18:52:36 UTC (rev 109305)
@@ -28,7 +28,12 @@
 			port:gettext port:libiconv \
 			port:serf1 port:cyrus-sasl2 \
 			port:file port:libcomerr
-depends_run		path:share/curl/curl-ca-bundle.crt:certsync
+# TODO: Remove conditional when startupitem.autostart is released (2.2.1?).
+if {[info exists startupitem.autostart]} {
+	depends_run	path:share/curl/curl-ca-bundle.crt:certsync
+} else {
+	depends_run	path:share/curl/curl-ca-bundle.crt:curl-ca-bundle
+}
 
 test.run		yes
 test.target		check
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130812/e976a108/attachment.html>


More information about the macports-changes mailing list