svn commit: r475595 - in head/graphics: . libpillowfight

Yuri Victorovich yuri at FreeBSD.org
Sat Jul 28 18:28:55 UTC 2018


Author: yuri
Date: Sat Jul 28 18:28:53 2018
New Revision: 475595
URL: https://svnweb.freebsd.org/changeset/ports/475595

Log:
  New port: graphics/libpillowfight: Library containing various image processing algorithms

Added:
  head/graphics/libpillowfight/
  head/graphics/libpillowfight/Makefile   (contents, props changed)
  head/graphics/libpillowfight/distinfo   (contents, props changed)
  head/graphics/libpillowfight/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sat Jul 28 18:26:12 2018	(r475594)
+++ head/graphics/Makefile	Sat Jul 28 18:28:53 2018	(r475595)
@@ -558,6 +558,7 @@
     SUBDIR += libpano13
     SUBDIR += libpcd
     SUBDIR += libpgf
+    SUBDIR += libpillowfight
     SUBDIR += libpotrace
     SUBDIR += libprojectm
     SUBDIR += libpuzzle

Added: head/graphics/libpillowfight/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libpillowfight/Makefile	Sat Jul 28 18:28:53 2018	(r475595)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	libpillowfight
+DISTVERSION=	0.2.4
+CATEGORIES=	graphics python
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Library containing various image processing algorithms
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	gmake:devel/gmake
+
+USES=		cmake:outsource
+USE_GITLAB=	yes
+GL_SITE=	https://gitlab.gnome.org
+GL_ACCOUNT=	World/OpenPaperwork
+GL_COMMIT=	3a7ebba75f4c060ac1707900bd8891e8d200b1c6
+USE_LDCONFIG=	yes
+
+PLIST_FILES=	include/pillowfight/pillowfight.h \
+		include/pillowfight/util.h \
+		lib/libpillowfight.so
+
+pre-configure:
+	@cd ${WRKSRC} && ${GMAKE} version
+
+.include <bsd.port.mk>

Added: head/graphics/libpillowfight/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libpillowfight/distinfo	Sat Jul 28 18:28:53 2018	(r475595)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1532764548
+SHA256 (World/OpenPaperwork-libpillowfight-3a7ebba75f4c060ac1707900bd8891e8d200b1c6_GL0.tar.gz) = fa32b235b3ce51dc5742c486e6d30e1efbc42995e9666d173e3b30f53741172b
+SIZE (World/OpenPaperwork-libpillowfight-3a7ebba75f4c060ac1707900bd8891e8d200b1c6_GL0.tar.gz) = 14568794

Added: head/graphics/libpillowfight/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libpillowfight/pkg-descr	Sat Jul 28 18:28:53 2018	(r475595)
@@ -0,0 +1,19 @@
+Library containing various image processing algorithms.
+
+Available algorithms:
+* Unpaper's algorithms
+  * Blackfilter
+  * Noisefilter
+  * Blurfilter
+  * Masks
+  * Grayfilter
+  * Border
+* Canny edge detection
+* Sobel operator
+* Gaussian blur
+* ACE (Automatic Color Equalization ; Parallelized implementation)
+* SWT (Stroke Width Transformation)
+* Compare: Compare two images (grayscale) and makes the pixels that are
+  different really visible (red).
+
+WWW: https://gitlab.gnome.org/World/OpenPaperwork/libpillowfight


More information about the svn-ports-all mailing list