diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-15 22:14:44 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-15 22:14:44 +0000 |
commit | c94682a2db2ec557333c727edc4f10156ecf82a9 (patch) | |
tree | 4745218b8433f3e7f7d394e201efc32bdbf99fc9 /devel/cxref | |
parent | e99e795000674b53df2c42ef28d0b757d7f07710 (diff) | |
download | ports-c94682a2db2ec557333c727edc4f10156ecf82a9.tar.gz ports-c94682a2db2ec557333c727edc4f10156ecf82a9.zip |
Support stage
USE_GMAKE->USES=gmake
Use shebangfix
Notes
Notes:
svn path=/head/; revision=333941
Diffstat (limited to 'devel/cxref')
-rw-r--r-- | devel/cxref/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/devel/cxref/Makefile b/devel/cxref/Makefile index 4c632963e7f9..763bc0c17366 100644 --- a/devel/cxref/Makefile +++ b/devel/cxref/Makefile @@ -13,18 +13,16 @@ COMMENT= C program cross-referencing & documentation tool LICENSE= GPLv2 -USE_GMAKE= yes +USES= gmake shebangfix +SHEBANG_FILES= contrib/xrgr.pl GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-cxref-cpp ALL_TARGET= programs -MAN1= cxref.1 cxref-query.1 - -NO_STAGE= yes post-install: - @${MKDIR} ${DATADIR} - @${INSTALL_SCRIPT} ${WRKSRC}/contrib/*.pl ${DATADIR} - @${INSTALL_DATA} ${WRKSRC}/contrib/*.el ${DATADIR} - @${INSTALL_DATA} ${WRKSRC}/contrib/README* ${DATADIR} + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/contrib/*.pl ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/contrib/*.el ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/contrib/README* ${STAGEDIR}${DATADIR} .include <bsd.port.mk> |