From owner-svn-ports-all@FreeBSD.ORG Sat May 24 22:55:32 2014 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 ESMTPS id 4720DC23; Sat, 24 May 2014 22:55:32 +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 1BCDB252D; Sat, 24 May 2014 22:55:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4OMtVMO058030; Sat, 24 May 2014 22:55:31 GMT (envelope-from glewis@svn.freebsd.org) Received: (from glewis@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4OMtVjG058029; Sat, 24 May 2014 22:55:31 GMT (envelope-from glewis@svn.freebsd.org) Message-Id: <201405242255.s4OMtVjG058029@svn.freebsd.org> From: Greg Lewis Date: Sat, 24 May 2014 22:55:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355098 - head/graphics/grads 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.18 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, 24 May 2014 22:55:32 -0000 Author: glewis Date: Sat May 24 22:55:31 2014 New Revision: 355098 URL: http://svnweb.freebsd.org/changeset/ports/355098 QAT: https://qat.redports.org/buildarchive/r355098/ Log: . Fix LIB_DEPENDS format. . Make STAGE compliant. Modified: head/graphics/grads/Makefile Modified: head/graphics/grads/Makefile ============================================================================== --- head/graphics/grads/Makefile Sat May 24 22:51:01 2014 (r355097) +++ head/graphics/grads/Makefile Sat May 24 22:55:31 2014 (r355098) @@ -16,9 +16,9 @@ COMMENT= The Grid Analysis and Display S BUILD_DEPENDS= ${LOCALBASE}/lib/libudunits2.a:${PORTSDIR}/science/udunits \ ${LOCALBASE}/lib/libsx.a:${PORTSDIR}/x11/libsx -LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libgd.so:${PORTSDIR}/graphics/gd \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png GNU_CONFIGURE= yes CONFIGURE_ENV+= SUPPLIBS="${LOCALBASE}" @@ -37,7 +37,6 @@ NETCDF_DESC= Build netcdf-support PORTDATA= * .endif -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} @@ -49,7 +48,7 @@ PORTEXAMPLES= * .endif .if ${PORT_OPTIONS:MHDF} -LIB_DEPENDS+= mfhdf.3:${PORTSDIR}/science/hdf +LIB_DEPENDS+= libmfhdf.so:${PORTSDIR}/science/hdf CONFIGURE_ARGS+= --with-hdf PLIST_SUB+= NETCDF="@comment " HDF="" .endif @@ -70,16 +69,16 @@ post-configure: post-install: .if !defined(NOPORTDATA) - ${MKDIR} "${DATADIR}" - cd ${WRKSRC}/data && ${COPYTREE_SHARE} . "${DATADIR}" + ${MKDIR} "${STAGEDIR}${DATADIR}" + cd ${WRKSRC}/data && ${COPYTREE_SHARE} . "${STAGEDIR}${DATADIR}" .endif .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} "${EXAMPLESDIR}" - cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . "${EXAMPLESDIR}" + ${MKDIR} "${STAGEDIR}${EXAMPLESDIR}" + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . "${STAGEDIR}${EXAMPLESDIR}" .endif .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} "${DOCSDIR}" - cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . "${DOCSDIR}" + ${MKDIR} "${STAGEDIR}${DOCSDIR}" + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . "${STAGEDIR}${DOCSDIR}" .endif .include