From owner-svn-ports-all@freebsd.org Sun Jan 1 00:08:53 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83581C99EEA; Sun, 1 Jan 2017 00:08:53 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38C1119F3; Sun, 1 Jan 2017 00:08:53 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0108rCA070246; Sun, 1 Jan 2017 00:08:53 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0108rrU070243; Sun, 1 Jan 2017 00:08:53 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201701010008.v0108rrU070243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Sun, 1 Jan 2017 00:08:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430180 - in head/graphics/apngasm: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jan 2017 00:08:53 -0000 Author: danilo Date: Sun Jan 1 00:08:52 2017 New Revision: 430180 URL: https://svnweb.freebsd.org/changeset/ports/430180 Log: - Update to 2.91 Modified: head/graphics/apngasm/Makefile head/graphics/apngasm/distinfo head/graphics/apngasm/files/patch-Makefile Modified: head/graphics/apngasm/Makefile ============================================================================== --- head/graphics/apngasm/Makefile Sun Jan 1 00:08:27 2017 (r430179) +++ head/graphics/apngasm/Makefile Sun Jan 1 00:08:52 2017 (r430180) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= apngasm -PORTVERSION= 2.9 +PORTVERSION= 2.91 DISTVERSIONSUFFIX=-src -PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} Modified: head/graphics/apngasm/distinfo ============================================================================== --- head/graphics/apngasm/distinfo Sun Jan 1 00:08:27 2017 (r430179) +++ head/graphics/apngasm/distinfo Sun Jan 1 00:08:52 2017 (r430180) @@ -1,2 +1,3 @@ -SHA256 (apngasm-2.9-src.zip) = 5dfd34c9a560da81f91d37b891e23761c74659fe36e04ab2a46696562a9ed876 -SIZE (apngasm-2.9-src.zip) = 573944 +TIMESTAMP = 1482071398 +SHA256 (apngasm-2.91-src.zip) = 4534b82a7339a0fa250f13445ad6e83fe878db5f3223b8276339581e7344a987 +SIZE (apngasm-2.91-src.zip) = 597267 Modified: head/graphics/apngasm/files/patch-Makefile ============================================================================== --- head/graphics/apngasm/files/patch-Makefile Sun Jan 1 00:08:27 2017 (r430179) +++ head/graphics/apngasm/files/patch-Makefile Sun Jan 1 00:08:52 2017 (r430180) @@ -1,18 +1,18 @@ ---- ./Makefile.orig 2013-12-18 15:23:41.000000000 -0200 -+++ ./Makefile 2013-12-18 15:23:54.000000000 -0200 +--- Makefile.orig 2016-12-31 16:31:37 UTC ++++ Makefile @@ -1,10 +1,18 @@ PACKAGE = apngasm -CC = gcc -SRC_DIRS = . 7z zopfli --CFLAGS = -Wall -pedantic +-CFLAGS = -Wall -pedantic -DFEATURE_7ZIP -DFEATURE_ZOPFLI -CFLAGS_OPT = -O2 -CFLAGS_7Z = -Wno-sign-compare -Wno-reorder -Wno-maybe-uninitialized -Wno-parentheses -LIBS = -lstdc++ -lm -lpng -lz +CC ?= cc +CXX ?= c++ +SRC_DIRS = . 7z -+CFLAGS += -Wall -pedantic -+CXXFLAGS += -Wall -pedantic ++CFLAGS += -Wall -pedantic -DFEATURE_7ZIP -DFEATURE_ZOPFLI ++CXXFLAGS += -Wall -pedantic -DFEATURE_7ZIP -DFEATURE_ZOPFLI +CPPFLAGS += $(shell libpng-config --cflags) +CFLAGS_7Z = -Wno-sign-compare -Wno-reorder -Wno-parentheses +ifeq ($(strip $(STATIC)),) @@ -25,7 +25,7 @@ INCUDE_DIRS := $(addprefix -I./, $(SRC_DIRS)) OBJ_DIRS := $(addprefix obj/, $(SRC_DIRS)) -@@ -16,19 +23,19 @@ +@@ -16,19 +24,19 @@ OBJECTS := $(OBJECTS:.cpp=.o) all : $(PACKAGE) $(PACKAGE) : objdirs $(OBJECTS)