From owner-freebsd-ports Sat Mar 16 19:50:14 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B268C37B419 for ; Sat, 16 Mar 2002 19:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H3o1e36625; Sat, 16 Mar 2002 19:50:01 -0800 (PST) (envelope-from gnats) Received: from infor.ck.tp.edu.tw (infor.ck.tp.edu.tw [203.64.26.200]) by hub.freebsd.org (Postfix) with ESMTP id 97C3937B420 for ; Sat, 16 Mar 2002 19:48:01 -0800 (PST) Received: by infor.ck.tp.edu.tw (Postfix, from userid 1001) id 27A439293; Sun, 17 Mar 2002 11:47:45 +0800 (CST) Message-Id: <20020317034745.27A439293@infor.ck.tp.edu.tw> Date: Sun, 17 Mar 2002 11:47:45 +0800 (CST) From: Li-lun Wang (Leland Wang) Reply-To: Li-lun Wang (Leland Wang) To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/35994: math/atlas does not build on some machines Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35994 >Category: ports >Synopsis: math/atlas does not build on some machines >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 16 19:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Li-lun Wang (Leland Wang) >Release: FreeBSD 4.5-RELEASE-p2 i386 >Organization: National Taiwan University >Environment: System: FreeBSD Athena.infor.org 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #0: Fri Mar 8 19:11:20 CST 2002 root@Athena.infor.org:/usr/obj/usr/src/sys/Athena i386 >Description: math/atlas port uses default answers for the configuration, which makes it unable to build on some machines, e.g. K6-III. The questions asked are different for different archs, and the default answers provided in ${FILESDIR} is not suitable for all archs. Since NO_PACKAGE and NO_CDROM are already defined, I suggest to remove the default answers and define IS_INTERACTIVE to make it happy on all supported archs. >How-To-Repeat: make build the math/atlas port on a AMD K6-III box. >Fix: diff -urN atlas.orig/Makefile atlas/Makefile --- atlas.orig/Makefile Fri Mar 15 11:53:15 2002 +++ atlas/Makefile Sun Mar 17 11:26:21 2002 @@ -16,16 +16,17 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/liblapack.a:${PORTSDIR}/math/lapack +IS_INTERACTIVE= yes USE_BZIP2= yes WRKSRC= ${WRKDIR}/ATLAS NO_PACKAGE= "It is better to compile at the target machine." NO_CDROM= "It is better to compile at the target machine." do-configure: - @(cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} config < ${FILESDIR}/answer) + @(cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} config) do-build: - (cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} install arch=FreeBSD_GENERIC) + (cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} install arch=`cat ${WRKSRC}/ARCHNAME`) (cd ${WRKSRC}; ${MKDIR} tmp ; \ ${CP} ${LOCALBASE}/lib/liblapack.a tmp ;\ cd tmp ;\ diff -urN atlas.orig/files/answer atlas/files/answer --- atlas.orig/files/answer Fri Mar 15 11:53:15 2002 +++ atlas/files/answer Thu Jan 1 08:00:00 1970 @@ -1,9 +0,0 @@ - - - - - -FreeBSD_GENERIC - - - diff -urN atlas.orig/files/patch-aa atlas/files/patch-aa --- atlas.orig/files/patch-aa Fri Mar 15 11:53:15 2002 +++ atlas/files/patch-aa Sun Mar 17 11:22:08 2002 @@ -1,5 +1,5 @@ ---- config.c.orig Sat Feb 2 11:57:44 2002 -+++ config.c Sun Mar 3 16:28:41 2002 +--- config.c.orig Sat Feb 2 10:57:44 2002 ++++ config.c Sun Mar 17 11:19:00 2002 @@ -2050,6 +2050,7 @@ if (!CmndOneLine(targ, "sysctl hw.model", ln)) { @@ -8,3 +8,13 @@ else if (strstr(ln, "Pentium III")) mach = IntPIII; else if (strstr(ln, "Pentium II ")) mach = IntPII; else if (strstr(ln, "Athlon")) mach = AmdAthlon; +@@ -3018,6 +3019,9 @@ + } + if (USEWINF77) strcpy(F77, "$(BINdir)/winf77.exe"); + ++ fpout = fopen("ARCHNAME", "w"); ++ fprintf(fpout, "%s", ARCH); ++ fclose(fpout); + ATL_mprintf(2, fplog, stdout,"\nCreating make include file Make.%s\n", ARCH); + sprintf(ln, "Make.%s", ARCH); + fpout = fopen(ln, "w"); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message