summaryrefslogtreecommitdiff
path: root/science/netcdf4
diff options
context:
space:
mode:
Diffstat (limited to 'science/netcdf4')
-rw-r--r--science/netcdf4/Makefile38
-rw-r--r--science/netcdf4/distinfo1
-rw-r--r--science/netcdf4/files/patch-aa19
-rw-r--r--science/netcdf4/files/patch-ncvalues.cpp25
-rw-r--r--science/netcdf4/files/patch-netcdfcpp.h29
-rw-r--r--science/netcdf4/pkg-comment1
-rw-r--r--science/netcdf4/pkg-descr9
-rw-r--r--science/netcdf4/pkg-plist13
8 files changed, 0 insertions, 135 deletions
diff --git a/science/netcdf4/Makefile b/science/netcdf4/Makefile
deleted file mode 100644
index 090758cd7b30..000000000000
--- a/science/netcdf4/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-# New ports collection makefile for: netcdf
-# Date created: 29 July 1999
-# Whom: Thomas Gellekum <tg@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= netcdf
-PORTVERSION= 3.5.0
-CATEGORIES= math
-MASTER_SITES= ftp://unidata.ucar.edu/pub/netcdf/
-#DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/-beta/}
-EXTRACT_SUFX= .tar.Z
-
-MAINTAINER= ports@FreeBSD.org
-
-WRKSRC= ${WRKDIR}/${DISTNAME}/src
-
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= CPPFLAGS="-fPIC -DPIC -Df2cFortran"
-INSTALLS_SHLIB= yes
-
-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 libnetcdf.so.1 ${PREFIX}/lib/libnetcdf.so
- ${INSTALL_DATA} ${WRKSRC}/cxx/libnetcdf_c++.so ${PREFIX}/lib/libnetcdf_c++.so.1
- ${LN} -sf libnetcdf_c++.so.1 ${PREFIX}/lib/libnetcdf_c++.so
-
-.include <bsd.port.mk>
diff --git a/science/netcdf4/distinfo b/science/netcdf4/distinfo
deleted file mode 100644
index 35e68c0e47e7..000000000000
--- a/science/netcdf4/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (netcdf-3.5.0.tar.Z) = 28640a40a44f982f90f5eeb15e917a1f
diff --git a/science/netcdf4/files/patch-aa b/science/netcdf4/files/patch-aa
deleted file mode 100644
index 43324e78712d..000000000000
--- a/science/netcdf4/files/patch-aa
+++ /dev/null
@@ -1,19 +0,0 @@
---- rules.make.orig Mon Mar 12 22:31:55 2001
-+++ rules.make Mon Apr 30 14:02:44 2001
-@@ -145,14 +145,8 @@
- cp $(MANUAL) $@
- $(MANDIR)/man3/$(MANUAL): $(MANDIR)/man3 $(MANUAL)
- cp $(MANUAL) $@
--$(MANDIR)/man3f/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL) \
-- $(MANDIR)/man3f
-- rm -f $@
-- ln -s $(MANDIR)/man3/$(MANUAL) $@
--$(MANDIR)/man3f90/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL) \
-- $(MANDIR)/man3f90
-- rm -f $@
-- ln -s $(MANDIR)/man3/$(MANUAL) $@
-+$(MANDIR)/man3f/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL)
-+$(MANDIR)/man3f90/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL)
-
- ################################################################################
- # Cleanup:
diff --git a/science/netcdf4/files/patch-ncvalues.cpp b/science/netcdf4/files/patch-ncvalues.cpp
deleted file mode 100644
index 7dbb0bca2d02..000000000000
--- a/science/netcdf4/files/patch-ncvalues.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
---- cxx/ncvalues.cpp.orig Wed Dec 23 02:21:49 1998
-+++ cxx/ncvalues.cpp Tue Oct 1 10:27:32 2002
-@@ -310,7 +310,11 @@
- os << the_values[i] << ", ";
- if (the_number > 0)
- os << the_values[the_number-1] ;
-+#if (__GNUC__ == 2)
- os.flags(save);
-+#else
-+ os.flags(std::_Ios_Fmtflags(save));
-+#endif
- return os;
- }
-
-@@ -322,6 +326,10 @@
- os << the_values[i] << ", ";
- if (the_number > 0)
- os << the_values[the_number-1];
-+#if (__GNUC__ == 2)
- os.flags(save);
-+#else
-+ os.flags(std::_Ios_Fmtflags(save));
-+#endif
- return os;
- }
diff --git a/science/netcdf4/files/patch-netcdfcpp.h b/science/netcdf4/files/patch-netcdfcpp.h
deleted file mode 100644
index 5d6747ad105b..000000000000
--- a/science/netcdf4/files/patch-netcdfcpp.h
+++ /dev/null
@@ -1,29 +0,0 @@
---- cxx/netcdfcpp.h.orig Mon Sep 16 16:25:44 2002
-+++ cxx/netcdfcpp.h Mon Sep 16 16:26:23 2002
-@@ -154,7 +154,7 @@
- virtual ~NcDim( void );
-
- // to construct dimensions, since constructor is private
-- friend NcFile;
-+ friend class NcFile;
- };
-
-
-@@ -357,7 +357,7 @@
- void init_cur( void );
-
- // to make variables, since constructor is private
-- friend NcFile;
-+ friend class NcFile;
- };
-
-
-@@ -388,7 +388,7 @@
- NcAtt( NcFile*, NcToken); // global attribute
-
- // To make attributes, since constructor is private
-- friend NcFile;
-+ friend class NcFile;
- friend NcAtt* NcVar::get_att( NcToken ) const;
- };
-
diff --git a/science/netcdf4/pkg-comment b/science/netcdf4/pkg-comment
deleted file mode 100644
index 15d74d212321..000000000000
--- a/science/netcdf4/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Library for machine-independent, array-oriented data access
diff --git a/science/netcdf4/pkg-descr b/science/netcdf4/pkg-descr
deleted file mode 100644
index a8ab96607da6..000000000000
--- a/science/netcdf4/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-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/science/netcdf4/pkg-plist b/science/netcdf4/pkg-plist
deleted file mode 100644
index 34c2fa05a1a9..000000000000
--- a/science/netcdf4/pkg-plist
+++ /dev/null
@@ -1,13 +0,0 @@
-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