diff options
author | kwm <kwm@FreeBSD.org> | 2012-04-08 02:03:42 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2012-04-08 02:03:42 +0800 |
commit | 2d1e5bf996fe60b3c961be9a4c86ce7cdb52e61a (patch) | |
tree | 58459238089bf09f072597347f0a54fd7727d3b8 /sysutils | |
parent | 236459963e17b9cb8b086b59d6e6328ff048a52d (diff) | |
download | freebsd-ports-gnome-2d1e5bf996fe60b3c961be9a4c86ce7cdb52e61a.tar.gz freebsd-ports-gnome-2d1e5bf996fe60b3c961be9a4c86ce7cdb52e61a.tar.zst freebsd-ports-gnome-2d1e5bf996fe60b3c961be9a4c86ce7cdb52e61a.zip |
Update to 0.8.2.
Unbreak, get LDFLAGS from configure_ENV.
Submitted by: avilla@
Feature safe: yes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/zeitgeist/Makefile | 11 | ||||
-rw-r--r-- | sysutils/zeitgeist/distinfo | 4 | ||||
-rw-r--r-- | sysutils/zeitgeist/files/patch-extra__PythonSerializer.py | 13 |
3 files changed, 19 insertions, 9 deletions
diff --git a/sysutils/zeitgeist/Makefile b/sysutils/zeitgeist/Makefile index e6c9db6ca196..a6d6460e1d21 100644 --- a/sysutils/zeitgeist/Makefile +++ b/sysutils/zeitgeist/Makefile @@ -6,30 +6,27 @@ # PORTNAME= zeitgeist -PORTVERSION= 0.8.1.1 +PORTVERSION= 0.8.2 CATEGORIES= sysutils -MASTER_SITES= http://launchpad.net/${PORTNAME}/${PORTVERSION:R:R}/${PORTVERSION}/+download/ +MASTER_SITES= http://launchpad.net/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/${PORTVERSION}/+download/ MAINTAINER= kwm@FreeBSD.org COMMENT= Event logging framework - engine BUILD_DEPENDS= rapper:${PORTSDIR}/textproc/raptor2 \ ${PYTHON_SITELIBDIR}/rdflib/__init__.py:${PORTSDIR}/textproc/py-rdflib - RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus -BROKEN= does not configure - USE_GNOME= gnomehack intlhack pygobject USE_GMAKE= yes USE_PYTHON= yes FETCH_ARGS= -Fpr GNU_CONFIGURE= yes USE_GETTEXT= yes -CPPFLAGS= -I${LOCALBASE}/include -CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib MAN1= zeitgeist-daemon.1 diff --git a/sysutils/zeitgeist/distinfo b/sysutils/zeitgeist/distinfo index 4d38daa32fde..d1137bb3691f 100644 --- a/sysutils/zeitgeist/distinfo +++ b/sysutils/zeitgeist/distinfo @@ -1,2 +1,2 @@ -SHA256 (zeitgeist-0.8.1.1.tar.gz) = afc78beb8e55f0f9cb4c38755568bae47b471327f9e90cafb1f3f97cebb89044 -SIZE (zeitgeist-0.8.1.1.tar.gz) = 357524 +SHA256 (zeitgeist-0.8.2.tar.gz) = 6155611ee182f642cc1fe9f8aadc25c7e2942fdef2565b1f29e8388bc4643703 +SIZE (zeitgeist-0.8.2.tar.gz) = 358781 diff --git a/sysutils/zeitgeist/files/patch-extra__PythonSerializer.py b/sysutils/zeitgeist/files/patch-extra__PythonSerializer.py new file mode 100644 index 000000000000..d7f9ef494b48 --- /dev/null +++ b/sysutils/zeitgeist/files/patch-extra__PythonSerializer.py @@ -0,0 +1,13 @@ +--- extra/PythonSerializer.py.orig 2011-09-21 13:57:53.000000000 -0400 ++++ extra/PythonSerializer.py 2012-04-07 05:36:04.507729012 -0400 +@@ -85,8 +85,8 @@ + assert root_type + #TODO: displayname, how are translation handled? on trig level or on python level? + stream.write( +- "Symbol('%s', parent=%r, uri='%s', display_name='%s', doc='%s', auto_resolve=False)\n" %(name, +- root_type, symbol, display_name, doc) ++ str("Symbol('%s', parent=%r, uri='%s', display_name='%s', doc='%s', auto_resolve=False)\n" %(name, ++ root_type, symbol, display_name, doc)) + ) + + |