Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Nov 2018 19:20:27 +0000 (UTC)
From:      Alex Kozlov <ak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r485244 - in head/graphics/pngquant: . files
Message-ID:  <201811181920.wAIJKRoW070941@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ak
Date: Sun Nov 18 19:20:27 2018
New Revision: 485244
URL: https://svnweb.freebsd.org/changeset/ports/485244

Log:
  - Update to 2.12.2
  - Update WWW

Modified:
  head/graphics/pngquant/Makefile
  head/graphics/pngquant/distinfo
  head/graphics/pngquant/files/patch-configure
  head/graphics/pngquant/pkg-descr

Modified: head/graphics/pngquant/Makefile
==============================================================================
--- head/graphics/pngquant/Makefile	Sun Nov 18 18:36:28 2018	(r485243)
+++ head/graphics/pngquant/Makefile	Sun Nov 18 19:20:27 2018	(r485244)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	pngquant
-PORTVERSION=	2.12.0
+PORTVERSION=	2.12.2
 DISTVERSIONSUFFIX=	-src
 CATEGORIES=	graphics
 MASTER_SITES=	http://pngquant.org/

Modified: head/graphics/pngquant/distinfo
==============================================================================
--- head/graphics/pngquant/distinfo	Sun Nov 18 18:36:28 2018	(r485243)
+++ head/graphics/pngquant/distinfo	Sun Nov 18 19:20:27 2018	(r485244)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1533123633
-SHA256 (pngquant-2.12.0-src.tar.gz) = 0e540c64bb58c05f2a05b4eaf1d3d165f0d3278500f15abfeac47f93f8fa8fa8
-SIZE (pngquant-2.12.0-src.tar.gz) = 143335
+TIMESTAMP = 1542566880
+SHA256 (pngquant-2.12.2-src.tar.gz) = bb031c48039ee73ea0e60709bb9ab80c55bfa3a5920b798ea37a03f2757b099c
+SIZE (pngquant-2.12.2-src.tar.gz) = 143404

Modified: head/graphics/pngquant/files/patch-configure
==============================================================================
--- head/graphics/pngquant/files/patch-configure	Sun Nov 18 18:36:28 2018	(r485243)
+++ head/graphics/pngquant/files/patch-configure	Sun Nov 18 19:20:27 2018	(r485244)
@@ -95,16 +95,16 @@ Index: configure
      echo "Cannot overwrite file $CONFIG! Please delete it."
      exit 1
  fi
-@@ -159,7 +159,7 @@
- 
+@@ -160,7 +160,7 @@
  find_pkgconfig() {
      local LIBNAME=$1
--    if pkg-config --exists "$LIBNAME" &> /dev/null; then
-+    if pkg-config --exists "$LIBNAME" >/dev/null; then
-         cflags "$(pkg-config --cflags "$LIBNAME")"
-         lflags "$(pkg-config --libs "$LIBNAME")"
-         LIBRARY_FOUND_VERSION=$(pkg-config --modversion "$LIBNAME")
-@@ -240,9 +240,13 @@
+     PKG_CONFIG=${PKG_CONFIG:-pkg-config}
+-    if $PKG_CONFIG --exists "$LIBNAME" &> /dev/null; then
++    if $PKG_CONFIG --exists "$LIBNAME" > /dev/null; then
+         cflags "$($PKG_CONFIG --cflags "$LIBNAME")"
+         lflags "$($PKG_CONFIG --libs "$LIBNAME")"
+         LIBRARY_FOUND_VERSION=$($PKG_CONFIG --modversion "$LIBNAME")
+@@ -241,9 +241,13 @@
          return 0
      fi
  
@@ -121,7 +121,7 @@ Index: configure
              return 0
          fi
      done
-@@ -299,12 +303,8 @@
+@@ -300,12 +304,8 @@
  # SSE
  if [ "$SSE" = 'auto' ]; then
      SSE=0
@@ -136,7 +136,7 @@ Index: configure
  fi
  
  if [ "$SSE" -eq 1 ]; then
-@@ -327,9 +327,8 @@
+@@ -328,9 +328,8 @@
      else
          OPENMPFLAGS="-fopenmp"
      fi
@@ -148,7 +148,7 @@ Index: configure
          cflags "$OPENMPFLAGS"
          lflags "$OPENMPFLAGS"
          status "OpenMP" "yes"
-@@ -344,38 +343,35 @@
+@@ -345,38 +344,35 @@
  fi
  
  # Cocoa
@@ -199,7 +199,7 @@ Index: configure
      SOLIBSUFFIX=dll
  else
      SOLIBSUFFIX=so
-@@ -416,7 +412,7 @@
+@@ -417,7 +413,7 @@
  if echo "#include \"png.h\"
      int main(){
      return !png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
@@ -208,7 +208,7 @@ Index: configure
      status "libpng" "custom flags"
      HAS_LIBPNG=1
  fi
-@@ -427,7 +423,7 @@
+@@ -428,7 +424,7 @@
      if [ -n "$PNGH" ]; then
          PNGH_STRING=$(pngh_string "$PNGH")
          PNGH_MAJMIN=$(pngh_majmin "$PNGH")
@@ -217,7 +217,7 @@ Index: configure
              LIBPNGA=$(find_f "$LIBPNG_DIR" "libpng${PNGH_MAJMIN}.a")
              if [ -z "$LIBPNGA" ]; then
                  LIBPNGA=$(find_f "$LIBPNG_DIR" "libpng.a")
-@@ -446,14 +442,19 @@
+@@ -447,14 +443,19 @@
      if find_pkgconfig libpng; then
          HAS_LIBPNG=1
      else
@@ -242,7 +242,7 @@ Index: configure
                      if [ -n "$LIBPNGSO" ]; then
                          cflags "-I${PNGH%/*}"
                          lflags "-L${LIBPNGSO%/*} -lpng${PNGH_MAJMIN}"
-@@ -467,7 +468,7 @@
+@@ -468,7 +469,7 @@
      fi
  fi
  if [ "$HAS_LIBPNG" -eq 0 ]; then
@@ -251,7 +251,7 @@ Index: configure
          LIBPNG_CMD='`brew install libpng`'
      else
          LIBPNG_CMD='`apt-get install libpng16-dev` or `apt-get install libpng-dev` or `yum install libpng-devel`'
-@@ -534,6 +535,6 @@
+@@ -535,6 +536,6 @@
  SOLIBSUFFIX = $SOLIBSUFFIX
  STATICLIBDEPS = $STATICLIBDEPS
  LIQSRCDIR = $LIQSRCDIR

Modified: head/graphics/pngquant/pkg-descr
==============================================================================
--- head/graphics/pngquant/pkg-descr	Sun Nov 18 18:36:28 2018	(r485243)
+++ head/graphics/pngquant/pkg-descr	Sun Nov 18 19:20:27 2018	(r485244)
@@ -14,4 +14,4 @@ Features:
  - Easy to integrate with shell scripts, GUIs and server-side software.
  - Fast mode for processing large numbers of images.
 
-WWW: http://pngquant.org/
+WWW: https://pngquant.org/



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