Date: Sat, 25 Jan 2014 06:05:36 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340991 - head/databases/py-psycopg2 Message-ID: <201401250605.s0P65aam046238@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat Jan 25 06:05:35 2014 New Revision: 340991 URL: http://svnweb.freebsd.org/changeset/ports/340991 QAT: https://qat.redports.org/buildarchive/r340991/ Log: - Stage support Modified: head/databases/py-psycopg2/Makefile Modified: head/databases/py-psycopg2/Makefile ============================================================================== --- head/databases/py-psycopg2/Makefile Sat Jan 25 06:05:16 2014 (r340990) +++ head/databases/py-psycopg2/Makefile Sat Jan 25 06:05:35 2014 (r340991) @@ -26,18 +26,17 @@ EXAMPLES= binary.py copy_from.py copy_to DOCS= AUTHORS INSTALL README NEWS PKG-INFO -NO_STAGE= yes post-install: .if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${EXAMPLES} - @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .endif .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401250605.s0P65aam046238>