From df8d253fb40dac29d22bc4c329f3cce4554b84fb Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Tue, 4 Oct 2011 22:23:00 +0000 Subject: [PATCH] Work around the autotools problem with the 10.0 version. With this, I can build various ports on a 10.0-CURRENT system without hacking or hiding the version number. This commit should be reverted when there is a cleaner fix in autotools and/or ports/Mk/bsd.port.mk. The original patch is from Ed Schouten but needed some additions. --- share/mk/bsd.port.mk | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 87e49352f95..f5b98e2c0ea 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -14,3 +14,15 @@ _WITHOUT_SRCCONF= .include .include "${BSDPORTMK}" + +.if !defined(BEFOREPORTMK) && !defined(INOPTIONSMK) +# Work around an issue where FreeBSD 10.0 is detected as FreeBSD 1.x. +run-autotools-fixup: + find ${WRKSRC} -type f \( -name config.libpath -o \ + -name config.rpath -o -name configure -o -name libtool.m4 \) \ + -exec sed -i '' -e 's/freebsd1\*)/SHOULDNOTMATCHANYTHING1)/' \ + -e 's/freebsd\[123\]\*)/SHOULDNOTMATCHANYTHING2)/' {} + + +.ORDER: run-autotools run-autotools-fixup do-configure +do-configure: run-autotools-fixup +.endif