svn commit: r504342 - in head/graphics: . pecl-vips

Rene Ladan rene at FreeBSD.org
Sun Jun 16 13:14:09 UTC 2019


Author: rene
Date: Sun Jun 16 13:14:08 2019
New Revision: 504342
URL: https://svnweb.freebsd.org/changeset/ports/504342

Log:
  Low-level PHP binding for libvips
  
  This extension lets you use the libvips image processing library
  from PHP 7. It is intentionally very low-level: modules such as
  https://github.com/libvips/php-vips try to layer a nice API on
  top of this.
  
  WWW: https://github.com/libvips/php-vips-ext
  
  PR:		238609
  Submitted by:	punkt.de Hosting Team <mops at punkt.de>
  Event:		Berlin hackathon 2019

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sun Jun 16 12:56:11 2019	(r504341)
+++ head/graphics/Makefile	Sun Jun 16 13:14:08 2019	(r504342)
@@ -735,6 +735,7 @@
     SUBDIR += pecl-imagick
     SUBDIR += pecl-imagick-im7
     SUBDIR += pecl-qrencode
+    SUBDIR += pecl-vips
     SUBDIR += pecomato
     SUBDIR += pencil2d
     SUBDIR += peps

Added: head/graphics/pecl-vips/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/pecl-vips/Makefile	Sun Jun 16 13:14:08 2019	(r504342)
@@ -0,0 +1,18 @@
+# Created by: punkt.de Hosting Team <mops at punkt.de>
+# $FreeBSD$
+
+PORTNAME=	vips
+PORTVERSION=	1.0.9
+CATEGORIES=	graphics
+
+MAINTAINER=	mops at punkt.de
+COMMENT=	PHP bindings for libvips
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libvips.so:graphics/vips
+
+USES=		php:pecl pkgconfig
+
+.include <bsd.port.mk>

Added: head/graphics/pecl-vips/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/pecl-vips/distinfo	Sun Jun 16 13:14:08 2019	(r504342)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1557409772
+SHA256 (PECL/vips-1.0.9.tgz) = aec14fe6b059dbc919ba37364ef4cec0cfd674c6360a23ad689f07cc0c29ec14
+SIZE (PECL/vips-1.0.9.tgz) = 558066

Added: head/graphics/pecl-vips/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/pecl-vips/pkg-descr	Sun Jun 16 13:14:08 2019	(r504342)
@@ -0,0 +1,8 @@
+Low-level PHP binding for libvips
+
+This extension lets you use the libvips image processing library
+from PHP 7. It is intentionally very low-level: modules such as
+https://github.com/libvips/php-vips try to layer a nice API on
+top of this.
+
+WWW: https://github.com/libvips/php-vips-ext


More information about the svn-ports-all mailing list