diff options
author | green <green@FreeBSD.org> | 2000-02-23 11:32:33 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-02-23 11:32:33 +0000 |
commit | de96440f8390978e1a337be1771aa88b34f5ab01 (patch) | |
tree | 615dfa71b583d86584b6f0573ae1c238c24535f4 /net-im | |
parent | 33bf5eff312991967dc0c5f7d44a63c68919b2fb (diff) | |
download | FreeBSD-ports-de96440f8390978e1a337be1771aa88b34f5ab01.zip FreeBSD-ports-de96440f8390978e1a337be1771aa88b34f5ab01.tar.gz |
Get all of the good parts of MAKE_ENV et al to the _second_ configure
in this port, which seems to unbreak it the rest of the way for 3.X
-STABLE installations.
Submitted by: Alexander N. Kabaev <ak03@gte.com>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/licq/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/net-im/licq/Makefile b/net-im/licq/Makefile index 85e3538..ac50adf 100644 --- a/net-im/licq/Makefile +++ b/net-im/licq/Makefile @@ -31,7 +31,19 @@ DATAFILES= ${DATANAME}${EXTRACT_SUFX} DATADIR= ${WRKDIR}/${DATANAME} post-configure: - @(cd ${WRKSRC}/plugins/qt-gui; ./configure --prefix=${PREFIX}) + @(cd ${WRKSRC}/plugins/qt-gui && \ + if ! ${SETENV} CC="${CC}" CXX="${CXX}" \ + CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ + INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \ + INSTALL_DATA="${INSTALL_DATA}" \ + INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ + INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ + ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}; then \ + ${ECHO} "===> Script \"${CONFIGURE_SCRIPT}\" failed: here are the contents of \"${CONFIGURE_LOG}\""; \ + ${CAT} ${CONFIGURE_LOG}; \ + ${ECHO} "(end of \"${CONFIGURE_LOG}\")"; \ + ${FALSE}; \ + fi) post-build: @(cd ${WRKSRC}/plugins/qt-gui;\ |