From owner-svn-ports-head@FreeBSD.ORG Sat Aug 2 17:37:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E142A1E; Sat, 2 Aug 2014 17:37:50 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D592B29BE; Sat, 2 Aug 2014 17:37:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s72HbnXn082501; Sat, 2 Aug 2014 17:37:49 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s72HbnPh082499; Sat, 2 Aug 2014 17:37:49 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201408021737.s72HbnPh082499@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 2 Aug 2014 17:37:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363829 - head/graphics/pngrewrite 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.18 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, 02 Aug 2014 17:37:50 -0000 Author: sunpoet Date: Sat Aug 2 17:37:49 2014 New Revision: 363829 URL: http://svnweb.freebsd.org/changeset/ports/363829 QAT: https://qat.redports.org/buildarchive/r363829/ Log: - Add LICENSE - Cosmetic change - Update pkg-descr - Remove Author line - Take maintainership Modified: head/graphics/pngrewrite/Makefile head/graphics/pngrewrite/pkg-descr Modified: head/graphics/pngrewrite/Makefile ============================================================================== --- head/graphics/pngrewrite/Makefile Sat Aug 2 17:35:30 2014 (r363828) +++ head/graphics/pngrewrite/Makefile Sat Aug 2 17:37:49 2014 (r363829) @@ -8,21 +8,25 @@ CATEGORIES= graphics MASTER_SITES= http://entropymine.com/jason/pngrewrite/ \ http://mirror.roe.ch/dist/pngrewrite/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= PNG palette optimizer +LICENSE= ZLIB + LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lm -lpng -lz USES= zip + NO_WRKSUBDIR= yes PLIST_FILES= bin/pngrewrite do-build: - ${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib \ - -o ${WRKSRC}/pngrewrite ${WRKSRC}/pngrewrite.c ${WRKSRC}/libpngrewrite.c -lpng -lz -lm + ${CC} ${CFLAGS} ${LDFLAGS} -o ${WRKSRC}/pngrewrite ${WRKSRC}/libpngrewrite.c ${WRKSRC}/pngrewrite.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/pngrewrite ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/pngrewrite ${STAGEDIR}${PREFIX}/bin/ .include Modified: head/graphics/pngrewrite/pkg-descr ============================================================================== --- head/graphics/pngrewrite/pkg-descr Sat Aug 2 17:35:30 2014 (r363828) +++ head/graphics/pngrewrite/pkg-descr Sat Aug 2 17:37:49 2014 (r363829) @@ -1,7 +1,6 @@ -Pngrewrite is a utility that reduces unnecessarily large palettes -of PNG images. It also optimizes transparency settings, and reduces -the bits-per-pixel if possible. -Handy for post-processing images before putting them on a web site. +Pngrewrite is command-line utility that reduces the unnecessarily large palettes +that some programs write into PNG files. It also optimizes transparency data, +and reduces the bits-per-pixel if possible. Handy for post-processing PNG files +before putting them on a web site. -Author: Jason Summers WWW: http://entropymine.com/jason/pngrewrite/