1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Provide 'ccache.tar' tarball for easy use with ports-mgmt/tinderbox.

This commit is contained in:
Emanuel Haupt 2011-03-30 15:43:16 +00:00
parent 7a7671de9c
commit 838a9a041d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=272018
2 changed files with 15 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= ccache
PORTVERSION= 3.1.4
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= devel
MASTER_SITES= http://samba.org/ftp/ccache/ CRITICAL
@ -41,6 +41,16 @@ SUB_LIST+= CCACHE_COMPILERS="${CCACHE_COMPILERS}" \
ICCPREFIX="${LOCALBASE}/intel_cc_80/bin" \
HOWTO="${HOWTO}"
post-build:
.if !defined(TINDERBOX)
@${MKDIR} ${WRKDIR}/tb/opt
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${WRKDIR}/tb/opt
.for l in gcc cc g++ c++
@${LN} -sf ${PORTNAME} ${WRKDIR}/tb/opt/${l}
.endfor
@${TAR} -C ${WRKDIR}/tb -cpf ${WRKSRC}/${PORTNAME}.tar opt
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ccache ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1
@ -49,6 +59,8 @@ do-install:
${PREFIX}/${CCLINKDIR}/world/ccache
${INSTALL_SCRIPT} ${WRKDIR}/ccache-update-links.sh \
${PREFIX}/bin/ccache-update-links
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.tar ${DATADIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/MANUAL.html ${DOCSDIR}

View File

@ -1,6 +1,8 @@
bin/ccache
bin/ccache-update-links
%%DATADIR%%/ccache.tar
%%CCLINKDIR%%/world/ccache
@dirrm %%DATADIR%%
@exec echo "Create compiler links..."
@exec %D/bin/ccache-update-links -v
@unexec find %D/%%CCLINKDIR%% -type l -exec rm -f {} \;