svn commit: r384664 - head/emulators/wine-devel
David Naylor
dbn at FreeBSD.org
Fri Apr 24 15:56:20 UTC 2015
Author: dbn
Date: Fri Apr 24 15:56:19 2015
New Revision: 384664
URL: https://svnweb.freebsd.org/changeset/ports/384664
Log:
emulators/wine-compholio: fix build.
* Autoconf is required during the extract stage, so add it to the
EXTRACT_DEPENDS list (it defaults to BUILD_DEPENDS only)
* For an unknown reason autoconf creates a configure script that looks
for and detects powl on FreeBSD 8 and 9. powl does not actually exist
and causes a build failure.
Approved by: gerald@ (maintainer, implicit)
Modified:
head/emulators/wine-devel/Makefile
Modified: head/emulators/wine-devel/Makefile
==============================================================================
--- head/emulators/wine-devel/Makefile Fri Apr 24 15:48:52 2015 (r384663)
+++ head/emulators/wine-devel/Makefile Fri Apr 24 15:56:19 2015 (r384664)
@@ -141,8 +141,11 @@ COMP_DIST= v${DISTVERSION}.tar.gz
DISTFILES+= ${COMP_DIST}:cho
EXTRACT_DEPENDS=bash:${PORTSDIR}/shells/bash \
- git:${PORTSDIR}/devel/git
+ git:${PORTSDIR}/devel/git \
+ ${AUTOCONF_DEPENDS}
+# Fix build on FreeBSD 8.4 and 9.3 (false positive: powl)
+CONFIGURE_ENV+= ac_cv_have_powl=no
CONFIGURE_ARGS+=--without-pulse
USE_AUTOTOOLS= autoconf
More information about the svn-ports-head
mailing list