Bug 185680 - New port: archivers/zopfli new zlib compatible compressor
Summary: New port: archivers/zopfli new zlib compatible compressor
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Danilo Egea Gondolfo
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-12 10:40 UTC by freebsd
Modified: 2014-01-17 16:20 UTC (History)
0 users

See Also:


Attachments
zopfli.shar (1.70 KB, text/plain)
2014-01-12 10:40 UTC, freebsd
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description freebsd 2014-01-12 10:40:00 UTC
	New port: archivers/zopfli new zlib compatible compressor

Fix: Install attached port.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-12 10:40:08 UTC
Class Changed
From-To: update->change-request

Fix category (new ports should be change-requests) (via the GNATS Auto 
Assign Tool)
Comment 2 Danilo Egea Gondolfo freebsd_committer freebsd_triage 2014-01-16 20:54:56 UTC
Responsible Changed
From-To: freebsd-ports-bugs->danilo

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-01-17 16:17:49 UTC
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/
_______________________________________________
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"
Comment 4 Danilo Egea Gondolfo freebsd_committer freebsd_triage 2014-01-17 16:18:14 UTC
State Changed
From-To: open->closed

Committed. Thanks!