svn commit: r328375 - head/mail/c-sig
William Grzybowski
wg at FreeBSD.org
Thu Sep 26 16:03:43 UTC 2013
Author: wg
Date: Thu Sep 26 16:03:43 2013
New Revision: 328375
URL: http://svnweb.freebsd.org/changeset/ports/328375
Log:
mail/c-sig: allow staging
- Allow staging
PR: ports/182399
Submitted by: Yasuhiro KIMURA <yasu utahime.org> (maintainer)
Modified:
head/mail/c-sig/Makefile
Modified: head/mail/c-sig/Makefile
==============================================================================
--- head/mail/c-sig/Makefile Thu Sep 26 15:59:24 2013 (r328374)
+++ head/mail/c-sig/Makefile Thu Sep 26 16:03:43 2013 (r328375)
@@ -23,20 +23,15 @@ OPTIONS_DEFINE= DOCS
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
-NO_STAGE= yes
-.include <bsd.port.options.mk>
-
do-build:
cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile c-sig.el
do-install:
- ${MKDIR} ${LISPDIR}
- ${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${LISPDIR}
-.if ${PORT_OPTIONS:MDOCS}
- ${MKDIR} ${DOCSDIR}
+ @${MKDIR} ${STAGEDIR}${LISPDIR}
+ ${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${STAGEDIR}${LISPDIR}
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man
- ${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR}
+ ${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
-.endif
.include <bsd.port.mk>
More information about the svn-ports-head
mailing list