From owner-svn-ports-head@FreeBSD.ORG Tue Jul 1 09:13:28 2014 Return-Path: Delivered-To: svn-ports-head@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 811517F2; Tue, 1 Jul 2014 09:13:28 +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 6E8B32878; Tue, 1 Jul 2014 09:13:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s619DSx6060804; Tue, 1 Jul 2014 09:13:28 GMT (envelope-from vg@svn.freebsd.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s619DSRY060803; Tue, 1 Jul 2014 09:13:28 GMT (envelope-from vg@svn.freebsd.org) Message-Id: <201407010913.s619DSRY060803@svn.freebsd.org> From: Veniamin Gvozdikov Date: Tue, 1 Jul 2014 09:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359969 - head/graphics/scantailor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 09:13:28 -0000 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 @@ -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