From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Mar 7 15:20:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEBAA16A500 for ; Sun, 7 Mar 2004 15:20:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5628043D60 for ; Sun, 7 Mar 2004 15:20:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i27NKLbv012853 for ; Sun, 7 Mar 2004 15:20:21 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i27NKLuO012852; Sun, 7 Mar 2004 15:20:21 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 7 Mar 2004 15:20:21 -0800 (PST) Resent-Message-Id: <200403072320.i27NKLuO012852@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Simon Barner Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB86916A4CE for ; Sun, 7 Mar 2004 15:16:17 -0800 (PST) Received: from mailout1.informatik.tu-muenchen.de (mailout1.informatik.tu-muenchen.de [131.159.0.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A04443D1F for ; Sun, 7 Mar 2004 15:16:17 -0800 (PST) (envelope-from barner@in.tum.de) Received: by zi025.glhnet.mhn.de (Postfix, from userid 1000) id 4027C5AE4; Mon, 8 Mar 2004 00:16:15 +0100 (CET) Message-Id: <20040307231615.4027C5AE4@zi025.glhnet.mhn.de> Date: Mon, 8 Mar 2004 00:16:15 +0100 (CET) From: Simon Barner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/63903: [maintainer] devel/boost: Fix on ia64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simon Barner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Mar 2004 23:20:27 -0000 >Number: 63903 >Category: ports >Synopsis: [maintainer] devel/boost: Fix on ia64 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 07 15:20:21 PST 2004 >Closed-Date: >Last-Modified: >Originator: Simon Barner >Release: FreeBSD 4.9 i386 >Organization: >Environment: System: FreeBSD zi025.glhnet.mhn.de 4.9-STABLE FreeBSD 4.9-STABLE #0: Tue Feb 10 01:57:14 CET 2004 simon@zi025.glhnet.mhn.de:/usr/src/sys/compile/KISTE i386 >Description: According to bento, this port did not build on the ia64 architecture for an obvious reason: The boost's bjam tool is built on an architecure specific location, and the port's Makefile did not know about ia64 yet. This patch fixes this problem (and possibly also on amd64), but since I do not have access to any non i386 FreeBSD machines, I cannot verfiy that. It is also unknown, whether the port builds and actually works ont he named plattforms. >How-To-Repeat: N/A >Fix: --- patch-boost-arch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/boost/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 20 Feb 2004 05:32:21 -0000 1.15 +++ Makefile 7 Mar 2004 23:07:37 -0000 @@ -77,8 +77,10 @@ BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsdaxp/bjam .elif ${ARCH} == sparc64 BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsdsparc/bjam -.else +.elif ${ARCH} == i386 BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsd/bjam +.else +BJAM= ${WRKSRC}/tools/build/jam_src/bin.freebsd${ARCH}/bjam .endif SCRIPTS_ENV+= BJAM="${BJAM}"\ --- patch-boost-arch ends here --- >Release-Note: >Audit-Trail: >Unformatted: