From owner-svn-ports-head@freebsd.org Fri May 13 22:30:16 2016 Return-Path: Delivered-To: svn-ports-head@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 EBDA2B3A009; Fri, 13 May 2016 22:30:16 +0000 (UTC) (envelope-from bapt@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 A37271A79; Fri, 13 May 2016 22:30:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4DMUFUP026898; Fri, 13 May 2016 22:30:15 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4DMUFff026894; Fri, 13 May 2016 22:30:15 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201605132230.u4DMUFff026894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 13 May 2016 22:30:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415157 - in head/devel: . openmp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 May 2016 22:30:17 -0000 Author: bapt Date: Fri May 13 22:30:15 2016 New Revision: 415157 URL: https://svnweb.freebsd.org/changeset/ports/415157 Log: Add a standalone version of llvm openmp Added: head/devel/openmp/ head/devel/openmp/Makefile (contents, props changed) head/devel/openmp/distinfo (contents, props changed) head/devel/openmp/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 13 21:53:17 2016 (r415156) +++ head/devel/Makefile Fri May 13 22:30:15 2016 (r415157) @@ -1618,6 +1618,7 @@ SUBDIR += opencl SUBDIR += opencvs SUBDIR += opengrok + SUBDIR += openmp SUBDIR += openocd SUBDIR += openvex SUBDIR += openwince-include Added: head/devel/openmp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/openmp/Makefile Fri May 13 22:30:15 2016 (r415157) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= openmp +PORTVERSION= 3.8.0 +DISTVERSIONSUFFIX= .src +CATEGORIES= devel +MASTER_SITES= http://llvm.org/releases/${PORTVERSION}/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Support for the OpenMP language + +LICENSE= MIT + +USES= tar:xz cmake +USE_LDCONFIG= yes +ONLY_FOR_ARCHS= i386 amd64 +PLIST_FILES= include/omp.h \ + lib/libgomp.so \ + lib/libiomp5.so \ + lib/libomp.so + +.include Added: head/devel/openmp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/openmp/distinfo Fri May 13 22:30:15 2016 (r415157) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463177726 +SHA256 (openmp-3.8.0.src.tar.xz) = 92510e3f62e3de955e3a0b6708cebee1ca344d92fb02369cba5fdd5c68f773a0 +SIZE (openmp-3.8.0.src.tar.xz) = 2233144 Added: head/devel/openmp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/openmp/pkg-descr Fri May 13 22:30:15 2016 (r415157) @@ -0,0 +1,11 @@ +The OpenMP subproject of LLVM contains the components required to build an +executable OpenMP program that are outside the compiler itself. + +Here you can find : + + * the code for the runtime library against which code compiled by clang + -fopenmp must be linked before it can run. + * the library that supports offload to target devices (in "offload") + * the OpenUH test-suite used to validate the OpenMP runtime + +WWW: http://openmp.llvm.org/