Index: head/sysutils/logstalgia/Makefile =================================================================== --- head/sysutils/logstalgia/Makefile (revision 428063) +++ head/sysutils/logstalgia/Makefile (revision 428064) @@ -1,28 +1,38 @@ # Created by: Emanuel Haupt # $FreeBSD$ PORTNAME= logstalgia -PORTVERSION= 1.0.3 -PORTREVISION= 9 +PORTVERSION= 1.0.7 CATEGORIES= sysutils www -MASTER_SITES= GOOGLE_CODE LOCAL/ehaupt MAINTAINER= ehaupt@FreeBSD.org COMMENT= Website access log visualization tool LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) - -LIB_DEPENDS= libftgl.so:graphics/ftgl \ +BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm +LIB_DEPENDS= libboost_regex.so:devel/boost-libs \ + libfreetype.so:print/freetype2 \ + libpcre.so:devel/pcre \ libpng.so:graphics/png \ - libpcre.so:devel/pcre + libftgl.so:graphics/ftgl +USE_GITHUB= yes +GH_ACCOUNT= acaudwell +GH_PROJECT= Logstalgia:DEFAULT Core:core +GH_TAGNAME= d99bdb2:DEFAULT 83eba3a:core + GNU_CONFIGURE= yes -USES= jpeg pkgconfig -USE_GL= gl glu -USE_SDL= image sdl +USES= autoreconf compiler:c++0x gmake jpeg localbase:ldflags pkgconfig +USE_GL= gl glu glew +USE_SDL= image2 sdl2 -CFLAGS+= -L${LOCALBASE}/lib +post-extract: + @${MV} ${WRKDIR}/Core-83eba3a/* ${WRKSRC}/src/core/ + +post-patch: + @${REINPLACE_CMD} -e 's| -Wno-unused-but-set-variable||' \ + ${WRKSRC}/Makefile.am .include Index: head/sysutils/logstalgia/distinfo =================================================================== --- head/sysutils/logstalgia/distinfo (revision 428063) +++ head/sysutils/logstalgia/distinfo (revision 428064) @@ -1,2 +1,5 @@ -SHA256 (logstalgia-1.0.3.tar.gz) = d3338a9fffb9b60ecb90986c81f27a09a18fa8627b5b884a79c70fee7f6461eb -SIZE (logstalgia-1.0.3.tar.gz) = 841822 +TIMESTAMP = 1481103077 +SHA256 (acaudwell-Logstalgia-1.0.7-d99bdb2_GH0.tar.gz) = 401ddfa4ef9ab72ceed3ee6ddddd0d0b19880542928258c5c325f50010219e80 +SIZE (acaudwell-Logstalgia-1.0.7-d99bdb2_GH0.tar.gz) = 883062 +SHA256 (acaudwell-Core-83eba3a_GH0.tar.gz) = 4c722981d096a1615f9d1b74c10d884ae0174a6e669d1bc6257e4ff07dd2352f +SIZE (acaudwell-Core-83eba3a_GH0.tar.gz) = 86122 Index: head/sysutils/logstalgia/files/patch-src__logentry.h =================================================================== --- head/sysutils/logstalgia/files/patch-src__logentry.h (revision 428063) +++ head/sysutils/logstalgia/files/patch-src__logentry.h (nonexistent) @@ -1,11 +0,0 @@ ---- src/logentry.h.orig 2011-02-15 23:52:06 UTC -+++ src/logentry.h -@@ -41,7 +41,7 @@ public: - void setSuccess(); - void setResponseColour(); - -- long timestamp; -+ time_t timestamp; - - std::string hostname; - std::string vhost; Property changes on: head/sysutils/logstalgia/files/patch-src__logentry.h ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/logstalgia/files/patch-src__logstalgia.cpp =================================================================== --- head/sysutils/logstalgia/files/patch-src__logstalgia.cpp (revision 428063) +++ head/sysutils/logstalgia/files/patch-src__logstalgia.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- src/logstalgia.cpp.orig 2011-02-15 23:52:06 UTC -+++ src/logstalgia.cpp -@@ -392,7 +392,7 @@ std::string Logstalgia::dateAtPosition(f - //display date - char datestr[256]; - -- long timestamp = le.timestamp; -+ time_t timestamp = le.timestamp; - - struct tm* timeinfo = localtime ( ×tamp ); - strftime(datestr, 256, "%H:%M:%S %B %d, %Y", timeinfo); Property changes on: head/sysutils/logstalgia/files/patch-src__logstalgia.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/logstalgia/files/patch-src_core_display.h =================================================================== --- head/sysutils/logstalgia/files/patch-src_core_display.h (nonexistent) +++ head/sysutils/logstalgia/files/patch-src_core_display.h (revision 428064) @@ -0,0 +1,18 @@ +--- src/core/display.h.orig 2016-12-07 11:54:56 UTC ++++ src/core/display.h +@@ -59,7 +59,6 @@ class SDLAppDisplay { + + bool enable_alpha; + bool resizable; +- bool fullscreen; + bool frameless; + bool vsync; + +@@ -71,6 +70,7 @@ class SDLAppDisplay { + void setupExtensions(); + public: + int width, height; ++ bool fullscreen; + int desktop_width, desktop_height; + int windowed_width, windowed_height; + Property changes on: head/sysutils/logstalgia/files/patch-src_core_display.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/sysutils/logstalgia/files/patch-src_logentry.h =================================================================== --- head/sysutils/logstalgia/files/patch-src_logentry.h (nonexistent) +++ head/sysutils/logstalgia/files/patch-src_logentry.h (revision 428064) @@ -0,0 +1,10 @@ +--- src/logentry.h.orig 2015-10-19 22:33:12 UTC ++++ src/logentry.h +@@ -21,6 +21,7 @@ + #include "core/vectors.h" + + #include ++#include + + class LogEntry { + Property changes on: head/sysutils/logstalgia/files/patch-src_logentry.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/sysutils/logstalgia/pkg-descr =================================================================== --- head/sysutils/logstalgia/pkg-descr (revision 428063) +++ head/sysutils/logstalgia/pkg-descr (revision 428064) @@ -1,9 +1,9 @@ Logstalgia is a website traffic visualization that replays or streams web-server access logs as a pong-like battle between the web server and an never ending torrent of requests. Requests appear as colored balls which travel across the screen to arrive at the requested location. Successful requests are hit by the paddle while unsuccessful ones (eg. 404 - File Not Found) are missed and pass through. -WWW: http://code.google.com/p/logstalgia/ +WWW: http://logstalgia.io/