Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Jun 2013 05:58:34 +0000 (UTC)
From:      Jason Helfman <jgh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r321442 - in head/sysutils: . ori
Message-ID:  <201306210558.r5L5wYO2048055@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jgh
Date: Fri Jun 21 05:58:33 2013
New Revision: 321442
URL: http://svnweb.freebsd.org/changeset/ports/321442

Log:
  Ori is a distributed file system built for offline operation and empowers the
  user with control over synchronization operations and conflict resolution. We
  provide history through light weight snapshots and allow users to verify the
  history has not been tampered with. Through the use of replication instances
  can be resilient and recover damaged data from other nodes.
  
  WWW: http://ori.scs.stanford.edu/
  
  PR:		ports/176429
  Submitted by:	mashti@cs.stanford.edu

Added:
  head/sysutils/ori/
  head/sysutils/ori/Makefile   (contents, props changed)
  head/sysutils/ori/distinfo   (contents, props changed)
  head/sysutils/ori/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Fri Jun 21 04:11:49 2013	(r321441)
+++ head/sysutils/Makefile	Fri Jun 21 05:58:33 2013	(r321442)
@@ -588,6 +588,7 @@
     SUBDIR += open
     SUBDIR += openipmi
     SUBDIR += openupsd
+    SUBDIR += ori
     SUBDIR += p5-BSD-Jail-Object
     SUBDIR += p5-BSD-Process
     SUBDIR += p5-BSD-Sysctl

Added: head/sysutils/ori/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ori/Makefile	Fri Jun 21 05:58:33 2013	(r321442)
@@ -0,0 +1,40 @@
+# Created by: Ali Mashtizadeh <mashti@cs.stanford.edu>
+# $FreeBSD$
+
+PORTNAME=	ori
+PORTVERSION=	0.7.0
+CATEGORIES=	sysutils net
+MASTER_SITES=	http://cdn.bitbucket.org/orifs/ori/downloads/
+
+MAINTAINER=	mashti@cs.stanford.edu
+COMMENT=	Ori Distributed File System
+
+LIB_DEPENDS+=	event-2:${PORTSDIR}/devel/libevent2 \
+		boost_date_time:${PORTSDIR}/devel/boost-libs \
+		execinfo:${PORTSDIR}/devel/libexecinfo
+
+USE_XZ=	yes
+WRKSRC=	${WRKDIR}
+
+USES=	pkgconfig fuse
+USE_SCONS=	yes
+USE_OPENSSL=	yes
+WITH_OPENSSL_PORT=	yes
+
+PLIST_FILES=	bin/ori \
+		bin/orifs \
+		bin/ori_httpd
+MAN1=		ori.1 orifs.1
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	@${ECHO_MSG} "===>  Installing binaries..."
+	${INSTALL_PROGRAM} ${WRKSRC}/build/ori/ori ${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKSRC}/build/orifs/orifs ${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKSRC}/build/ori_httpd/ori_httpd ${PREFIX}/bin/
+	@${ECHO_MSG} "===>  Installing man pages..."
+	${INSTALL_MAN} ${WRKSRC}/docs/ori.1 ${MAN1PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/docs/orifs.1 ${MAN1PREFIX}/man/man1
+
+.include <bsd.port.post.mk>

Added: head/sysutils/ori/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ori/distinfo	Fri Jun 21 05:58:33 2013	(r321442)
@@ -0,0 +1,2 @@
+SHA256 (ori-0.7.0.tar.xz) = 9dbbe48f725f966020065b8f151a75095fdb827b8bbade898e057a7e701b054c
+SIZE (ori-0.7.0.tar.xz) = 282544

Added: head/sysutils/ori/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ori/pkg-descr	Fri Jun 21 05:58:33 2013	(r321442)
@@ -0,0 +1,7 @@
+Ori is a distributed file system built for offline operation and empowers the 
+user with control over synchronization operations and conflict resolution. We 
+provide history through light weight snapshots and allow users to verify the 
+history has not been tampered with. Through the use of replication instances 
+can be resilient and recover damaged data from other nodes.
+
+WWW: http://ori.scs.stanford.edu/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306210558.r5L5wYO2048055>