From owner-svn-ports-head@FreeBSD.ORG Sun Jul 14 21:11:17 2013 Return-Path: Delivered-To: svn-ports-head@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 C35195B2; Sun, 14 Jul 2013 21:11:17 +0000 (UTC) (envelope-from pawel@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 9A1486A9; Sun, 14 Jul 2013 21:11:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6ELBH5v007259; Sun, 14 Jul 2013 21:11:17 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6ELBGtK007255; Sun, 14 Jul 2013 21:11:16 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201307142111.r6ELBGtK007255@svn.freebsd.org> From: Pawel Pekala Date: Sun, 14 Jul 2013 21:11:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323005 - in head/archivers: . qpress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jul 2013 21:11:17 -0000 Author: pawel Date: Sun Jul 14 21:11:16 2013 New Revision: 323005 URL: http://svnweb.freebsd.org/changeset/ports/323005 Log: qpress is a portable file archiver using QuickLZ and designed to utilize fast storage systems to their max. It's often faster than file copy because the destination is smaller than the source. WWW: http://www.quicklz.com/ PR: ports/180225 Submitted by: Alex Samorukov Added: head/archivers/qpress/ head/archivers/qpress/Makefile (contents, props changed) head/archivers/qpress/distinfo (contents, props changed) head/archivers/qpress/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sun Jul 14 20:58:34 2013 (r323004) +++ head/archivers/Makefile Sun Jul 14 21:11:16 2013 (r323005) @@ -159,6 +159,7 @@ SUBDIR += py-liblzma SUBDIR += py-librtfcomp SUBDIR += py-lzma + SUBDIR += qpress SUBDIR += quazip SUBDIR += rar SUBDIR += rox-archive Added: head/archivers/qpress/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/qpress/Makefile Sun Jul 14 21:11:16 2013 (r323005) @@ -0,0 +1,27 @@ +# Created by: Alex Samorukov +# $FreeBSD$ + +PORTNAME= qpress +PORTVERSION= 1.1 +CATEGORIES= archivers +MASTER_SITES= http://www.quicklz.com/ +DISTNAME= qpress-11-source + +MAINTAINER= samm@os2.kiev.ua +COMMENT= Portable file archiver using QuickLZ + +LICENSE= GPLv2 + +EXTRACT_AFTER_ARGS= -d ${WRKSRC} +USE_ZIP= yes + +PLIST_FILES= bin/qpress + +do-build: + cd ${WRKSRC} && \ + ${CXX} ${CXXFLAGS} -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/qpress ${DESTDIR}${PREFIX}/bin + +.include Added: head/archivers/qpress/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/qpress/distinfo Sun Jul 14 21:11:16 2013 (r323005) @@ -0,0 +1,2 @@ +SHA256 (qpress-11-source.zip) = 4bb66b1383bbc4c5490eec6088d37109e11205fb9f94ccd04cb84ec069829633 +SIZE (qpress-11-source.zip) = 26998 Added: head/archivers/qpress/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/qpress/pkg-descr Sun Jul 14 21:11:16 2013 (r323005) @@ -0,0 +1,5 @@ +qpress is a portable file archiver using QuickLZ and designed to utilize fast +storage systems to their max. It's often faster than file copy because the +destination is smaller than the source. + +WWW: http://www.quicklz.com/