diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2006-07-17 12:29:57 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2006-07-17 12:29:57 +0000 |
commit | 170edeacdd0b1d4bd14cd125ef10faf80fafdab9 (patch) | |
tree | 264646f9c386e0b1a5e7b88c537139420a1afb74 /comms/obexftp/Makefile | |
parent | d4fc30f02262799a5bc42dae82e6545394946e7b (diff) | |
download | pkgsrc-170edeacdd0b1d4bd14cd125ef10faf80fafdab9.tar.gz |
Update to 0.20 (latest stable version):
Changes:
* Motorola support, tested with models v710/e815
* object caching and directory parsing (for things like ObexFS)
* Nokia support via IrDA and Bluetooth
* Siemens S65 support
* Everything but data goes to stderr for more simple redirection.
* VMO converter (gsm and wav) split into seperate package.
* Ericsson and Siemens cable support unified (still testing).
pkgsrc changes:
* NetBSD bluetooth support, thanks to Iain Hibbert for finishing it.
Diffstat (limited to 'comms/obexftp/Makefile')
-rw-r--r-- | comms/obexftp/Makefile | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/comms/obexftp/Makefile b/comms/obexftp/Makefile index 089461b77d5..d789cf00382 100644 --- a/comms/obexftp/Makefile +++ b/comms/obexftp/Makefile @@ -1,17 +1,33 @@ -# $NetBSD: Makefile,v 1.6 2006/03/04 21:29:05 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2006/07/17 12:29:57 xtraeme Exp $ # -DISTNAME= obexftp-0.10.3 -PKGREVISION= 2 +DISTNAME= obexftp-0.20 CATEGORIES= comms MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openobex/} +EXTRACT_SUFX= .tar.bz2 -MAINTAINER= pkgsrc-users@NetBSD.org +MAINTAINER= xtraeme@NetBSD.org HOMEPAGE= http://triq.net/obex/ COMMENT= File copying over the Object Exchange (OBEX) protocol -GNU_CONFIGURE= YES -USE_LIBTOOL= YES +GNU_CONFIGURE= yes +USE_TOOLS+= autoconf gmake pkg-config +USE_LIBTOOL= yes + +CONFIGURE_ARGS+= --disable-perl +CONFIGURE_ARGS+= --disable-python +CONFIGURE_ARGS+= --disable-swig + +.include "../../mk/bsd.prefs.mk" + +.if (${OPSYS} == "NetBSD" && exists(/usr/include/bluetooth.h)) +CPPFLAGS+= -DCOMPAT_BLUEZ +.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" |