Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Mar 2021 03:43:39 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r567536 - head/science/qbox
Message-ID:  <202103070343.1273hdUB060344@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Mar  7 03:43:39 2021
New Revision: 567536
URL: https://svnweb.freebsd.org/changeset/ports/567536

Log:
  science/qbox: Remove unnecessary gcc link flags because the project builds with clang
  
  Reported by:	Gerald Pfeifer <gerald@pfeifer.com>

Modified:
  head/science/qbox/Makefile

Modified: head/science/qbox/Makefile
==============================================================================
--- head/science/qbox/Makefile	Sun Mar  7 02:07:48 2021	(r567535)
+++ head/science/qbox/Makefile	Sun Mar  7 03:43:39 2021	(r567536)
@@ -3,6 +3,7 @@
 PORTNAME=	qbox
 DISTVERSIONPREFIX=	rel
 DISTVERSION=	1_73_1
+PORTREVISION=	1
 CATEGORIES=	science
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -14,7 +15,6 @@ LICENSE_FILE=	${WRKSRC}/../COPYING
 LIB_DEPENDS=	libblas.so:math/blas \
 		libcurl.so:ftp/curl \
 		libfftw3.so:math/fftw3 \
-		libgcc_s.so:lang/gcc${GCC_DEFAULT} \
 		liblapack.so:math/lapack \
 		libmpich.so:net/mpich \
 		libscalapack.so:math/scalapack \
@@ -22,15 +22,16 @@ LIB_DEPENDS=	libblas.so:math/blas \
 		libxerces-c.so:textproc/xerces-c3
 
 USES=		compiler:c++11-lang gmake iconv:wchar_t localbase:ldflags
+
 USE_GITHUB=	yes
 GH_ACCOUNT=	qboxcode
 GH_PROJECT=	qbox-public
-ALL_TARGET=	qb
 
 WRKSRC_SUBDIR=	src
 
 MAKE_ARGS=	TARGET=freebsd
-LDFLAGS+=	-Wl,-rpath=${LOCALBASE}/lib/gcc${GCC_DEFAULT} ${LOCALBASE}/lib/gcc${GCC_DEFAULT}/libgcc_s.so
+
+ALL_TARGET=	qb
 
 PLIST_FILES=	bin/qb
 



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