blob: 0f95579a7cf327be11a6dff63b73673b00cc53b4 (
plain)
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
|
# $NetBSD: Makefile,v 1.7 2012/06/14 07:45:22 sbd Exp $
#
DISTNAME= libsyncml-0.4.5
PKGREVISION= 4
CATEGORIES= comms
MASTER_SITES= http://libsyncml.opensync.org/download/releases/0.4.5/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= dillo@NetBSD.org
HOMEPAGE= http://libsyncml.opensync.org/
COMMENT= C library implementation of the SyncML protocol
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_TOOLS+= pkg-config
USE_LANGUAGES= c
USE_LIBTOOL= yes
.include "../../mk/bsd.prefs.mk"
CONFIGURE_ARGS+= --disable-http
.if ${OPSYS} != "SunOS"
CONFIGURE_ARGS+= --enable-bluetooth
.endif
CONFIGURE_ARGS+= --enable-obex
PKGCONFIG_OVERRIDE+= libsyncml-1.0.pc.in
.include "../../comms/openobex/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../textproc/wbxml2/buildlink3.mk"
# XXX libsoup (http)
.include "../../mk/bsd.pkg.mk"
|