blob: 9ed243485a46cc43dd1aea669503abda55b9d78d (
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
39
40
41
|
# New ports collection makefile for: synce-dccm
# Date created: 14 June 2003
# Whom: Sam Lawrance <boris@brooknet.com.au>
#
# $FreeBSD$
PORTNAME= vdccm
PORTVERSION= 0.10.1
CATEGORIES= palm
MASTER_SITES= SF
MASTER_SITE_SUBDIR= synce
PKGNAMEPREFIX= synce-
MAINTAINER= ports@logvinov.com
COMMENT= Listener daemon for connections from WinCE devices
LIB_DEPENDS= synce.0:${PORTSDIR}/palm/synce-libsynce
OPTIONS= DESKTOP "Enable desktop integration" on
GNU_CONFIGURE= yes
USE_ICONV= yes
USE_GNOME= gnometarget
CONFIGURE_ARGS= --with-libiconv=${LOCALBASE} \
--with-libsynce=${LOCALBASE}
MAN1= triggerconnection.1 ${PORTNAME}.1
PLIST_FILES= bin/triggerconnection bin/${PORTNAME}
.include <bsd.port.pre.mk>
.if defined(WITH_DESKTOP)
CONFIGURE_ARGS+= --enable-desktop-integration=yes
LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
hal.1:${PORTSDIR}/sysutils/hal
USE_GNOME+= glib20
.else
CONFIGURE_ARGS+= --enable-desktop-integration=no
.endif
.include <bsd.port.post.mk>
|