- add chironfs 1.0.0

Chiron FS is a FUSE based filesystem which implements replication at the
FILESYSTEM LEVEL like RAID 1 does at the DEVICE LEVEL. The replicated
filesystems may be of any kind you want the only requisite is that you
mount it. No need for special configuration files, the setup is as simple
as one mount command (or one line in fstab).

WWW:    http://code.google.com/p/chironfs/
This commit is contained in:
Yen-Ming Lee 2008-04-07 12:36:45 +00:00
parent d83531ddee
commit 212b164b3f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=210736
4 changed files with 48 additions and 0 deletions

View File

@ -221,6 +221,7 @@
SUBDIR += fsbackup
SUBDIR += ftrace
SUBDIR += ftwin
SUBDIR += fusefs-chironfs
SUBDIR += fusefs-curlftpfs
SUBDIR += fusefs-encfs
SUBDIR += fusefs-funionfs

View File

@ -0,0 +1,37 @@
# New ports collection makefile for: fusefs-chironfs
# Date created: 2008-04-06
# Whom: Yen-Ming Lee <leeym@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= chironfs
PORTVERSION= 1.0.0
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
PKGNAMEPREFIX= fusefs-
MAINTAINER= leeym@FreeBSD.org
COMMENT= A FUSE based filesystem with replication at the filesystem level
RUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
BUILD_DEPENDS= ${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib
# chironfs doesn't really depend on iconv, however, there are some undefined
# references in libfuse, so we have to add USE_ICONV=yes to fix it.
USE_ICONV=yes
PLIST_FILES= bin/chironfs
PORTDOCS= *
MAN8= chironfs.8
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 600000 # Inherited from sysutils/fusefs-kmod
IGNORE= depends on kernel module that requires FreeBSD 6 or later
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (chironfs-1.0.0.tar.gz) = ce3e8944b3a61c0a6227c12e234dcaa4
SHA256 (chironfs-1.0.0.tar.gz) = d05dfd7b15ade7f881464a78c176526f086571a7f15948214686349f0e9a86f9
SIZE (chironfs-1.0.0.tar.gz) = 400809

View File

@ -0,0 +1,7 @@
Chiron FS is a FUSE based filesystem which implements replication at the
FILESYSTEM LEVEL like RAID 1 does at the DEVICE LEVEL. The replicated
filesystems may be of any kind you want the only requisite is that you
mount it. No need for special configuration files, the setup is as simple
as one mount command (or one line in fstab).
WWW: http://code.google.com/p/chironfs/