pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/filesystems/fuse-unionfs Initial import of unionfs-fus...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2ab51d3bb2a2
branches:  trunk
changeset: 526439:2ab51d3bb2a2
user:      agc <agc%pkgsrc.org@localhost>
date:      Sat Mar 10 12:51:03 2007 +0000

description:
Initial import of unionfs-fuse-0.17 as fuse-unionfs-0.17 into the Packages
Collection.

        FUSE-based union filesystem, with almost limitless number of root
        directories.

        This utility is implementedd at the user level - to mount a series
        of roots, simply use:

                fuse-unionfs root1:root2:root3 <mountpoint>

diffstat:

 filesystems/fuse-unionfs/DESCR            |   7 +++++++
 filesystems/fuse-unionfs/Makefile         |  20 ++++++++++++++++++++
 filesystems/fuse-unionfs/PLIST            |   2 ++
 filesystems/fuse-unionfs/distinfo         |   7 +++++++
 filesystems/fuse-unionfs/patches/patch-aa |  22 ++++++++++++++++++++++
 filesystems/fuse-unionfs/patches/patch-ab |  12 ++++++++++++
 6 files changed, 70 insertions(+), 0 deletions(-)

diffs (94 lines):

diff -r 8aadc6c94ce4 -r 2ab51d3bb2a2 filesystems/fuse-unionfs/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/filesystems/fuse-unionfs/DESCR    Sat Mar 10 12:51:03 2007 +0000
@@ -0,0 +1,7 @@
+FUSE-based union filesystem, with almost limitless number of root
+directories.
+
+This utility is implementedd at the user level - to mount a series
+of roots, simply use:
+
+       fuse-unionfs root1:root2:root3 <mountpoint>
diff -r 8aadc6c94ce4 -r 2ab51d3bb2a2 filesystems/fuse-unionfs/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/filesystems/fuse-unionfs/Makefile Sat Mar 10 12:51:03 2007 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
+#
+
+DISTNAME=      unionfs-fuse-0.17
+PKGNAME=       fuse-unionfs-0.17
+CATEGORIES=    filesystems
+MASTER_SITES=  http://podgorny.cz/unionfs-fuse/releases/
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://podgorny.cz/unionfs-fuse/
+COMMENT=       FUSE-based union filesystem
+
+BUILD_TARGET=  unionfs
+
+do-install:
+       ${INSTALL_PROGRAM} ${WRKSRC}/unionfs ${PREFIX}/bin/fuse-unionfs
+
+.include "../../mk/fuse.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 8aadc6c94ce4 -r 2ab51d3bb2a2 filesystems/fuse-unionfs/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/filesystems/fuse-unionfs/PLIST    Sat Mar 10 12:51:03 2007 +0000
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
+bin/fuse-unionfs
diff -r 8aadc6c94ce4 -r 2ab51d3bb2a2 filesystems/fuse-unionfs/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/filesystems/fuse-unionfs/distinfo Sat Mar 10 12:51:03 2007 +0000
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
+
+SHA1 (unionfs-fuse-0.17.tar.bz2) = 791877d7e127c28345f3884f30b9a65032e9ca80
+RMD160 (unionfs-fuse-0.17.tar.bz2) = 020662308ea3930ed26685bcb2cdcaf08f3082f3
+Size (unionfs-fuse-0.17.tar.bz2) = 6447 bytes
+SHA1 (patch-aa) = ab12403f3c83a04cf59e1a4616b76e7c36204a66
+SHA1 (patch-ab) = fcb7ebe83f25488653ee42548c84d7709ce952d8
diff -r 8aadc6c94ce4 -r 2ab51d3bb2a2 filesystems/fuse-unionfs/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/filesystems/fuse-unionfs/patches/patch-aa Sat Mar 10 12:51:03 2007 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
+
+--- unionfs.c  2007/03/10 00:31:50     1.1
++++ unionfs.c  2007/03/10 00:33:02
+@@ -10,6 +10,7 @@
+ #endif
+ 
+ #include <fuse.h>
++#include <fuse_opt.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
+@@ -933,5 +934,9 @@
+       }
+ 
+       umask(0);
++#ifdef __NetBSD__
++      return fuse_main(args.argc, args.argv, &unionfs_oper);
++#else
+       return fuse_main(args.argc, args.argv, &unionfs_oper, NULL);
++#endif
+ }
diff -r 8aadc6c94ce4 -r 2ab51d3bb2a2 filesystems/fuse-unionfs/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/filesystems/fuse-unionfs/patches/patch-ab Sat Mar 10 12:51:03 2007 +0000
@@ -0,0 +1,12 @@
+$NetBSD: patch-ab,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
+
+--- opts.h     2007/03/10 00:36:42     1.1
++++ opts.h     2007/03/10 00:36:59
+@@ -3,6 +3,7 @@
+ 
+ 
+ #include <fuse.h>
++#include <fuse_opt.h>
+ #include "unionfs.h"
+ 
+ 



Home | Main Index | Thread Index | Old Index