svn commit: r348372 - in head/graphics: . imageworsener

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Mar 15 18:48:54 UTC 2014


Author: sunpoet
Date: Sat Mar 15 18:48:53 2014
New Revision: 348372
URL: http://svnweb.freebsd.org/changeset/ports/348372
QAT: https://qat.redports.org/buildarchive/r348372/

Log:
  - Add imageworsener 1.2.0
  
  ImageWorsener is a cross-platform command-line utility and library for image
  scaling and other image processing. It has full support for PNG, JPEG, BMP
  formats, experimental support for WebP, read-only support for GIF, and limited
  support for some other image formats. It's not as fast or memory-efficient as
  some utilities, but it's very accurate.
  
  WWW: http://entropymine.com/imageworsener/

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sat Mar 15 18:48:28 2014	(r348371)
+++ head/graphics/Makefile	Sat Mar 15 18:48:53 2014	(r348372)
@@ -372,6 +372,7 @@
     SUBDIR += imageindex
     SUBDIR += imagesort
     SUBDIR += imageviewer
+    SUBDIR += imageworsener
     SUBDIR += imc
     SUBDIR += imgtops
     SUBDIR += imgv

Added: head/graphics/imageworsener/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/imageworsener/Makefile	Sat Mar 15 18:48:53 2014	(r348372)
@@ -0,0 +1,37 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	imageworsener
+PORTVERSION=	1.2.0
+CATEGORIES=	graphics
+MASTER_SITES=	http://entropymine.com/imageworsener/ \
+		LOCAL/sunpoet
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	CLI utility and library for image scaling and processing
+
+LICENSE=	MIT
+
+OPTIONS_DEFINE=	JPEG PNG WEBP
+OPTIONS_DEFAULT=JPEG PNG WEBP
+
+CONFIGURE_ARGS=	--with-zlib-include-dir=${INCLUDEDIR} \
+		--with-zlib-lib-dir=${LIBDIR}
+
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+
+JPEG_CONFIGURE_OFF=	--without-jpeg
+JPEG_CONFIGURE_ON=	--with-jpeg-include-dir=${LOCALBASE}/include --with-jpeg-lib-dir=${LOCALBASE}/lib
+JPEG_LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg
+PNG_CONFIGURE_OFF=	--without-png
+PNG_CONFIGURE_ON=	--with-png-include-dir=${LOCALBASE}/include --with-png-lib-dir=${LOCALBASE}/lib
+PNG_LIB_DEPENDS=	libpng.so:${PORTSDIR}/graphics/png
+WEBP_CONFIGURE_OFF=	--without-webp
+WEBP_CONFIGURE_ON=	--with-webp-include-dir=${LOCALBASE}/include --with-webp-lib-dir=${LOCALBASE}/lib
+WEBP_LIB_DEPENDS=	libwebp.so:${PORTSDIR}/graphics/webp
+
+post-build:
+	@${STRIP_CMD} ${WRKSRC}/.libs/libimageworsener.so.2
+
+.include <bsd.port.mk>

Added: head/graphics/imageworsener/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/imageworsener/distinfo	Sat Mar 15 18:48:53 2014	(r348372)
@@ -0,0 +1,2 @@
+SHA256 (imageworsener-1.2.0.tar.gz) = 97fdb1aafac7bc2339b2ce813071f0900de0b093b96ab1a99a43f9647afdfe35
+SIZE (imageworsener-1.2.0.tar.gz) = 635509

Added: head/graphics/imageworsener/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/imageworsener/pkg-descr	Sat Mar 15 18:48:53 2014	(r348372)
@@ -0,0 +1,7 @@
+ImageWorsener is a cross-platform command-line utility and library for image
+scaling and other image processing. It has full support for PNG, JPEG, BMP
+formats, experimental support for WebP, read-only support for GIF, and limited
+support for some other image formats. It's not as fast or memory-efficient as
+some utilities, but it's very accurate.
+
+WWW: http://entropymine.com/imageworsener/

Added: head/graphics/imageworsener/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/imageworsener/pkg-plist	Sat Mar 15 18:48:53 2014	(r348372)
@@ -0,0 +1,6 @@
+bin/imagew
+include/imagew.h
+lib/libimageworsener.a
+lib/libimageworsener.la
+lib/libimageworsener.so
+lib/libimageworsener.so.2


More information about the svn-ports-head mailing list