Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Jan 2003 08:30:06 -0800 (PST)
From:      "Simon 'corecode' Schubert" <corecode@corecode.ath.cx>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/47041: [BENTO FIX]
Message-ID:  <200301141630.h0EGU6iR058127@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/47041; it has been noted by GNATS.

From: "Simon 'corecode' Schubert" <corecode@corecode.ath.cx>
To: Chris Knight <chris@aims.com.au>
Cc: FreeBSD-gnats-submit@FreeBSD.org
Subject: Re: ports/47041: [BENTO FIX]
Date: Tue, 14 Jan 2003 17:28:31 +0100

 --=.wq:9xcSLpi,b+4
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: 7bit
 
 Lately Chris Knight told:
 
 > >Description:
 > courier's configure stage looks for c_rehash in the rootcerts subdirectory.
 > c_rehash is a perl script that is included in the OpenSSl distribution.
 > c_rehash got ripped from 5.x as part of the perl cleanup.
 > So, the quickest fix is to make courier depend on the OpenSSL port.
 > There is a better way of doing this, but in its absence is this :-)
 
 very bad idea. look into ${SCRIPTDIR}, there it is: c_rehash
 
 now just use that:
 
 Index: Makefile
 ===================================================================
 RCS file: /home/ncvs/ports/mail/courier/Makefile,v
 retrieving revision 1.11
 diff -u -r1.11 Makefile
 --- Makefile	21 Aug 2002 01:53:42 -0000	1.11
 +++ Makefile	14 Jan 2003 16:18:11 -0000
 @@ -74,7 +74,8 @@
  		--with-calendardir=${CALENDIR} \
  		--with-default-maildrop=${MAILDROPDEFAULT} \
  		--enable-workarounds-for-imap-client-bugs
 -CONFIGURE_ENV=	PATH="${PATH}:${SCRIPTDIR}"
 +
 +PATH:=		${PATH}:${SCRIPTDIR}
  
  # Respect the make.conf(5) NOUUCP setting
  WITH_TRANSPORT=	local esmtp dsn
 
 
 explanation: bsd.ports.mk passes PATH anyways in CONFIGURE_ENV. passing
 it two times is not a good idea. env(1) uses the later occurance and
 thus path is not set appropriately. fix this by modifying ${PATH}
 
 cheers
   simon
 
 -- 
 /"\   http://corecode.ath.cx/#donate
 \ /
  \     ASCII Ribbon Campaign
 / \  Against HTML Mail and News
 
 --=.wq:9xcSLpi,b+4
 Content-Type: application/pgp-signature
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.1 (FreeBSD)
 
 iD8DBQE+JDqyr5S+dk6z85oRAhIuAJ470oA8VfxKYkGHQO9+wWdzEtA0rwCcDY/6
 NwULtUSuRN3fhLy2J3sWcDY=
 =tL1G
 -----END PGP SIGNATURE-----
 
 --=.wq:9xcSLpi,b+4--

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200301141630.h0EGU6iR058127>