phpvirtualbox on it's version 4.2.4 requires php5-simplexml module. That's not properly recorded as a dependency on the port. You can find a bug report of other FreeBSD user on mainstream bug tracker here: http://code.google.com/p/phpvirtualbox/issues/detail?id=656&q=language Fix: Attached is a simple patch to record the new dependency of the port. How-To-Repeat: Install phpvirtualbox and try to use it. It will fail.
Responsible Changed From-To: freebsd-ports-bugs->vbox Over to maintainer (via the GNATS Auto Assign Tool)
Author: decke Date: Thu Jan 17 14:43:49 2013 New Revision: 310550 URL: http://svnweb.freebsd.org/changeset/ports/310550 Log: - Add missing simplexml dependency PR: ports/175189 Submitted by: Victor Balada Diaz <victor@bsdes.net> Modified: head/www/phpvirtualbox/Makefile Modified: head/www/phpvirtualbox/Makefile ============================================================================== --- head/www/phpvirtualbox/Makefile Thu Jan 17 13:01:25 2013 (r310549) +++ head/www/phpvirtualbox/Makefile Thu Jan 17 14:43:49 2013 (r310550) @@ -3,6 +3,7 @@ PORTNAME= phpvirtualbox DISTVERSION= 4.2-4 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ LOCAL/decke @@ -14,7 +15,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USE_ZIP= yes -USE_PHP= json session soap +USE_PHP= json session soap simplexml NO_BUILD= yes USE_DOS2UNIX= yes DOS2UNIX_REGEX= .*\.(php|txt|js|css|html) _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!