Date: Tue, 1 Jul 2014 09:13:28 +0000 (UTC) From: Veniamin Gvozdikov <vg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359969 - head/graphics/scantailor Message-ID: <201407010913.s619DSRY060803@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vg Date: Tue Jul 1 09:13:27 2014 New Revision: 359969 URL: http://svnweb.freebsd.org/changeset/ports/359969 QAT: https://qat.redports.org/buildarchive/r359969/ Log: - Support staging. Modified: head/graphics/scantailor/Makefile Modified: head/graphics/scantailor/Makefile ============================================================================== --- head/graphics/scantailor/Makefile Tue Jul 1 09:06:32 2014 (r359968) +++ head/graphics/scantailor/Makefile Tue Jul 1 09:13:27 2014 (r359969) @@ -12,10 +12,10 @@ COMMENT= Interactive post-processing too LICENSE= GPLv3 -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ - tiff:${PORTSDIR}/graphics/tiff \ - jbig:${PORTSDIR}/graphics/jbigkit \ - png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libjbig.so:${PORTSDIR}/graphics/jbigkit \ + libpng15.so:${PORTSDIR}/graphics/png BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs USES= cmake gettext iconv @@ -35,8 +35,6 @@ OPTIONS_DEFAULT= HTML_DESC= Install HTML Doxygen files LATEX_DESC= Install LaTeX Doxygen files -NO_STAGE= yes - OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> @@ -51,18 +49,18 @@ BUILD_DEPENDS+= doxygen:${PORTSDIR}/deve post-install: ${INSTALL_DATA} ${WRKSRC}/resources/icons/appicon-about.png \ - ${PREFIX}/share/pixmaps/${PORTNAME}.png + ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png .if ${PORT_OPTIONS:MHTML} || ${PORT_OPTIONS:MLATEX} @cd ${WRKSRC} && doxygen . .endif .if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MHTML} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} html ${DOCSDIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}) .endif .if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MLATEX} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} latex ${DOCSDIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} latex ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407010913.s619DSRY060803>