freebsd-ports/devel/ccache/files/ccache-update-links.sh.in
Emanuel Haupt 85c54a34d9 Restore the possibility to define EXTRA_COMPILERS which must reside in $PATH.
PR:		158888
Submitted by:	Pan Tsu <inyaoo@gmail.com>
2011-08-03 18:17:53 +00:00

56 lines
1.2 KiB
Bash

#!/bin/sh
#
# Author: Emanuel Haupt <ehaupt@FreeBSD.org>
#
# $FreeBSD$
#
CCACHE_COMPILERS="%%CCACHE_COMPILERS%% ${EXTRA_COMPILERS}"
CCLINKDIR="%%CCLINKDIR%%"
PREFIX="%%PREFIX%%"
usage() {
cat << "EOUSAGE"
Usage: ccache-update-links [hv]
ccache-update-links maintains symlinks needed by ccache to work with additional
compilers.
-h, --help this help
-v verbose
EOUSAGE
}
case "$1"
in
-h|--help)
usage
;;
esac
# create compiler links
for comp in ${CCACHE_COMPILERS}
do
if command -v "${comp}" >/dev/null; then
if [ ! -L "${PREFIX}/${CCLINKDIR}/${comp}" ]; then
[ "$1" = "-v" ] && echo "create symlink for ${comp}"
ln -sf ${PREFIX}/bin/ccache ${PREFIX}/${CCLINKDIR}/${comp}
fi
if [ ! -L "${PREFIX}/${CCLINKDIR}/world/${comp}" ]; then
[ "$1" = "-v" ] && echo "create symlink for ${comp} (world)"
ln -sf ccache ${PREFIX}/${CCLINKDIR}/world/${comp}
fi
else
if [ -L "${PREFIX}/${CCLINKDIR}/${comp}" ]; then
[ "$1" = "-v" ] && echo "remove symlink for ${comp}"
rm -f ${PREFIX}/${CCLINKDIR}/${comp}
fi
if [ -L "${PREFIX}/${CCLINKDIR}/world/${comp}" ]; then
[ "$1" = "-v" ] && echo "remove symlink for ${comp} (world)"
rm -f ${PREFIX}/${CCLINKDIR}/world/${comp}
fi
fi
done