mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
11bc22f452
This version of zeitgeist now bundles libzeitgeist in the port. The new libzeitgeist was bumped to libzeitgeist-1.0.so -> libzeitgeist-2.0.so. * deskutils/cairo-dock-plugins: supports both zeitgeist versions. * net-im/folks: Only supports the new 2.0 libzeitgeist library version. And this went unnoticed, woops. * sysutils/libzeitgeist: Remove since it is now bundled in zeitgeist. * sysutils/qzeitgeist: Update the port for the new zeitgeist API. * www/midori: Mark the zeitgeist option (non-default) broken until midori can be updated to a version that supports the new libzeitgeist 2.0 PR: 190729 [1] Submitted by: olivierd@ [1]
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# NOTE: please keep zeitgeist in sysutils/qzeitgeist in sync
|
|
|
|
PORTNAME= zeitgeist
|
|
PORTVERSION= 0.9.16
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://launchpad.net/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/${PORTVERSION}/+download/
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Event logging framework
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala \
|
|
dee-tool:${PORTSDIR}/devel/dee \
|
|
rapper:${PORTSDIR}/textproc/raptor2 \
|
|
${PYTHON_PKGNAMEPREFIX}rdflib>=4.1.1:${PORTSDIR}/textproc/py-rdflib
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \
|
|
${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus
|
|
|
|
USE_GNOME= intlhack glib20 introspection:build
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake gettext pathfix python:2 pkgconfig libtool tar:xz
|
|
USE_SQLITE= 3
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CONFIGURE_ARGS= --disable-fts --disable-telepathy \
|
|
--disable-downloads-monitor
|
|
|
|
OPTIONS_SUB= yes
|
|
OPTIONS_DEFINE= DATAHUB
|
|
OPTIONS_DEFAULT=DATAHUB
|
|
DATAHUB_LIB_DEPENDS= libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib
|
|
DATAHUB_USE= gnome=gtk30
|
|
DATAHUB_CONFIGURE_ENABLE= datahub
|
|
DATAHUB_DESC= Passive loggers for Zeitgeist
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|python -|${PYTHON_CMD} -|g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|