From owner-svn-ports-all@FreeBSD.ORG Fri Jun 21 05:58:35 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5E36D95; Fri, 21 Jun 2013 05:58:35 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 405911ABA; Fri, 21 Jun 2013 05:58:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5L5wYBD048062; Fri, 21 Jun 2013 05:58:34 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5L5wYO2048055; Fri, 21 Jun 2013 05:58:34 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201306210558.r5L5wYO2048055@svn.freebsd.org> From: Jason Helfman Date: Fri, 21 Jun 2013 05:58:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321442 - in head/sysutils: . ori X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2013 05:58:35 -0000 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 +# $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 + +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 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/