Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
The FUSE-based union file system allows several directories to be
stacked under one mountpoint - this will produce the effect of
having a number of directories merged under one mountpoint.
This utility is implemented at the user level - to mount a series
of roots, simply use:
fuse-unionfs /dir1:/dir2:/dir3 /mnt

View File

@@ -0,0 +1,24 @@
# $NetBSD: Makefile,v 1.4 2012/10/03 16:08:32 asau 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
HOMEPAGE= http://podgorny.cz/unionfs-fuse/
COMMENT= FUSE-based union filesystem
BUILD_TARGET= unionfs
USE_TOOLS+= pkg-config
INSTALLATION_DIRS= bin
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/unionfs \
${DESTDIR}${PREFIX}/bin/fuse-unionfs
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
bin/fuse-unionfs

View File

@@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.3 2010/02/02 10:45:17 jmmv 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) = 917a9997c5ceef0edf632b4738dd0e397c3d6705
SHA1 (patch-ab) = fcb7ebe83f25488653ee42548c84d7709ce952d8
SHA1 (patch-ac) = 0ce1100986d2a6e1941ebe6fb3ccca7fe54e7fee

View File

@@ -0,0 +1,21 @@
$NetBSD: patch-aa,v 1.3 2010/02/02 10:45:17 jmmv Exp $
--- unionfs.c.orig 2007-02-09 16:17:37.000000000 +0000
+++ unionfs.c
@@ -10,6 +10,7 @@ This is offered under a BSD-style licens
#endif
#include <fuse.h>
+#include <fuse_opt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -192,7 +193,7 @@ static int unionfs_fsync(const char *pat
int res;
if (isdatasync) {
-#ifdef _POSIX_SYNCHRONIZED_IO
+#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO != -1
res = fdatasync(fi->fh);
#else
res = fsync(fi->fh);

View File

@@ -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"

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ac,v 1.1 2010/02/02 10:45:18 jmmv Exp $
--- Makefile.orig 2007-02-09 16:17:37.000000000 +0000
+++ Makefile
@@ -1,6 +1,6 @@
-CFLAGS += -Wall
+CFLAGS += -Wall $$(pkg-config --cflags fuse)
CPPFLAGS += -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26
-LDFLAGS += -lfuse
+LDFLAGS += -lfuse $$(pkg-config --libs fuse)
UNIONFS_OBJ = unionfs.o stats.o opts.o debug.o cache.o