diff --git a/devel/vxlog/Makefile b/devel/vxlog/Makefile index bee59fb1bfd8..4fa2d0d596e9 100644 --- a/devel/vxlog/Makefile +++ b/devel/vxlog/Makefile @@ -1,24 +1,20 @@ PORTNAME= vxlog PORTVERSION= 1.0.3 PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://bitbucket.org/klepa/vxlog/downloads/ \ SF/${PORTNAME} MAINTAINER= konstantin.lepa@gmail.com COMMENT= C++ logging library WWW= https://sourceforge.net/projects/vxlog/ -DEPRECATED= BROKEN for more than a year -EXPIRATION_DATE= 2023-11-30 -BROKEN= does not build: fatal error: 'tr1/memory' file not found - LICENSE= MIT LICENSE_FILE= ${WRKSRC}/doc/COPYING.txt USES= cmake USE_LDCONFIG= yes CMAKE_ARGS+= -DTESTING:BOOL=OFF .include diff --git a/devel/vxlog/files/patch-src__vxlog__outputter-interface.h b/devel/vxlog/files/patch-src__vxlog__outputter-interface.h index 12b90d16a8de..965aa66aaecf 100644 --- a/devel/vxlog/files/patch-src__vxlog__outputter-interface.h +++ b/devel/vxlog/files/patch-src__vxlog__outputter-interface.h @@ -1,14 +1,23 @@ ---- src/vxlog/outputter-interface.h.orig 2010-10-18 17:23:04.000000000 +0400 -+++ src/vxlog/outputter-interface.h 2014-12-12 03:46:20.000000000 +0300 -@@ -37,7 +37,11 @@ +--- src/vxlog/outputter-interface.h.orig 2010-10-18 13:23:04 UTC ++++ src/vxlog/outputter-interface.h +@@ -23,7 +23,7 @@ + #ifndef VOLVOX_VXLOG_OUTPUTTER_INTERFACE_H_ + #define VOLVOX_VXLOG_OUTPUTTER_INTERFACE_H_ + +-#include ++#include + #include "vxlog/level.h" + + namespace vxlog { +@@ -37,7 +37,11 @@ class OutputterInterface { virtual void Flush() = 0; }; +#ifdef _LIBCPP_VERSION +typedef std::shared_ptr SharedOutputterPtr; +#else typedef std::tr1::shared_ptr SharedOutputterPtr; +#endif } // namespace vxlog