Date: Sat, 29 Jun 2019 10:41:27 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505345 - head/net/iipsrv Message-ID: <201906291041.x5TAfRwP049037@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Sat Jun 29 10:41:27 2019 New Revision: 505345 URL: https://svnweb.freebsd.org/changeset/ports/505345 Log: net/iipsrv: Update to 1.1 * Introduce non-default option JPEG2000 [1] Also while I'm here: * Add location to license file * Pet portclippy by grouping the USE_ variables to the USES block * Update WWW field to spare users from redirects Changelog: * JPEG2000 decoding via the OpenJPEG library [1] * ICC profile embedding support * XMP metadata embedding support * Clean URLs without the need for server-side URL rewriting * Logging through syslog * Histogram equalization and contrast stretch * Conversion to greyscale or bilevel (aka binary or bitonal) https://github.com/ruven/iipsrv/releases PR: 238812 Submitted by: Mikle Davidkin <me@skylord.ru> (maintainer) Modified: head/net/iipsrv/Makefile head/net/iipsrv/distinfo head/net/iipsrv/pkg-descr Modified: head/net/iipsrv/Makefile ============================================================================== --- head/net/iipsrv/Makefile Sat Jun 29 10:32:07 2019 (r505344) +++ head/net/iipsrv/Makefile Sat Jun 29 10:41:27 2019 (r505345) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= iipsrv -PORTVERSION= 1.0 +PORTVERSION= 1.1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= net @@ -9,20 +9,24 @@ MAINTAINER= me@skylord.ru COMMENT= IIP (Internet Imaging Protocol) FastCGI server LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtiff.so:graphics/tiff +USES= autoreconf jpeg libtool pkgconfig USE_GITHUB= yes GH_ACCOUNT= ruven +USE_RC_SUBR= ${PORTNAME} -USES= autoreconf jpeg libtool - GNU_CONFIGURE= yes -USE_RC_SUBR= ${PORTNAME} - PLIST_FILES= bin/iipsrv.fcgi \ man/man8/iipsrv.8.gz + +OPTIONS_DEFINE= JPEG2000 + +JPEG2000_LIB_DEPENDS= libopenjp2.so:graphics/openjpeg +JPEG2000_CONFIGURE_ENABLE= openjpeg post-patch: @${REINPLACE_CMD} -e 's|noinst_PROGRAMS|bin_PROGRAMS|g' \ Modified: head/net/iipsrv/distinfo ============================================================================== --- head/net/iipsrv/distinfo Sat Jun 29 10:32:07 2019 (r505344) +++ head/net/iipsrv/distinfo Sat Jun 29 10:41:27 2019 (r505345) @@ -1,2 +1,3 @@ -SHA256 (ruven-iipsrv-iipsrv-1.0_GH0.tar.gz) = 9156e80a855b36c5c0eb0707a3ea0ba95ec3a52d118d548af51eb2ef9e5e2f85 -SIZE (ruven-iipsrv-iipsrv-1.0_GH0.tar.gz) = 553962 +TIMESTAMP = 1561500358 +SHA256 (ruven-iipsrv-iipsrv-1.1_GH0.tar.gz) = 2a0243fba10a5e97c6f4fe058903f172fbd2f11afd5e8fb120f5aa5fa9c10aba +SIZE (ruven-iipsrv-iipsrv-1.1_GH0.tar.gz) = 554637 Modified: head/net/iipsrv/pkg-descr ============================================================================== --- head/net/iipsrv/pkg-descr Sat Jun 29 10:32:07 2019 (r505344) +++ head/net/iipsrv/pkg-descr Sat Jun 29 10:41:27 2019 (r505345) @@ -6,4 +6,4 @@ well as advanced image features such as 8/16/32 bits p channel, CIELAB colorimetric images and scientific imagery such as multispectral images and digital elevation maps. -WWW: http://iipimage.sourceforge.net/ +WWW: https://iipimage.sourceforge.io
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906291041.x5TAfRwP049037>