svn commit: r357459 - head/textproc/xincluder
Vanilla I. Shu
vanilla at FreeBSD.org
Wed Jun 11 10:12:48 UTC 2014
Author: vanilla
Date: Wed Jun 11 10:12:47 2014
New Revision: 357459
URL: http://svnweb.freebsd.org/changeset/ports/357459
QAT: https://qat.redports.org/buildarchive/r357459/
Log:
Stagify.
Modified:
head/textproc/xincluder/Makefile
Modified: head/textproc/xincluder/Makefile
==============================================================================
--- head/textproc/xincluder/Makefile Wed Jun 11 10:10:36 2014 (r357458)
+++ head/textproc/xincluder/Makefile Wed Jun 11 10:12:47 2014 (r357459)
@@ -28,25 +28,24 @@ PORTDOCS= apidoc index.html
.endif
SUB_FILES= xincluder.sh
-NO_STAGE= yes
do-install:
@${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..."
- @${MKDIR} ${JAVAJARDIR}
- @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${JAVAJARDIR}/
+ @${MKDIR} ${STAGEDIR}${JAVAJARDIR}
+ @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}/
@${ECHO_MSG} " [ DONE ]"
@${ECHO_MSG} -n ">> Installing scripts in ${PREFIX}/bin..."
@${ECHO_MSG} -n " xincluder"
- @${INSTALL_SCRIPT} ${WRKDIR}/xincluder.sh ${PREFIX}/bin/xincluder
+ @${INSTALL_SCRIPT} ${WRKDIR}/xincluder.sh ${STAGEDIR}${PREFIX}/bin/xincluder
.for suffix in ${SUFFIXES}
@${ECHO_MSG} -n " xincluder${suffix}"
- @${LN} ${PREFIX}/bin/xincluder ${PREFIX}/bin/xincluder${suffix}
+ @${LN} -s xincluder ${STAGEDIR}${PREFIX}/bin/xincluder${suffix}
.endfor
@${ECHO_MSG} " [ DONE ]"
.if !defined(NOPORTDOCS)
@${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..."
@cd ${WRKSRC} \
- && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; \
- && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \;
+ && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${STAGEDIR}${DOCSDIR}/{} \; \
+ && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${STAGEDIR}${DOCSDIR}/{} \;
@${ECHO_MSG} " [ DONE ]"
.endif
More information about the svn-ports-all
mailing list