diff options
author | miwi <miwi@FreeBSD.org> | 2014-02-06 20:15:22 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-02-06 20:15:22 +0800 |
commit | 235755be5a5a83de681eb26546ff3574886e6b9b (patch) | |
tree | 7637017a5834dbc575f4b1085eae19b61162bf13 /editors/xcoral | |
parent | f4b41ee5b040fe88ae8ba13f0aa8db162609e59f (diff) | |
download | freebsd-ports-gnome-235755be5a5a83de681eb26546ff3574886e6b9b.tar.gz freebsd-ports-gnome-235755be5a5a83de681eb26546ff3574886e6b9b.tar.zst freebsd-ports-gnome-235755be5a5a83de681eb26546ff3574886e6b9b.zip |
- Stage support
Diffstat (limited to 'editors/xcoral')
-rw-r--r-- | editors/xcoral/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/editors/xcoral/Makefile b/editors/xcoral/Makefile index 0da6c9a1f91d..bfb6a16c528f 100644 --- a/editors/xcoral/Makefile +++ b/editors/xcoral/Makefile @@ -17,7 +17,6 @@ MAKE_JOBS_UNSAFE= yes PLIST_SUB= VERSION="${PORTVERSION}" -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's| regex\.c | |g ; \ s| -g | |g' ${WRKSRC}/Makefile.in @@ -25,12 +24,10 @@ post-patch: 's|"regex\.h"|<gnu/regex.h>|g' ${WRKSRC}/bm_search.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xcoral ${PREFIX}/bin - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/SmacLib/* ${DATADIR} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Doc/* ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/xcoral ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/SmacLib/* ${STAGEDIR}${DATADIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Doc/* ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |