Date: Fri, 17 Jan 2014 16:17:40 +0000 (UTC) From: Danilo Egea Gondolfo <danilo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340066 - in head/archivers: . zopfli Message-ID: <201401171617.s0HGHeVJ061187@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danilo Date: Fri Jan 17 16:17:40 2014 New Revision: 340066 URL: http://svnweb.freebsd.org/changeset/ports/340066 QAT: https://qat.redports.org/buildarchive/r340066/ Log: - Add new port archivers/zopfli Zopfli is a new zlib (gzip, deflate) compatible compressor. This compressor takes more time (~100x slower), but compresses around 5% better than zlib and better than any other zlib-compatible compressor we have found. PR: ports/185680 Submitted by: Alexander Kuehn <freebsd@nagilum.org> Added: head/archivers/zopfli/ head/archivers/zopfli/Makefile (contents, props changed) head/archivers/zopfli/distinfo (contents, props changed) head/archivers/zopfli/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Fri Jan 17 16:11:11 2014 (r340065) +++ head/archivers/Makefile Fri Jan 17 16:17:40 2014 (r340066) @@ -224,6 +224,7 @@ SUBDIR += zipmix SUBDIR += zipper SUBDIR += zoo + SUBDIR += zopfli SUBDIR += zutils .include <bsd.port.subdir.mk> Added: head/archivers/zopfli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/zopfli/Makefile Fri Jan 17 16:17:40 2014 (r340066) @@ -0,0 +1,26 @@ +# Created by: Alexander Kuehn <freebsd@nagilum.org> +# $FreeBSD$ + +PORTNAME= zopfli +PORTVERSION= 1.0.0 +CATEGORIES= archivers +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} + +MAINTAINER= freebsd@nagilum.org +COMMENT= Zopfli Compression Algorithm + +LICENSE= APACHE20 + +PLIST_FILES= bin/zopfli + +USE_ZIP= yes + +do-build: + ${CC} -O2 -W -Wall -Wextra -ansi -pedantic -lm \ + ${CFLAGS} ${EXTRA_DEFINES} -o ${WRKSRC}/${PORTNAME} \ + ${WRKSRC}/src/${PORTNAME}/*.c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/archivers/zopfli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/zopfli/distinfo Fri Jan 17 16:17:40 2014 (r340066) @@ -0,0 +1,2 @@ +SHA256 (zopfli-1.0.0.zip) = e20d73b56620285e6cce5b510d8e5da6835a81940e48cdf35a69090e666f3adb +SIZE (zopfli-1.0.0.zip) = 57873 Added: head/archivers/zopfli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/zopfli/pkg-descr Fri Jan 17 16:17:40 2014 (r340066) @@ -0,0 +1,6 @@ +Zopfli is a new zlib (gzip, deflate) compatible compressor. +This compressor takes more time (~100x slower), but compresses +around 5% better than zlib and better than any other zlib-compatible +compressor we have found. + +WWW: http://code.google.com/p/zopfli/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401171617.s0HGHeVJ061187>