Only attempt to install the individual message catalogs if they have been

generated. Some versions of Solaris do not automatically generate the
catalogs.
This commit is contained in:
agc 2003-05-05 16:40:28 +00:00
parent 4b2b159f8f
commit f84a58a91c

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.42 2003/02/14 18:59:19 wiz Exp $
# $NetBSD: Makefile,v 1.43 2003/05/05 16:40:28 agc Exp $
#
DISTNAME= tcsh-6.12.00
@ -34,12 +34,13 @@ PKG_SHELL?= ${PREFIX}/bin/tcsh
post-install:
@${ECHO} "Installing message catalogues"
@[ -d ${PREFIX}/${NLSDIR}/C ] || \
${INSTALL_DATA_DIR} ${PREFIX}/${NLSDIR}/C
@${INSTALL_DATA} ${WRKSRC}/tcsh.C.cat ${PREFIX}/${NLSDIR}/C/tcsh.cat
@${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
@${ECHO} ${NLSDIR}/C/tcsh.cat >> ${PLIST_SRC}
@for i in \
@if [ -f ${WRKSRC}/tcsh.C.cat ]; then \
[ -d ${PREFIX}/${NLSDIR}/C ] || \
${INSTALL_DATA_DIR} ${PREFIX}/${NLSDIR}/C; \
${INSTALL_DATA} ${WRKSRC}/tcsh.C.cat ${PREFIX}/${NLSDIR}/C/tcsh.cat; \
${ECHO} ${NLSDIR}/C/tcsh.cat >> ${PLIST_SRC}; \
for i in \
et:ISO_8859-15:et:EE \
finnish:ISO_8859-1:fi:FI \
french:ISO_8859-1:fr:BE:CA:CH:FR \
@ -76,6 +77,7 @@ post-install:
${ECHO} $${d}/tcsh.cat >> ${PLIST_SRC}; \
shift 1; \
done; \
done
done \
fi
.include "../../mk/bsd.pkg.mk"