diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-06 14:16:24 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-06 14:16:24 +0000 |
commit | 857e094afe4f012e4bca5f4e082c102f5960387b (patch) | |
tree | c95fa0702dd7209a2988401c7ff21e45e4a66cc3 /science | |
parent | d7896d335fea2aec52950169a86206063cdee03a (diff) | |
download | ports-857e094afe4f012e4bca5f4e082c102f5960387b.tar.gz ports-857e094afe4f012e4bca5f4e082c102f5960387b.zip |
Notes
Diffstat (limited to 'science')
-rw-r--r-- | science/netcdf/Makefile | 8 | ||||
-rw-r--r-- | science/netcdf/files/patch-ncvalues.h | 20 | ||||
-rw-r--r-- | science/netcdf4/Makefile | 8 | ||||
-rw-r--r-- | science/netcdf4/files/patch-ncvalues.h | 20 |
4 files changed, 42 insertions, 14 deletions
diff --git a/science/netcdf/Makefile b/science/netcdf/Makefile index 1270af16e61c..13a6bf93e48d 100644 --- a/science/netcdf/Makefile +++ b/science/netcdf/Makefile @@ -24,12 +24,6 @@ INSTALLS_SHLIB= yes MAN1= ncdump.1 ncgen.1 MAN3= netcdf.3 netcdf.3f -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 502000 -BROKEN= "Does not compile" -.endif - post-build: @(cd ${WRKSRC}/libsrc && \ ${SETENV} ${MAKE_ENV} ${MAKE} linux_shared_library) @@ -42,4 +36,4 @@ post-install: ${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.post.mk> +.include <bsd.port.mk> diff --git a/science/netcdf/files/patch-ncvalues.h b/science/netcdf/files/patch-ncvalues.h new file mode 100644 index 000000000000..1988e2b8746d --- /dev/null +++ b/science/netcdf/files/patch-ncvalues.h @@ -0,0 +1,20 @@ +--- cxx/ncvalues.h.orig Thu Oct 29 02:10:16 1998 ++++ cxx/ncvalues.h Thu Feb 5 20:51:02 2004 +@@ -14,7 +14,7 @@ + #ifdef STRSTREAM_H_SPEC + # include STRSTREAM_H_SPEC + #else +-# include <strstream.h> ++# include <strstream> + #endif + #include <limits.h> + #include <string.h> +@@ -220,7 +220,7 @@ + char* NcVal(TYPE)::as_string( long n ) const \ + { \ + char* s = new char[32]; \ +- ostrstream ostr(s, sizeof(s)); \ ++ std::ostrstream ostr(s, sizeof(s)); \ + ostr << the_values[n] << ends; \ + return s; \ + } diff --git a/science/netcdf4/Makefile b/science/netcdf4/Makefile index 1270af16e61c..13a6bf93e48d 100644 --- a/science/netcdf4/Makefile +++ b/science/netcdf4/Makefile @@ -24,12 +24,6 @@ INSTALLS_SHLIB= yes MAN1= ncdump.1 ncgen.1 MAN3= netcdf.3 netcdf.3f -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 502000 -BROKEN= "Does not compile" -.endif - post-build: @(cd ${WRKSRC}/libsrc && \ ${SETENV} ${MAKE_ENV} ${MAKE} linux_shared_library) @@ -42,4 +36,4 @@ post-install: ${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.post.mk> +.include <bsd.port.mk> diff --git a/science/netcdf4/files/patch-ncvalues.h b/science/netcdf4/files/patch-ncvalues.h new file mode 100644 index 000000000000..1988e2b8746d --- /dev/null +++ b/science/netcdf4/files/patch-ncvalues.h @@ -0,0 +1,20 @@ +--- cxx/ncvalues.h.orig Thu Oct 29 02:10:16 1998 ++++ cxx/ncvalues.h Thu Feb 5 20:51:02 2004 +@@ -14,7 +14,7 @@ + #ifdef STRSTREAM_H_SPEC + # include STRSTREAM_H_SPEC + #else +-# include <strstream.h> ++# include <strstream> + #endif + #include <limits.h> + #include <string.h> +@@ -220,7 +220,7 @@ + char* NcVal(TYPE)::as_string( long n ) const \ + { \ + char* s = new char[32]; \ +- ostrstream ostr(s, sizeof(s)); \ ++ std::ostrstream ostr(s, sizeof(s)); \ + ostr << the_values[n] << ends; \ + return s; \ + } |