diff options
author | tg <tg@FreeBSD.org> | 1999-07-30 14:12:53 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1999-07-30 14:12:53 +0000 |
commit | 60df73c0e5a84eb88f2221197890a3520b13682a (patch) | |
tree | f29d5c7bba4b7792a7e3accf8709c78f635dcb74 /math | |
parent | 9de7dc5950da27c306a15f33b0625dee7cf7afe8 (diff) | |
download | FreeBSD-ports-60df73c0e5a84eb88f2221197890a3520b13682a.zip FreeBSD-ports-60df73c0e5a84eb88f2221197890a3520b13682a.tar.gz |
New port netcdf. The NetCDF (network Common Data Form) is a library
supporting the creation, access, and sharing of scientific data.
Diffstat (limited to 'math')
-rw-r--r-- | math/netcdf/Makefile | 37 | ||||
-rw-r--r-- | math/netcdf/distinfo | 1 | ||||
-rw-r--r-- | math/netcdf/pkg-comment | 1 | ||||
-rw-r--r-- | math/netcdf/pkg-descr | 9 | ||||
-rw-r--r-- | math/netcdf/pkg-plist | 15 |
5 files changed, 63 insertions, 0 deletions
diff --git a/math/netcdf/Makefile b/math/netcdf/Makefile new file mode 100644 index 0000000..451f282 --- /dev/null +++ b/math/netcdf/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: netcdf +# Version required: 3.5-beta1 +# Date created: 29 July 1999 +# Whom: Thomas Gellekum <tg@FreeBSD.org> +# +# $Id$ +# + +DISTNAME= netcdf-3.5-beta1 +PKGNAME= netcdf-3.5b1 +CATEGORIES= math +MASTER_SITES= ftp://unidata.ucar.edu/pub/netcdf/ +EXTRACT_SUFX= .tar.Z + +MAINTAINER= ports@FreeBSD.org + +WRKSRC= ${WRKDIR}/netcdf-3.5/src +GNU_CONFIGURE= yes +CONFIGURE_ENV= CFLAGS="${CFLAGS} -fPIC -DPIC -Df2cFortran" + +MAN1= ncdump.1 ncgen.1 +MAN3= netcdf.3 netcdf.3f + +post-build: + @(cd ${WRKSRC}/libsrc && \ + ${SETENV} ${MAKE_ENV} ${MAKE} linux_shared_library) + @(cd ${WRKSRC}/cxx && \ + ${SETENV} ${MAKE_ENV} ${MAKE} linux_shared_library) + +post-install: + ${INSTALL_DATA} ${WRKSRC}/libsrc/libnetcdf.so ${PREFIX}/lib/libnetcdf.so.1 + ${LN} -sf ${PREFIX}/lib/libnetcdf.so.1 ${PREFIX}/lib/libnetcdf.so + ${INSTALL_DATA} ${WRKSRC}/cxx/libnetcdf_c++.so ${PREFIX}/lib/libnetcdf_c++.so.1 + ${LN} -sf ${PREFIX}/lib/libnetcdf_c++.so.1 ${PREFIX}/lib/libnetcdf_c++.so + ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib + +.include <bsd.port.mk> diff --git a/math/netcdf/distinfo b/math/netcdf/distinfo new file mode 100644 index 0000000..029b23c --- /dev/null +++ b/math/netcdf/distinfo @@ -0,0 +1 @@ +MD5 (netcdf-3.5-beta1.tar.Z) = 4f001ce27ecb5af3194530e41304b33d diff --git a/math/netcdf/pkg-comment b/math/netcdf/pkg-comment new file mode 100644 index 0000000..fa7d4e6a --- /dev/null +++ b/math/netcdf/pkg-comment @@ -0,0 +1 @@ +Library for machine-independent, array-oriented data access. diff --git a/math/netcdf/pkg-descr b/math/netcdf/pkg-descr new file mode 100644 index 0000000..a8ab966 --- /dev/null +++ b/math/netcdf/pkg-descr @@ -0,0 +1,9 @@ +NetCDF (network Common Data Form) is an interface for array-oriented +data access and a library that provides an implementation of the +interface. The netCDF library also defines a machine-independent +format for representing scientific data. Together, the interface, +library, and format support the creation, access, and sharing of +scientific data. The netCDF software was developed at the Unidata +Program Center in Boulder, Colorado. + +WWW: http://www.unidata.ucar.edu/packages/netcdf/ diff --git a/math/netcdf/pkg-plist b/math/netcdf/pkg-plist new file mode 100644 index 0000000..1d84bd6 --- /dev/null +++ b/math/netcdf/pkg-plist @@ -0,0 +1,15 @@ +bin/ncdump +bin/ncgen +include/ncvalues.h +include/netcdf.h +include/netcdf.hh +include/netcdf.inc +include/netcdfcpp.h +lib/libnetcdf.a +lib/libnetcdf.so +lib/libnetcdf.so.1 +lib/libnetcdf_c++.a +lib/libnetcdf_c++.so +lib/libnetcdf_c++.so.1 +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R |