qemu-devel's configure script requires Python <= 2.7 but the Makefile has it use the default python. If the default python is python 3, it will fail. Fix: Use only python up to 2.7 (patch). Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->nox Over to maintainer (via the GNATS Auto Assign Tool)
Author: nox Date: Fri Aug 2 18:50:52 2013 New Revision: 324173 URL: http://svnweb.freebsd.org/changeset/ports/324173 Log: - Fix build with PYTHON_DEFAULT_VERSION of 3+. [1] - Remove a double word in pkg-message. PR: ports/180997 [1] Submitted by: nwhitehorn Modified: head/emulators/qemu-devel/Makefile head/emulators/qemu-devel/pkg-message Modified: head/emulators/qemu-devel/Makefile ============================================================================== --- head/emulators/qemu-devel/Makefile Fri Aug 2 18:39:11 2013 (r324172) +++ head/emulators/qemu-devel/Makefile Fri Aug 2 18:50:52 2013 (r324173) @@ -19,7 +19,7 @@ HAS_CONFIGURE= yes USE_BZIP2= yes USES= gmake pkgconfig USE_PERL5_BUILD= yes -USE_PYTHON_BUILD= yes +USE_PYTHON_BUILD= -2.7 USE_GNOME+= glib20 PATCH_STRIP= -p1 MAKE_ENV+= BSD_MAKE="${MAKE}" @@ -214,6 +214,8 @@ CONFIGURE_ENV+= COMPILER_PATH=${LOCALBAS MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin .endif +CONFIGURE_ARGS+= --python=${PYTHON_CMD} + # -lprocstat actually only _needs_ -lelf after r249666 or r250870 (MFC) # but it shouldn't matter much post-patch: Modified: head/emulators/qemu-devel/pkg-message ============================================================================== --- head/emulators/qemu-devel/pkg-message Fri Aug 2 18:39:11 2013 (r324172) +++ head/emulators/qemu-devel/pkg-message Fri Aug 2 18:50:52 2013 (r324173) @@ -150,7 +150,7 @@ processing error - resetting ehci HC otherwise getting used. (Not that you should run malicious guests anyway, but this eleminates at least a known attack vector.) -- qemu now has improved physical cdrom support, but still there still is at +- qemu now has improved physical cdrom support, but still there is at least one known problem: you need to have the guest eject the disc if you want to change it/take it out, or otherwise the guest may continue using state (like size) of the old disc. (You can also do like `change ide1-cd0 _______________________________________________ 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!