Date: Sat, 24 May 2014 22:55:31 +0000 (UTC) From: Greg Lewis <glewis@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355098 - head/graphics/grads Message-ID: <201405242255.s4OMtVjG058029@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.options.mk> .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 <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405242255.s4OMtVjG058029>