From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jan 28 11:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 287E11A6 for ; Mon, 28 Jan 2013 11:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 15A0CEB6 for ; Mon, 28 Jan 2013 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r0SBA0Bm037102 for ; Mon, 28 Jan 2013 11:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r0SBA0C9037098; Mon, 28 Jan 2013 11:10:00 GMT (envelope-from gnats) Date: Mon, 28 Jan 2013 11:10:00 GMT Message-Id: <201301281110.r0SBA0C9037098@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/159242: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2013 11:10:01 -0000 The following reply was made to PR ports/159242; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/159242: commit references a PR Date: Mon, 28 Jan 2013 11:03:59 +0000 (UTC) Author: danfe Date: Mon Jan 28 11:03:50 2013 New Revision: 311113 URL: http://svnweb.freebsd.org/changeset/ports/311113 Log: Add fuse-zip, a FUSE file system to navigate, extract, create, and modify ZIP archives. PR: ports/159242 Added: head/sysutils/fusefs-zip/ head/sysutils/fusefs-zip/Makefile (contents, props changed) head/sysutils/fusefs-zip/distinfo (contents, props changed) head/sysutils/fusefs-zip/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jan 28 11:00:56 2013 (r311112) +++ head/sysutils/Makefile Mon Jan 28 11:03:50 2013 (r311113) @@ -296,6 +296,7 @@ SUBDIR += fusefs-unionfs SUBDIR += fusefs-wdfs SUBDIR += fusefs-wikipediafs + SUBDIR += fusefs-zip SUBDIR += fvcool SUBDIR += gaffitter SUBDIR += gai-leds Added: head/sysutils/fusefs-zip/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-zip/Makefile Mon Jan 28 11:03:50 2013 (r311113) @@ -0,0 +1,41 @@ +# $FreeBSD$ + +PORTNAME= fuse-zip +PORTVERSION= 0.2.13 +CATEGORIES= sysutils +MASTER_SITES= GOOGLE_CODE + +MAINTAINER= olevole@olevole.ru +COMMENT= FUSE filesystem to mount ZIP archives with write support + +LICENSE= LGPL3 + +LIB_DEPENDS= zip:${PORTSDIR}/archivers/libzip + +USE_GMAKE= yes +USE_PKGCONFIG= build +USE_FUSE= yes + +PLIST_FILES= bin/${PORTNAME} +MAN1= ${PORTNAME}.1 +PORTDOCS= README TODO changelog + +OPTIONS_DEFINE= DOCS + +.include + +do-build: + (cd ${WRKSRC} && ${GMAKE} -C lib && \ + ${GMAKE} CXXFLAGS="-I${LOCALBASE}/include") + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1 + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/sysutils/fusefs-zip/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-zip/distinfo Mon Jan 28 11:03:50 2013 (r311113) @@ -0,0 +1,2 @@ +SHA256 (fuse-zip-0.2.13.tar.gz) = e41c0746e3419db8f519fad7e819ef72ddb48ffca2de52773f038016aacd9804 +SIZE (fuse-zip-0.2.13.tar.gz) = 185431 Added: head/sysutils/fusefs-zip/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-zip/pkg-descr Mon Jan 28 11:03:50 2013 (r311113) @@ -0,0 +1,6 @@ +fuse-zip is a FUSE file system to navigate, extract, create and modify ZIP +archives based on libzip, implemented in C++. With fuse-zip, you can work +with ZIP archives as real directories. Unlike KIO or Gnome VFS, it can be +be used in any application without modifications. + +WWW: http://code.google.com/p/fuse-zip/ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"