From owner-svn-ports-all@FreeBSD.ORG Tue Apr 29 13:28:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FB8A375; Tue, 29 Apr 2014 13:28:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 4CBE4333; Tue, 29 Apr 2014 13:28:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3TDSXYW048533; Tue, 29 Apr 2014 13:28:33 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3TDSWJE048527; Tue, 29 Apr 2014 13:28:32 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201404291328.s3TDSWJE048527@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 29 Apr 2014 13:28:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352619 - in head/science: . cgribex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 13:28:33 -0000 Author: sunpoet Date: Tue Apr 29 13:28:31 2014 New Revision: 352619 URL: http://svnweb.freebsd.org/changeset/ports/352619 QAT: https://qat.redports.org/buildarchive/r352619/ Log: - Add cgribex 1.6.3 GRIBEX is an interface for encoding and decoding WMO FM-92 GRIB edition 1 messages and some ancillary subroutines for controlling printing and debugging. The GRIBEX software was developed at the European Centre for Medium-range Weather Forecasts (ECMWF) and is part of the EMOS library. EMOS is mostly written in Fortran. Therefore it has only a Fortran interface. CGRIBEX is a lightweight version of GRIBEX written in ANSI C with a portable Fortran interface. For best compatibility some of the C sources were converted from the Fortran GRIBEX version. WWW: https://code.zmaw.de/projects/cgribex Added: head/science/cgribex/ head/science/cgribex/Makefile (contents, props changed) head/science/cgribex/distinfo (contents, props changed) head/science/cgribex/pkg-descr (contents, props changed) head/science/cgribex/pkg-plist (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Tue Apr 29 13:28:25 2014 (r352618) +++ head/science/Makefile Tue Apr 29 13:28:31 2014 (r352619) @@ -27,6 +27,7 @@ SUBDIR += cdf SUBDIR += cdo SUBDIR += cgnslib + SUBDIR += cgribex SUBDIR += checkmol SUBDIR += chemical-mime-data SUBDIR += chemtool Added: head/science/cgribex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/cgribex/Makefile Tue Apr 29 13:28:31 2014 (r352619) @@ -0,0 +1,27 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= cgribex +PORTVERSION= 1.6.3 +CATEGORIES= science +MASTER_SITES= https://code.zmaw.de/attachments/download/7200/ \ + LOCAL/sunpoet + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Lightweight GRIBEX in C with portable Fortran interface + +LICENSE= GPLv2 + +LIB_DEPENDS= libjasper.so:${PORTSDIR}/graphics/jasper \ + libsz.so:${PORTSDIR}/science/szip + +CONFIGURE_ARGS= --with-jasper=${LOCALBASE} \ + --with-szlib=${LOCALBASE} +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USES= libtool + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcgribex.so.0.0.0 + +.include Added: head/science/cgribex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/cgribex/distinfo Tue Apr 29 13:28:31 2014 (r352619) @@ -0,0 +1,2 @@ +SHA256 (cgribex-1.6.3.tar.gz) = 18f197b8113f35323fec3f820ffcee17e737d08d332308b0f6db056a742429c5 +SIZE (cgribex-1.6.3.tar.gz) = 582479 Added: head/science/cgribex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/cgribex/pkg-descr Tue Apr 29 13:28:31 2014 (r352619) @@ -0,0 +1,11 @@ +GRIBEX is an interface for encoding and decoding WMO FM-92 GRIB edition 1 +messages and some ancillary subroutines for controlling printing and debugging. +The GRIBEX software was developed at the European Centre for Medium-range +Weather Forecasts (ECMWF) and is part of the EMOS library. EMOS is mostly +written in Fortran. Therefore it has only a Fortran interface. + +CGRIBEX is a lightweight version of GRIBEX written in ANSI C with a portable +Fortran interface. For best compatibility some of the C sources were converted +from the Fortran GRIBEX version. + +WWW: https://code.zmaw.de/projects/cgribex Added: head/science/cgribex/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/cgribex/pkg-plist Tue Apr 29 13:28:31 2014 (r352619) @@ -0,0 +1,7 @@ +bin/grib +bin/grib2 +include/cgribex.h +lib/libcgribex.a +lib/libcgribex.so +lib/libcgribex.so.0 +lib/libcgribex.so.0.0.0