Index: head/graphics/pngquant/Makefile =================================================================== --- head/graphics/pngquant/Makefile (revision 408758) +++ head/graphics/pngquant/Makefile (revision 408759) @@ -1,60 +1,53 @@ # Created by: Alex Hayward # $FreeBSD$ PORTNAME= pngquant PORTVERSION= 2.5.2 +PORTREVISION= 1 DISTVERSIONSUFFIX= -src CATEGORIES= graphics MASTER_SITES= http://pngquant.org/ MAINTAINER= ak@FreeBSD.org COMMENT= Converts 32-bit RGBA PNGs into 8-bit RGBA-palette PNGs LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png -BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= gmake tar:bzip2 MAKE_ARGS+= CC="${CC}" CPPFLAGS+= $$(libpng-config --I_opts) LDFLAGS+= $$(libpng-config --ldflags) PORTDOCS= CHANGELOG README.md PLIST_FILES= bin/pngquant \ man/man1/pngquant.1.gz OPTIONS_DEFINE= OPTIMIZED_FLAGS OPENMP DEBUG DOCS OPTIONS_DEFINE_i386= SSE OPTIMIZED_FLAGS_CFLAGS= -O3 -fearly-inlining -fstrict-aliasing \ -ffast-math -funroll-loops -fomit-frame-pointer \ -fexpensive-optimizations -ffinite-math-only \ -funsafe-loop-optimizations -ftree-vectorize # SSE2 support is always enabled on amd64 SSE_CFLAGS= -DUSE_SSE=1 -msse2 OPENMP_CFLAGS= -fopenmp OPENMP_LDFLAGS= -lgomp -pthread -.include - -.if empty(PORT_OPTIONS:MDEBUG) -CFLAGS+= -DNDEBUG -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-$$(MAKEFLAGS)||' ${WRKSRC}/Makefile +DEBUG_CFLAGS_OFF= -DNDEBUG do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pngquant ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/pngquant.1 ${STAGEDIR}${MANPREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Index: head/graphics/pngquant/files/patch-lib_configure =================================================================== --- head/graphics/pngquant/files/patch-lib_configure (nonexistent) +++ head/graphics/pngquant/files/patch-lib_configure (revision 408759) @@ -0,0 +1,41 @@ +Index: lib/configure +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!/bin/sh + + CONFIG="config.mk" + PREFIX="/usr/local" +@@ -80,7 +80,7 @@ + + # If someone runs sudo make install as very first command, and configure later, + # $CONFIG cannot be overwritten, and must be deleted before continuing. +-if [[ -f "$CONFIG" && ! -w "$CONFIG" ]]; then ++if [ -f "$CONFIG" -a ! -w "$CONFIG" ]; then + echo "Cannot overwrite file $CONFIG! Please delete it." + exit 1 + fi +@@ -135,10 +135,8 @@ + + # SSE + if [ "$SSE" = 'auto' ]; then +- if [[ "$(uname -m)" =~ (amd|x86_)64 || +- "$(grep -E -m1 "^flags" /proc/cpuinfo)" =~ "sse" ]]; then +- SSE=1 +- fi ++ echo $(uname -m) | grep -E -q '(amd|x86_)64' && SSE=1 ++ grep -E -m1 -q '^flags.*sse' /proc/cpuinfo 2>/dev/null && SSE=1 + fi + + if [ "$SSE" -eq 1 ]; then +@@ -161,9 +159,8 @@ + else + OPENMPFLAGS="-fopenmp" + fi +- if [[ "$("$CC" -xc -E $OPENMPFLAGS <(echo "#ifdef _OPENMP +- #include +- #endif") 2>&1)" =~ "omp_get_thread_num" ]]; then ++ if echo "$(printf '#ifdef _OPENMP\n#include \n#endif\n' | \ ++ "$CC" -xc -E $OPENMPFLAGS - 2>&1)" | grep -q omp_get_thread_num; then + cflags "$OPENMPFLAGS" + lflags "$OPENMPFLAGS" + status "OpenMP" "yes" Property changes on: head/graphics/pngquant/files/patch-lib_configure ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property