From owner-freebsd-ports@FreeBSD.ORG Fri Apr 2 10:39:00 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DF8E16A4CE for ; Fri, 2 Apr 2004 10:39:00 -0800 (PST) Received: from dppl.com (sapas.dppl.biz [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBD343D2D for ; Fri, 2 Apr 2004 10:38:59 -0800 (PST) (envelope-from yds@CoolRat.org) Received: from bgp431201bgs.union01.nj.comcast.net (bgp431201bgs.union01.nj.comcast.net [68.36.218.39]) (IDENT: WhyDS, AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Fri, 02 Apr 2004 13:38:58 -0500 Date: Fri, 02 Apr 2004 13:38:57 -0500 From: Yarema To: courier-users@lists.sourceforge.net Message-ID: <39500000.1080931137@volyn.coolrat.org> In-Reply-To: References: X-Mailer: Mulberry/3.1.2 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: Sam Varshavchik cc: ports@FreeBSD.org cc: Sander Holthaus - Orange XL cc: Oliver Cope cc: John Saunders Subject: Re: [courier-users] Re: FreeBSD-port Courier forbidden X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Apr 2004 18:39:00 -0000 I just submitted an update to the FreeBSD port of courier bumping it to 0.45.3 I patched around the 'strip' bug by removing 'sharedindexsplit sharedindexinstall' from ${WRKSRC}/courier/Makefile.in on line 250 and installing them using the ${INSTALL_SCRIPT} macro instead of ${INSTALL_STRIP_PROGRAM} in the port's Makefile. One is a perl script the other a bourne shell script, clearly they should not be getting installed with ${INSTALL_STRIP_PROGRAM}. For good measure I ran all the configure scripts through the following: sed -i.bak -e 's:"\${SHELL} \$(install_sh) -c -s":"\${BSD_INSTALL_PROGRAM}":' \ ${WRKSRC}/configure \ ${WRKSRC}/*/configure \ ${WRKSRC}/*/*/configure \ ${WRKSRC}/*/*/*/configure The ${BSD_INSTALL_PROGRAM} macro honors the ${STRIP} variable. So that one could install everything unstripped by running: make STRIP="" install It probably makes no difference, but I prefer using BSD install rather than install.sh to do the dirty work. That's all for now. Those brave enough to apply my patch from ports/PR65093 before it's committed -- enjoy! Let me know if I screwed anything up. -- Yarema http://yds.CoolRat.org