From owner-svn-ports-head@FreeBSD.ORG Sat Mar 15 18:48:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B043162; Sat, 15 Mar 2014 18:48:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 66B6F971; Sat, 15 Mar 2014 18:48:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2FImsTo024952; Sat, 15 Mar 2014 18:48:54 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2FImrOr024947; Sat, 15 Mar 2014 18:48:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403151848.s2FImrOr024947@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Mar 2014 18:48:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348372 - in head/graphics: . imageworsener X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Mar 2014 18:48:54 -0000 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 +# $FreeBSD$ + +PORTNAME= imageworsener +PORTVERSION= 1.2.0 +CATEGORIES= graphics +MASTER_SITES= http://entropymine.com/imageworsener/ \ + LOCAL/sunpoet + +MAINTAINER= sunpoet@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 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