svn commit: r323005 - in head/archivers: . qpress

Pawel Pekala pawel at FreeBSD.org
Sun Jul 14 21:11:17 UTC 2013


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 <samm at os2.kiev.ua>

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 <samm at os2.kiev.ua>
+# $FreeBSD$
+
+PORTNAME=	qpress
+PORTVERSION=	1.1
+CATEGORIES=	archivers
+MASTER_SITES=	http://www.quicklz.com/
+DISTNAME=	qpress-11-source
+
+MAINTAINER=	samm at 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 <bsd.port.mk>

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/


More information about the svn-ports-all mailing list