ports/76668: gkrellmss2-2.6 fails to build
Sam Lawrance
boris at brooknet.com.au
Fri Feb 18 11:20:20 UTC 2005
The following reply was made to PR ports/76668; it has been noted by GNATS.
From: Sam Lawrance <boris at brooknet.com.au>
To: freebsd-gnats-submit at FreeBSD.org, doug at polands.org
Cc: vs at FreeBSD.org
Subject: Re: ports/76668: gkrellmss2-2.6 fails to build
Date: Fri, 18 Feb 2005 22:17:49 +1100
--=-qoA9FJL+wFZ0IYjg3Uv3
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
The build is failing due to a typo in the configure script meaning fftw3
is not found and appropriate define not placed in configure.h
The lines in the port makefile that cat into configure.h are also
presently useless; configure.h is rebuilt every time as it is executed
from a variable assignment.
Try attached patch.
--=-qoA9FJL+wFZ0IYjg3Uv3
Content-Disposition: attachment; filename=patch
Content-Type: text/x-patch; name=patch; charset=ASCII
Content-Transfer-Encoding: 7bit
Index: Makefile
===================================================================
RCS file: /home/ncvs/FreeBSD/ports/audio/gkrellmss2/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- Makefile 21 Jan 2005 19:15:33 -0000 1.9
+++ Makefile 18 Feb 2005 11:15:11 -0000
@@ -33,11 +33,7 @@
post-patch:
@${REINPLACE_CMD} -e 's|= -O2|=|g ; \
s|= gcc|+=|g' ${WRKSRC}/src/Makefile
-
-do-configure:
- @${ECHO_CMD} "" > ${WRKSRC}/src/configure.h
- @${ECHO_CMD} "#define HAVE_ESOUND 1" >> ${WRKSRC}/src/configure.h
- @${ECHO_CMD} "#define HAVE_FFTW3 1" >> ${WRKSRC}/src/configure.h
+ @${REINPLACE_CMD} -e 's|PKG_LIBS|PKG_LIB|g' ${WRKSRC}/src/configure
do-install:
${INSTALL_DATA} ${WRKSRC}/src/gkrellmss.so \
--=-qoA9FJL+wFZ0IYjg3Uv3--
More information about the freebsd-ports-bugs
mailing list