aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Grzybowski <wg@FreeBSD.org>2013-09-26 16:03:43 +0000
committerWilliam Grzybowski <wg@FreeBSD.org>2013-09-26 16:03:43 +0000
commite9e533c79f2193c24b33e50ac2517cf65ec1ed6a (patch)
treec7063957b4ce5a4f80adecca5a45de05b8913356
parentdd88614723a6ce4b248e667272e1d5c21d507344 (diff)
downloadports-e9e533c79f2193c24b33e50ac2517cf65ec1ed6a.tar.gz
ports-e9e533c79f2193c24b33e50ac2517cf65ec1ed6a.zip
mail/c-sig: allow staging
- Allow staging PR: ports/182399 Submitted by: Yasuhiro KIMURA <yasu utahime.org> (maintainer)
Notes
Notes: svn path=/head/; revision=328375
-rw-r--r--mail/c-sig/Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/mail/c-sig/Makefile b/mail/c-sig/Makefile
index 218b00508fef..94c7ad3d686d 100644
--- a/mail/c-sig/Makefile
+++ b/mail/c-sig/Makefile
@@ -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>