Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Jun 2019 13:14:08 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504342 - in head/graphics: . pecl-vips
Message-ID:  <201906161314.x5GDE8DN070371@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@punkt.de>
+# $FreeBSD$
+
+PORTNAME=	vips
+PORTVERSION=	1.0.9
+CATEGORIES=	graphics
+
+MAINTAINER=	mops@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906161314.x5GDE8DN070371>