Index: head/devel/yaml-cpp/Makefile =================================================================== --- head/devel/yaml-cpp/Makefile (revision 449588) +++ head/devel/yaml-cpp/Makefile (revision 449589) @@ -1,26 +1,26 @@ # Created by: Tim Niemueller # $FreeBSD$ PORTNAME= yaml-cpp PORTVERSION= 0.5.3 DISTVERSIONPREFIX= release- -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= madpilot@FreeBSD.org COMMENT= YAML parser and emitter in C++ matching the YAML 1.2 spec LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs RUN_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= jbeder USES= cmake USE_LDCONFIG= yes CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON -DYAML_CPP_BUILD_TOOLS=0 .include Index: head/devel/yaml-cpp/files/patch-include_yaml-cpp_emitter.h =================================================================== --- head/devel/yaml-cpp/files/patch-include_yaml-cpp_emitter.h (nonexistent) +++ head/devel/yaml-cpp/files/patch-include_yaml-cpp_emitter.h (revision 449589) @@ -0,0 +1,11 @@ +--- include/yaml-cpp/emitter.h.orig 2016-01-10 18:11:40 UTC ++++ include/yaml-cpp/emitter.h +@@ -122,7 +122,7 @@ class YAML_CPP_API Emitter : private non + bool CanEmitNewline() const; + + private: +- std::auto_ptr m_pState; ++ std::unique_ptr m_pState; + ostream_wrapper m_stream; + }; + Property changes on: head/devel/yaml-cpp/files/patch-include_yaml-cpp_emitter.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/yaml-cpp/files/patch-include_yaml-cpp_parser.h =================================================================== --- head/devel/yaml-cpp/files/patch-include_yaml-cpp_parser.h (nonexistent) +++ head/devel/yaml-cpp/files/patch-include_yaml-cpp_parser.h (revision 449589) @@ -0,0 +1,13 @@ +--- include/yaml-cpp/parser.h.orig 2016-01-10 18:11:40 UTC ++++ include/yaml-cpp/parser.h +@@ -40,8 +40,8 @@ class YAML_CPP_API Parser : private nonc + void HandleTagDirective(const Token& token); + + private: +- std::auto_ptr m_pScanner; +- std::auto_ptr m_pDirectives; ++ std::unique_ptr m_pScanner; ++ std::unique_ptr m_pDirectives; + }; + } + Property changes on: head/devel/yaml-cpp/files/patch-include_yaml-cpp_parser.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property