Sorry, after removing patches directory, cvs diff didn't generate patch for removed files:
Index: Makefile =================================================================== RCS file: /cvs/ports/net/toxcore/Makefile,v retrieving revision 1.1.1.1 diff -u -p -u -p -r1.1.1.1 Makefile --- Makefile 29 Apr 2018 11:14:09 -0000 1.1.1.1 +++ Makefile 25 Jun 2018 23:31:13 -0000 @@ -2,14 +2,14 @@ COMMENT = Tox client library -V = 0.2.2 +V = 0.2.3 DISTNAME = toxcore-$V GH_ACCOUNT = TokTok GH_PROJECT = c-toxcore GH_TAGNAME = v$V -SHARED_LIBS += toxcore 0.0 # 0.0 +SHARED_LIBS += toxcore 0.1 # 0.1 CATEGORIES = net telephony HOMEPAGE = https://tox.chat/ Index: distinfo =================================================================== RCS file: /cvs/ports/net/toxcore/distinfo,v retrieving revision 1.1.1.1 diff -u -p -u -p -r1.1.1.1 distinfo --- distinfo 29 Apr 2018 11:14:09 -0000 1.1.1.1 +++ distinfo 25 Jun 2018 23:31:13 -0000 @@ -1,2 +1,2 @@ -SHA256 (toxcore-0.2.2.tar.gz) = o7Jdi9krlSa0e6H2CiiT0hVKgLt65pD0S1ot6kHHbqE= -SIZE (toxcore-0.2.2.tar.gz) = 463402 +SHA256 (toxcore-0.2.3.tar.gz) = IsUvKGxG0/gC7baXi88qU/gwE2Pit0V4RhNCejO6OjQ= +SIZE (toxcore-0.2.3.tar.gz) = 471336 Index: patches/patch-CMakeLists_txt =================================================================== RCS file: patches/patch-CMakeLists_txt diff -N patches/patch-CMakeLists_txt --- patches/patch-CMakeLists_txt 29 Apr 2018 11:14:09 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,38 +0,0 @@ -$OpenBSD: patch-CMakeLists_txt,v 1.1.1.1 2018/04/29 11:14:09 landry Exp $ - -Index: CMakeLists.txt ---- CMakeLists.txt.orig -+++ CMakeLists.txt -@@ -62,6 +62,18 @@ if(APPLE) - include(MacRpath) - endif() - -+if(UNIX) -+ if(CMAKE_SYSTEM_NAME MATCHES ".*Linux") -+ set(LINUX TRUE) -+ elseif(CMAKE_SYSTEM_NAME MATCHES "kOpenBSD.*|OpenBSD.*") -+ set(OPENBSD TRUE) -+ elseif(CMAKE_SYSTEM_NAME MATCHES "kNetBSD.*|NetBSD.*") -+ set(NETBSD TRUE) -+ elseif(CMAKE_SYSTEM_NAME MATCHES "kFreeBSD.*|FreeBSD.*") -+ set(FREEBSD TRUE) -+ endif() -+endif() -+ - enable_testing() - - set(CMAKE_MACOSX_RPATH ON) -@@ -184,10 +196,10 @@ if(ASAN) - else() - # Forbid undefined symbols in shared libraries. This is incompatible with - # asan, so it's in the else branch here. -- if(APPLE) -- add_dllflag("-undefined error") -- else() -+ if(LINUX) - add_dllflag("-Wl,-z,defs") -+ else() -+ add_dllflag("-undefined error") - endif() - endif() - Index: patches/patch-toxcore_ccompat_h =================================================================== RCS file: patches/patch-toxcore_ccompat_h diff -N patches/patch-toxcore_ccompat_h --- patches/patch-toxcore_ccompat_h 29 Apr 2018 11:14:09 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,22 +0,0 @@ -$OpenBSD: patch-toxcore_ccompat_h,v 1.1.1.1 2018/04/29 11:14:09 landry Exp $ - -Index: toxcore/ccompat.h ---- toxcore/ccompat.h.orig -+++ toxcore/ccompat.h -@@ -22,13 +22,13 @@ - // Emulation using alloca. - #ifdef _WIN32 - #include <malloc.h> --#elif defined(__FreeBSD__) -+#elif defined(__linux__) -+#include <alloca.h> -+#else - #include <stdlib.h> - #if !defined(alloca) && defined(__GNUC__) - #define alloca __builtin_alloca - #endif --#else --#include <alloca.h> - #endif - - #define VLA(type, name, size) \