blob: a4a09ffa7b562933ad0cf7721a422c742291495d (
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.15 2012/10/03 11:24:42 asau Exp $
#
DISTNAME= obexftp-0.20
PKGREVISION= 2
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openobex/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://openobex.triq.net/
COMMENT= File copying over the Object Exchange (OBEX) protocol
GNU_CONFIGURE= yes
USE_TOOLS+= autoconf gmake pkg-config
USE_LIBTOOL= yes
CONFIGURE_ARGS+= --disable-perl
CONFIGURE_ARGS+= --disable-python
CONFIGURE_ARGS+= --disable-swig
LIBS.SunOS+= -lsocket -lnsl -liconv
.include "../../mk/bsd.prefs.mk"
.if ((${OPSYS} == "NetBSD" && exists(/usr/include/bluetooth.h)) || ${OPSYS} == "DragonFly")
CPPFLAGS+= -DCOMPAT_BLUEZ -DSDP_COMPAT
.endif
post-patch:
cd ${WRKSRC} && autoconf
.include "../../comms/openobex/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/libusb/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|