svn commit: r334002 - in head/devel: py-binplist py-docopt

Antoine Brodin antoine at FreeBSD.org
Sat Nov 16 14:52:01 UTC 2013


Author: antoine
Date: Sat Nov 16 14:52:00 2013
New Revision: 334002
URL: http://svnweb.freebsd.org/changeset/ports/334002

Log:
  Stage support

Modified:
  head/devel/py-binplist/Makefile
  head/devel/py-docopt/Makefile

Modified: head/devel/py-binplist/Makefile
==============================================================================
--- head/devel/py-binplist/Makefile	Sat Nov 16 14:32:43 2013	(r334001)
+++ head/devel/py-binplist/Makefile	Sat Nov 16 14:52:00 2013	(r334002)
@@ -20,5 +20,4 @@ USE_PYDISTUTILS=easy_install
 PLIST_FILES=	bin/plist.py \
 		%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/devel/py-docopt/Makefile
==============================================================================
--- head/devel/py-docopt/Makefile	Sat Nov 16 14:32:43 2013	(r334001)
+++ head/devel/py-docopt/Makefile	Sat Nov 16 14:52:00 2013	(r334002)
@@ -25,17 +25,16 @@ EXAMPLESDIR=	${PREFIX}/share/examples/py
 
 OPTIONS_DEFINE=	DOCS EXAMPLES
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 post-install:
 .if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
 .endif
 .if ${PORT_OPTIONS:MEXAMPLES}
-	@${MKDIR} ${EXAMPLESDIR}
-	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
+	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list