From owner-svn-ports-all@FreeBSD.ORG Sat Oct 19 18:21:41 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTP id A85C3279; Sat, 19 Oct 2013 18:21:41 +0000 (UTC) (envelope-from tijl@FreeBSD.org) 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 9377729CE; Sat, 19 Oct 2013 18:21:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9JILfr8009770; Sat, 19 Oct 2013 18:21:41 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9JILfrD009766; Sat, 19 Oct 2013 18:21:41 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201310191821.r9JILfrD009766@svn.freebsd.org> From: Tijl Coosemans Date: Sat, 19 Oct 2013 18:21:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330922 - in head/graphics/aaphoto: . 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.14 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: Sat, 19 Oct 2013 18:21:41 -0000 Author: tijl Date: Sat Oct 19 18:21:40 2013 New Revision: 330922 URL: http://svnweb.freebsd.org/changeset/ports/330922 Log: - Update 0.43.1. - Disable openmp with clang. - Support staging. PR: ports/182772 Submitted by: Andras Horvath (maintainer) Deleted: head/graphics/aaphoto/files/patch-aaphoto.c Modified: head/graphics/aaphoto/Makefile (contents, props changed) head/graphics/aaphoto/distinfo (contents, props changed) head/graphics/aaphoto/files/patch-Makefile.in (contents, props changed) Directory Properties: head/graphics/aaphoto/pkg-descr (props changed) Modified: head/graphics/aaphoto/Makefile ============================================================================== --- head/graphics/aaphoto/Makefile Sat Oct 19 18:13:57 2013 (r330921) +++ head/graphics/aaphoto/Makefile Sat Oct 19 18:21:40 2013 (r330922) @@ -2,50 +2,39 @@ # $FreeBSD$ PORTNAME= aaphoto -PORTVERSION= 0.41 -PORTREVISION= 1 +PORTVERSION= 0.43.1 CATEGORIES= graphics -MASTER_SITES= http://log69.com/downloads/ -DISTNAME= ${PORTNAME}_sources_v${PORTVERSION} MAINTAINER= mail@log69.com COMMENT= Auto Adjust Photo, automatic color correction of photos -LIB_DEPENDS= jasper:${PORTSDIR}/graphics/jasper \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png - LICENSE= GPLv3 -USE_AUTOTOOLS= autoheader +LIB_DEPENDS= libjasper.so:${PORTSDIR}/graphics/jasper \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png + +USE_GITHUB= yes +GH_ACCOUNT= log69 +GH_COMMIT= e566f9b +GH_TAGNAME= v${PORTVERSION} + GNU_CONFIGURE= yes +USES= compiler + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - PLIST_FILES= bin/aaphoto -PORTDOCS= AUTHORS ChangeLog COPYING COPYRIGHT INSTALL LICENSE \ - NEWS README TODO -NO_STAGE= yes .include -.if (${ARCH} == "amd64" || ${ARCH} == "i386") && ${OSVERSION} >= 700000 +.if (${ARCH} == "amd64" || ${ARCH} == "i386") && ${OSVERSION} >= 700000 && \ + ${COMPILER_TYPE} == gcc CFLAGS+= -fopenmp -D__OPENMP__ .endif do-install: -.for FILE in aaphoto - ${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/bin -.endfor - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} -.endfor -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/aaphoto ${STAGEDIR}${PREFIX}/bin .include Modified: head/graphics/aaphoto/distinfo ============================================================================== --- head/graphics/aaphoto/distinfo Sat Oct 19 18:13:57 2013 (r330921) +++ head/graphics/aaphoto/distinfo Sat Oct 19 18:21:40 2013 (r330922) @@ -1,2 +1,2 @@ -SHA256 (aaphoto_sources_v0.41.tar.gz) = f101ff954bcca194550f35acdcaac8e4b36df072a1c5406e73f2d3bab30d38cb -SIZE (aaphoto_sources_v0.41.tar.gz) = 138407 +SHA256 (aaphoto-0.43.1.tar.gz) = 75c9ae7232411cf1ff83ebbe5acb9c817b5490cef08ce14cc2bd03097e7936e0 +SIZE (aaphoto-0.43.1.tar.gz) = 135277 Modified: head/graphics/aaphoto/files/patch-Makefile.in ============================================================================== --- head/graphics/aaphoto/files/patch-Makefile.in Sat Oct 19 18:13:57 2013 (r330921) +++ head/graphics/aaphoto/files/patch-Makefile.in Sat Oct 19 18:21:40 2013 (r330922) @@ -6,7 +6,7 @@ top_srcdir = @top_srcdir@ -AM_CFLAGS = -Wall -O2 -D__OPENMP__ -fopenmp -AM_LDFLAGS = -ljasper -ljpeg -lpng -lm -lgomp -+AM_CFLAGS = -Wall -O2 ++AM_CFLAGS = -Wall +AM_LDFLAGS = -ljasper -ljpeg -lpng -lm aaphoto_SOURCES = aaphoto.c INCLUDES =