View | Details | Raw Unified | Return to bug 222033 | Differences between
and this patch

Collapse All | Expand All

(-)sysutils/zeitgeist/Makefile (-1 / +3 lines)
Lines 4-9 Link Here
4
4
5
PORTNAME=	zeitgeist
5
PORTNAME=	zeitgeist
6
PORTVERSION=	0.9.16
6
PORTVERSION=	0.9.16
7
PORTREVISION=	1
7
CATEGORIES=	sysutils
8
CATEGORIES=	sysutils
8
MASTER_SITES=	https://launchpad.net/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/${PORTVERSION}/+download/
9
MASTER_SITES=	https://launchpad.net/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/${PORTVERSION}/+download/
9
10
Lines 20-28 Link Here
20
RUN_DEPENDS=	${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg \
21
RUN_DEPENDS=	${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg \
21
		${PYTHON_SITELIBDIR}/dbus/__init__.py:devel/py-dbus
22
		${PYTHON_SITELIBDIR}/dbus/__init__.py:devel/py-dbus
22
23
24
USES=		gmake gettext pathfix python:2 pkgconfig libtool sqlite tar:xz
23
USE_GNOME=	intlhack glib20 introspection:build
25
USE_GNOME=	intlhack glib20 introspection:build
26
USE_LDCONFIG=	yes
24
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
25
USES=		gmake gettext pathfix python:2 pkgconfig libtool sqlite tar:xz
26
CPPFLAGS+=	-I${LOCALBASE}/include
28
CPPFLAGS+=	-I${LOCALBASE}/include
27
LDFLAGS+=	-L${LOCALBASE}/lib
29
LDFLAGS+=	-L${LOCALBASE}/lib
28
INSTALL_TARGET=	install-strip
30
INSTALL_TARGET=	install-strip
(-)sysutils/zeitgeist/distinfo (+1 lines)
Lines 1-2 Link Here
1
TIMESTAMP = 1509207424
1
SHA256 (zeitgeist-0.9.16.tar.xz) = 6ed3e60d0cd82ea58ee134c19beccafac10eb0f71977f3848755dacbf0927d3a
2
SHA256 (zeitgeist-0.9.16.tar.xz) = 6ed3e60d0cd82ea58ee134c19beccafac10eb0f71977f3848755dacbf0927d3a
2
SIZE (zeitgeist-0.9.16.tar.xz) = 807092
3
SIZE (zeitgeist-0.9.16.tar.xz) = 807092
(-)sysutils/zeitgeist/files/patch-libzeitgeist_timestamp.vala (+12 lines)
Line 0 Link Here
1
--- libzeitgeist/timestamp.vala.orig	2014-07-03 07:46:47 UTC
2
+++ libzeitgeist/timestamp.vala
3
@@ -76,8 +76,7 @@ namespace Zeitgeist.Timestamp
4
      */
5
     public int64 from_timeval (TimeVal timeval)
6
     {
7
-        var m_seconds = (int64) (timeval.tv_sec) * 1000;
8
-        return m_seconds + ((int64) timeval.tv_usec / 1000);
9
+        return timeval.tv_sec * 1000 + timeval.tv_usec / 1000;
10
     }
11
 
12
     /**
(-)sysutils/zeitgeist/files/patch-libzeitgeist_where-clause.vala (+11 lines)
Line 0 Link Here
1
--- libzeitgeist/where-clause.vala.orig	2017-09-03 19:29:23 UTC
2
+++ libzeitgeist/where-clause.vala
3
@@ -217,7 +217,7 @@ namespace Zeitgeist
4
             long[] pointers = new long[gptrarr.length + 1];
5
 #endif
6
             Memory.copy(pointers, ((PtrArray *) gptrarr)->pdata,
7
-                (gptrarr.length) * sizeof (void *));
8
+                gptrarr.length * sizeof (void *));
9
             return (T[]) pointers;
10
         }
11
 
(-)sysutils/zeitgeist/pkg-descr (-1 / +1 lines)
Lines 3-6 Link Here
3
and makes relevant information available to other applications. It is able to
3
and makes relevant information available to other applications. It is able to
4
establish relationships between items based on similarity and usage patterns.
4
establish relationships between items based on similarity and usage patterns.
5
5
6
WWW: http://zeitgeist-project.com
6
WWW: https://wiki.gnome.org/Projects/Zeitgeist

Return to bug 222033