Update to 0.8.2.

Unbreak, get LDFLAGS from configure_ENV.

Submitted by:	avilla@
Feature safe:	yes
This commit is contained in:
Koop Mast 2012-04-07 18:03:42 +00:00
parent 2d87251db8
commit 064daf5d70
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294340
3 changed files with 19 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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))
)