Subject: Re: devel/libtool and Re: KDE 2 is out
To: Hubert Feyrer <hubert.feyrer@informatik.fh-regensburg.de>
From: Nick Hudson <nick@nthcliff.demon.co.uk>
List: tech-pkg
Date: 10/24/2000 16:52:15
This is a multi-part message in MIME format.
--------------C9D4C16A72EDBE16E3B2F573
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hubert Feyrer wrote:
> 
> On Tue, 24 Oct 2000, Nick Hudson wrote:
> > I am working on them and I've got compiling packages for support, libs,
> > and base. I'd like to make changes to bsd.pkg.mk and devel/libtool to
> > help out though.
> 
> What changes to bsd.pkg.mk?

Add a CXX definition when HAS_CONFIGURE is set - see below.

> > Reading the discussion about Python 2.0 I'm tempted to just upgrade
> > devel/libtool and sort any (likely to be small) breakage out. What do
> > you think?
> 
> Maybe talk to Ty about that - he's our Python man. :)
> 
> My personal view is: libtool is a pkg that a big number of packages depend
> on, and as much as improvements are, I'm always a bit afraid that what
> fixes one pkg breaks a dozend others...

I'm cautious also... I'm confident though that nothing will break in a
very bad way. I've done some testing in that I've compiled KDE1 and
dependencies with libtool-1.4a. There was only one small problem with
the build of tiff.

Nick
ps. Are you doing bulk builds still?
-- 
aka skrll@netbsd.org, skrll@excite.co.uk
--------------C9D4C16A72EDBE16E3B2F573
Content-Type: text/plain; charset=us-ascii;
 name="bsd.pkg.mk-diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="bsd.pkg.mk-diff"

Index: bsd.pkg.mk
===================================================================
RCS file: /cvsroot/pkgsrc/mk/bsd.pkg.mk,v
retrieving revision 1.592
diff -c -c -r1.592 bsd.pkg.mk
*** bsd.pkg.mk	2000/10/23 17:32:06	1.592
--- bsd.pkg.mk	2000/10/24 15:51:21
***************
*** 1480,1487 ****
  		  ${SCRIPTDIR}/configure; \
  	fi
  .if defined(HAS_CONFIGURE)
! 	${_PKG_SILENT}${_PKG_DEBUG}cd ${WRKSRC} && ${SETENV} CC="${CC}" ac_cv_path_CC="${CC}" \
! 	    CFLAGS="${CFLAGS}" \
  	    INSTALL="`${TYPE} ${INSTALL} | ${AWK} '{ print $$NF }'` -c -o ${BINOWN} -g ${BINGRP}" \
  	    ac_given_INSTALL="`${TYPE} ${INSTALL} | ${AWK} '{ print $$NF }'` -c -o ${BINOWN} -g ${BINGRP}" \
  	    INSTALL_DATA="${INSTALL_DATA}" \
--- 1480,1488 ----
  		  ${SCRIPTDIR}/configure; \
  	fi
  .if defined(HAS_CONFIGURE)
! 	${_PKG_SILENT}${_PKG_DEBUG}cd ${WRKSRC} && ${SETENV} \
! 	    CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \
! 	    CXX="${CXX}" ac_cv_path_CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \
  	    INSTALL="`${TYPE} ${INSTALL} | ${AWK} '{ print $$NF }'` -c -o ${BINOWN} -g ${BINGRP}" \
  	    ac_given_INSTALL="`${TYPE} ${INSTALL} | ${AWK} '{ print $$NF }'` -c -o ${BINOWN} -g ${BINGRP}" \
  	    INSTALL_DATA="${INSTALL_DATA}" \


--------------C9D4C16A72EDBE16E3B2F573--