From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 2 11:00:29 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B1BC16A401 for ; Fri, 2 Feb 2007 11:00:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 08A2813C441 for ; Fri, 2 Feb 2007 11:00:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l12B0Sbq007164 for ; Fri, 2 Feb 2007 11:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l12B0SkM007161; Fri, 2 Feb 2007 11:00:28 GMT (envelope-from gnats) Resent-Date: Fri, 2 Feb 2007 11:00:28 GMT Resent-Message-Id: <200702021100.l12B0SkM007161@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, Rene Ladan Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C60016A403 for ; Fri, 2 Feb 2007 10:50:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id EE5E113C467 for ; Fri, 2 Feb 2007 10:50:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l12AoUVI018062 for ; Fri, 2 Feb 2007 10:50:30 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l12AoUP8018061; Fri, 2 Feb 2007 10:50:30 GMT (envelope-from nobody) Message-Id: <200702021050.l12AoUP8018061@www.freebsd.org> Date: Fri, 2 Feb 2007 10:50:30 GMT From: Rene Ladan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/108683: [astro/boinc-setiathome-enhanced] : use libtool & tweak compiler flags X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Feb 2007 11:00:29 -0000 >Number: 108683 >Category: ports >Synopsis: [astro/boinc-setiathome-enhanced] : use libtool & tweak compiler flags >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 02 11:00:28 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Rene Ladan >Release: 7.0 CURRENT i386 >Organization: >Environment: FreeBSD 7.0 CURRENT i386 2007/01/30 >Description: per krismail, add a USE_AUTOTOOLS=libtool:15 to the Makefile to fix building on amd64. Also in the Makefile, decouple the logic to use mfpmath={i387|sse} from the -mARCH logic. This prevents passing " ... -mfpmath=sse ... -mfpmath=387 ... " to the compiler. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/astro/boinc-setiathome-enhanced/Makefile ./Makefile --- /usr/ports/astro/boinc-setiathome-enhanced/Makefile Wed Dec 20 21:04:19 2006 +++ ./Makefile Fri Feb 2 11:37:09 2007 @@ -6,6 +6,7 @@ PORTNAME= boinc-setiathome-enhanced PORTVERSION= 5.13 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= http://home.tiscali.nl/rladan/distfiles/ @@ -18,20 +19,27 @@ LIB_DEPENDS= fftw3f:${PORTSDIR}/math/fftw3-float RUN_DEPENDS= boinc_client:${PORTSDIR}/net/boinc-client +USE_AUTOTOOLS= libtool:15 + # The compiler flags below are copied from m4/optimizations.m4, # leaving out the -march flag which is set by /usr/share/mk/bsd.cpu.mk .if ${MACHINE_CPU:Msse3} -CFLAGS+= -msse3 -mfpmath=sse +CFLAGS+= -msse3 .elif ${MACHINE_CPU:Msse2} -CFLAGS+= -msse2 -mfpmath=sse +CFLAGS+= -msse2 .elif ${MACHINE_CPU:Msse} -CFLAGS+= -msse -mfpmath=sse +CFLAGS+= -msse .endif .if ${MACHINE_CPU:Mmmx} -CFLAGS+= -mmmx -mfpmath=387 +CFLAGS+= -mmmx .endif .ifdef ${MACHINE_CPU:M3dnow} -CFLAGS+= -m3dnow -mfpmath=387 +CFLAGS+= -m3dnow +.endif +.if ${MACHINE_CPU:Msse3} || ${MACHINE_CPU:Msse2} || ${MACHINE_CPU:Msse} +CFLAGS+= -mfpmath=sse +.else +CFLAGS+= -mfpmath=387 .endif # From http://www,lb.shuttle.de/apastron/boincDown.shtml : # what about other 64 bit archs (especially S/390, see gcc.info.gz) ? >Release-Note: >Audit-Trail: >Unformatted: