From owner-svn-ports-branches@freebsd.org Sun Nov 6 05:19:44 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA0DBC30540; Sun, 6 Nov 2016 05:19:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96426B05; Sun, 6 Nov 2016 05:19:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA65JhI2075367; Sun, 6 Nov 2016 05:19:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA65JhvF075366; Sun, 6 Nov 2016 05:19:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611060519.uA65JhvF075366@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 6 Nov 2016 05:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425463 - in branches/2016Q4/devel/openmp: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 05:19:44 -0000 Author: jbeich Date: Sun Nov 6 05:19:43 2016 New Revision: 425463 URL: https://svnweb.freebsd.org/changeset/ports/425463 Log: MFH: r424391 r425461 devel/openmp: minor cleanup - Unbreak on 9.x: needs lang/gcc for - Define LICENSE_FILE - Simplify SOVERSION fix - Move ONLY_FOR_ARCHS to be more visible - Sort USES Approved by: portmgr blanket Approved by: ports-secteam blanket Added: branches/2016Q4/devel/openmp/files/ - copied from r425461, head/devel/openmp/files/ Modified: branches/2016Q4/devel/openmp/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/openmp/Makefile ============================================================================== --- branches/2016Q4/devel/openmp/Makefile Sun Nov 6 04:32:55 2016 (r425462) +++ branches/2016Q4/devel/openmp/Makefile Sun Nov 6 05:19:43 2016 (r425463) @@ -10,20 +10,17 @@ MAINTAINER= bapt@FreeBSD.org COMMENT= Support for the OpenMP language LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= tar:xz cmake perl5 compiler:c11 +ONLY_FOR_ARCHS= amd64 # i386 + +USES= cmake compiler:c++11-lib perl5 tar:xz USE_PERL5= build USE_LDCONFIG= yes -CMAKE_ARGS= -DLIBOMP_LIBFLAGS:STRING="-Wl,-soname,libomp.so.0" -ONLY_FOR_ARCHS= amd64 # i386 PLIST_FILES= include/omp.h \ lib/libgomp.so \ lib/libiomp5.so \ lib/libomp.so.0 \ lib/libomp.so -post-install: - ${MV} ${STAGEDIR}${PREFIX}/lib/libomp.so ${STAGEDIR}${PREFIX}/lib/libomp.so.0 - ${LN} -sf libomp.so.0 ${STAGEDIR}${PREFIX}/lib/libomp.so - .include