summaryrefslogtreecommitdiff
path: root/filesystems/fuse-obexfs/Makefile
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2007-05-16 10:32:52 +0000
committerxtraeme <xtraeme>2007-05-16 10:32:52 +0000
commit0225858f53fa464fbe8420d6e92fc22a87e4795c (patch)
tree3c7e30568ac8d3777a3c2e8c3adb882b5f616b38 /filesystems/fuse-obexfs/Makefile
parentbffbbbe6732eb1e75840ff89f7d51c029c1c818f (diff)
downloadpkgsrc-0225858f53fa464fbe8420d6e92fc22a87e4795c.tar.gz
Initial import of fuse-obexfs-0.8.
FUSE based filesystem using ObexFTP (currently beta). Actually ObexFS is just a thin layer wrapping a basic ObexFTP client into FUSE callbacks. This works well enough on NetBSD/amd64: $ mount|grep obexfs puffs:refuse:obexfs on k600i/ type puffs (nosuid, nodev, mounted by juan) $ $ ls -l k600i/ total 2 drwxr-xr-x 1 juan users 0 Jan 1 1970 Memoria del tel?fono drwxr-xr-x 1 juan users 0 Jan 1 1970 Memory Stick $
Diffstat (limited to 'filesystems/fuse-obexfs/Makefile')
-rw-r--r--filesystems/fuse-obexfs/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/filesystems/fuse-obexfs/Makefile b/filesystems/fuse-obexfs/Makefile
new file mode 100644
index 00000000000..4b977315d63
--- /dev/null
+++ b/filesystems/fuse-obexfs/Makefile
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/05/16 10:32:52 xtraeme Exp $
+#
+
+DISTNAME= obexfs-0.8
+PKGNAME= fuse-${DISTNAME}
+CATEGORIES= filesystems
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openobex/}
+
+MAINTAINER= xtraeme@NetBSD.org
+HOMEPAGE= http://www.openobex.org/
+COMMENT= FUSE based filesystem using ObexFTP
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= autoconf gmake pkg-config
+
+pre-configure:
+ cd ${WRKSRC} && autoconf
+
+.include "../../mk/bsd.prefs.mk"
+
+# puffs does not play well with libpthread, disable it.
+.if ${OPSYS} == "NetBSD"
+BUILDLINK_TRANSFORM+= rm:-lpthread
+.endif
+
+.include "../../comms/obexftp/buildlink3.mk"
+.include "../../comms/openobex/buildlink3.mk"
+.include "../../mk/fuse.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"