svn commit: r409744 - in head/graphics: . farbfeld farbfeld/files

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Feb 28 14:53:07 UTC 2016


Author: rakuco
Date: Sun Feb 28 14:53:05 2016
New Revision: 409744
URL: https://svnweb.freebsd.org/changeset/ports/409744

Log:
  New port: graphics/farbfeld.
  
  Farbfeld is a lossless image format which is easy to parse, pipe and
  compress.
  
  WWW: http://tools.suckless.org/farbfeld/
  
  PR:		207461
  Submitted by:	aaron at baugher.biz

Added:
  head/graphics/farbfeld/
  head/graphics/farbfeld/Makefile   (contents, props changed)
  head/graphics/farbfeld/distinfo   (contents, props changed)
  head/graphics/farbfeld/files/
  head/graphics/farbfeld/files/patch-config.mk   (contents, props changed)
  head/graphics/farbfeld/pkg-descr   (contents, props changed)
  head/graphics/farbfeld/pkg-plist   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sun Feb 28 14:43:15 2016	(r409743)
+++ head/graphics/Makefile	Sun Feb 28 14:53:05 2016	(r409744)
@@ -172,6 +172,7 @@
     SUBDIR += exiftran
     SUBDIR += exiv2
     SUBDIR += exrtools
+    SUBDIR += farbfeld
     SUBDIR += feh
     SUBDIR += ffff
     SUBDIR += fig2sxd

Added: head/graphics/farbfeld/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/farbfeld/Makefile	Sun Feb 28 14:53:05 2016	(r409744)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	farbfeld
+PORTVERSION=	1
+CATEGORIES=	graphics
+MASTER_SITES=	http://dl.suckless.org/farbfeld/
+
+MAINTAINER=	aaron at baugher.biz
+COMMENT=	Lossless, uncompressed graphics format
+
+LICENSE=	ISCL
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libpng.so:${PORTSDIR}/graphics/png
+
+USES=		jpeg
+
+.include <bsd.port.mk>

Added: head/graphics/farbfeld/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/farbfeld/distinfo	Sun Feb 28 14:53:05 2016	(r409744)
@@ -0,0 +1,2 @@
+SHA256 (farbfeld-1.tar.gz) = 34faf878ee9bf20a690604b2e09f97ce517b20bb7b5e37433997941825c0b46e
+SIZE (farbfeld-1.tar.gz) = 6770

Added: head/graphics/farbfeld/files/patch-config.mk
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/farbfeld/files/patch-config.mk	Sun Feb 28 14:53:05 2016	(r409744)
@@ -0,0 +1,13 @@
+--- config.mk.orig	2016-02-19 12:59:50.769556000 -0600
++++ config.mk	2016-02-19 12:56:15.846580000 -0600
+@@ -18,8 +18,8 @@
+ 
+ # flags
+ CPPFLAGS = -D_DEFAULT_SOURCE
+-CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
++CFLAGS  += -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+ LDFLAGS  = -s ${LIBS}
+ 
+ # compiler and linker
+-CC = cc
++CC ?= cc

Added: head/graphics/farbfeld/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/farbfeld/pkg-descr	Sun Feb 28 14:53:05 2016	(r409744)
@@ -0,0 +1,4 @@
+Farbfeld is a lossless image format which is easy to parse, pipe and
+compress.
+
+WWW: http://tools.suckless.org/farbfeld/

Added: head/graphics/farbfeld/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/farbfeld/pkg-plist	Sun Feb 28 14:53:05 2016	(r409744)
@@ -0,0 +1,9 @@
+bin/2ff
+bin/ff2png
+bin/jpg2ff
+bin/png2ff
+man/man1/2ff.1.gz
+man/man1/ff2png.1.gz
+man/man1/jpg2ff.1.gz
+man/man1/png2ff.1.gz
+man/man5/farbfeld.5.gz


More information about the svn-ports-all mailing list