From owner-svn-ports-all@freebsd.org Mon Nov 23 18:36:01 2015 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 10229A35E07; Mon, 23 Nov 2015 18:36:01 +0000 (UTC) (envelope-from sunpoet@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 CDD951D3B; Mon, 23 Nov 2015 18:36:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tANIZx9D072844; Mon, 23 Nov 2015 18:35:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tANIZx0a072843; Mon, 23 Nov 2015 18:35:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201511231835.tANIZx0a072843@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 23 Nov 2015 18:35:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402311 - head/graphics/GraphicsMagick 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.20 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: Mon, 23 Nov 2015 18:36:01 -0000 Author: sunpoet Date: Mon Nov 23 18:35:59 2015 New Revision: 402311 URL: https://svnweb.freebsd.org/changeset/ports/402311 Log: - Add missing USES=localbase - Fix build for dependent ports if OPENMP enabled - Bump PORTREVISION for package change Modified: head/graphics/GraphicsMagick/Makefile Modified: head/graphics/GraphicsMagick/Makefile ============================================================================== --- head/graphics/GraphicsMagick/Makefile Mon Nov 23 18:33:03 2015 (r402310) +++ head/graphics/GraphicsMagick/Makefile Mon Nov 23 18:35:59 2015 (r402311) @@ -3,7 +3,7 @@ PORTNAME= GraphicsMagick PORTVERSION= 1.3.23 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF \ @@ -32,15 +32,11 @@ CONFIGURE_ENV= PTHREAD_LIBS=-lpthread INSTALL_TARGET= install-strip TEST_TARGET= check USE_LDCONFIG= yes -USES= jpeg libtool tar:bzip2 +USES= jpeg libtool localbase tar:bzip2 PORTDATA= * PORTDOCS= * -# The OPENMP option may select gcc as compiler but on architectures -# that have switched to libc++ clang should be used for C++ code. -#CXX= c++ - # Use fonts installed by x11-fonts/webfonts by default WINDOWS_FONT_DIR?= ${LOCALBASE}/share/fonts/webfonts @@ -96,3 +92,7 @@ post-install-Q8BIT-on: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q8/coders ${STAGEDIR}${PREFIX}/lib/GraphicsMagick/modules-Q8/filters .include + +# The OPENMP option may select gcc as compiler but on architectures +# that have switched to libc++ clang should be used for C++ code. +CXX= c++