blob: 9875ab6c61c48a55b094e70f1bf6e12f625fbc6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# New ports collection makefile for: tracker
# Date created: 2006-12-09
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/sysutils/tracker/Makefile,v 1.18 2009/08/08 18:46:41 ahze Exp $
#
PORTNAME= tracker
PORTVERSION= 0.6.95
PORTREVISION= 1
CATEGORIES= sysutils gnome
MASTER_SITES= # empty
DISTFILES= # empty
EXTRACT_ONLY= # empty
MAINTAINER= gnome@FreeBSD.org
COMMENT= Tracker search tool and indexer metaport
RUN_DEPENDS= ${LOCALBASE}/libexec/trackerd:${PORTSDIR}/sysutils/tracker-client
NO_BUILD= yes
OPTIONS= GNOME "Gnome preferences, panel applet, and search tool" Off \
MSOFFICE "Enable search for Microsoft Office Docs (uses gtk)" Off
.include <bsd.port.pre.mk>
.if defined(WITH_GNOME)
RUN_DEPENDS+= tracker-applet:${PORTSDIR}/sysutils/tracker-gnome
.endif
.if defined(WITH_MSOFFICE)
RUN_DEPENDS+= ${LOCALBASE}/lib/tracker/extract-modules/libextract-msoffice.so:${PORTSDIR}/sysutils/tracker-libtrackergtk
.endif
do-install:
.include <bsd.port.post.mk>
|