blob: 7acf6ac94f00a4283e6f0ea3d6a33008e18e6575 (
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
|
# $NetBSD: Makefile,v 1.11 2013/03/15 08:25:15 plunky Exp $
#
DISTNAME= libsyncml-0.4.5
PKGREVISION= 6
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libsyncml/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://libsyncml.opensync.org/
COMMENT= C library implementation of the SyncML protocol
LICENSE= gnu-lgpl-v2.1
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"
|