svn commit: r302303 - in head/sysutils/goaccess: . files

Sofian Brabez sbz at FreeBSD.org
Wed Aug 8 18:36:58 UTC 2012


Author: sbz
Date: Wed Aug  8 18:36:57 2012
New Revision: 302303
URL: http://svn.freebsd.org/changeset/ports/302303

Log:
  - Update to 0.5

Added:
  head/sysutils/goaccess/files/patch-commons.h   (contents, props changed)
  head/sysutils/goaccess/files/patch-gmenu.c   (contents, props changed)
Modified:
  head/sysutils/goaccess/Makefile   (contents, props changed)
  head/sysutils/goaccess/distinfo   (contents, props changed)
  head/sysutils/goaccess/files/patch-util.c   (contents, props changed)

Modified: head/sysutils/goaccess/Makefile
==============================================================================
--- head/sysutils/goaccess/Makefile	Wed Aug  8 18:26:40 2012	(r302302)
+++ head/sysutils/goaccess/Makefile	Wed Aug  8 18:36:57 2012	(r302303)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	goaccess
-PORTVERSION=	0.4.2
+PORTVERSION=	0.5
 CATEGORIES=	sysutils
 MASTER_SITES=	SF
 MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTVERSION}/
@@ -14,12 +14,12 @@ MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTVE
 MAINTAINER=	sbz at FreeBSD.org
 COMMENT=	Real-time Apache web log analyzer
 
-LIB_DEPENDS=	glib-2.0:${PORTSDIR}/devel/glib20 \
-		GeoIP.5:${PORTSDIR}/net/GeoIP
-
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+LIB_DEPENDS=	glib-2.0:${PORTSDIR}/devel/glib20 \
+		GeoIP:${PORTSDIR}/net/GeoIP
+
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 

Modified: head/sysutils/goaccess/distinfo
==============================================================================
--- head/sysutils/goaccess/distinfo	Wed Aug  8 18:26:40 2012	(r302302)
+++ head/sysutils/goaccess/distinfo	Wed Aug  8 18:36:57 2012	(r302303)
@@ -1,2 +1,2 @@
-SHA256 (goaccess-0.4.2.tar.gz) = 853bd73bed30c91f4d2c5d9f8dca22930c75b058e519b90b492d744a49dd5bc8
-SIZE (goaccess-0.4.2.tar.gz) = 118353
+SHA256 (goaccess-0.5.tar.gz) = beabad8267099d693cf2f0a6f533ecf5b5bdcc829b4536ec56b4a68b2c7d5e0e
+SIZE (goaccess-0.5.tar.gz) = 127068

Added: head/sysutils/goaccess/files/patch-commons.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/goaccess/files/patch-commons.h	Wed Aug  8 18:36:57 2012	(r302303)
@@ -0,0 +1,14 @@
+--- ./commons.h.orig	2012-06-04 04:16:26.000000000 +0200
++++ ./commons.h	2012-08-08 20:30:36.000000000 +0200
+@@ -35,6 +35,11 @@
+ #ifndef COMMONS_H_INCLUDED
+ #define COMMONS_H_INCLUDED
+ 
++/* off_t need sys/types.h on 7.x */
++#if __FreeBSD_cc_version_ < 700022
++#include <sys/types.h>
++#endif
++
+ /* Remove the __attribute__ stuff when the compiler is not GCC. */
+ #if !__GNUC__
+ #  define __attribute__(x) /**/

Added: head/sysutils/goaccess/files/patch-gmenu.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/goaccess/files/patch-gmenu.c	Wed Aug  8 18:36:57 2012	(r302303)
@@ -0,0 +1,14 @@
+--- ./gmenu.c.orig	2012-08-08 20:30:06.000000000 +0200
++++ ./gmenu.c	2012-08-08 20:30:23.000000000 +0200
+@@ -24,6 +24,11 @@
+ #include <stdlib.h>
+ #include <string.h>
+ 
++/* off_t need sys/types.h on 7.x */
++#if __FreeBSD_cc_version_ < 700022
++#include <sys/types.h>
++#endif
++
+ #include "gmenu.h"
+ #include "error.h"
+ #include "util.h"

Modified: head/sysutils/goaccess/files/patch-util.c
==============================================================================
--- head/sysutils/goaccess/files/patch-util.c	Wed Aug  8 18:26:40 2012	(r302302)
+++ head/sysutils/goaccess/files/patch-util.c	Wed Aug  8 18:36:57 2012	(r302303)
@@ -1,10 +1,22 @@
---- ./util.c.orig	2011-05-11 20:12:27.000000000 +0200
-+++ ./util.c	2011-05-11 20:12:53.000000000 +0200
-@@ -32,6 +32,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <sys/socket.h>
- #include <sys/stat.h>
- #include <sys/types.h>
+--- ./util.c.orig	2012-06-04 04:16:26.000000000 +0200
++++ ./util.c	2012-08-08 20:30:36.000000000 +0200
+@@ -28,7 +28,7 @@
+ #define _XOPEN_SOURCE 700
+ 
+ #ifdef __FreeBSD__
+-#include <sys/socket.h>
++#include <netinet/in.h>
+ #endif
+ 
+ #include <arpa/inet.h>
+@@ -44,9 +44,9 @@
  #include <time.h>
+ #include <unistd.h>
+ 
+-#include "util.h"
+ #include "commons.h"
+ #include "error.h"
++#include "util.h"
+ 
+ /* helper functions */
+ char *



More information about the svn-ports-all mailing list