mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a2797f6ab6
needed since NLS support is already in /bin/tcsh, and the message catalogs are currently useless since we can't switch them easily. Submitted by: maintainer
72 lines
1.9 KiB
Makefile
72 lines
1.9 KiB
Makefile
# New ports collection makefile for: ja-tcsh NLS catalog (Generic Japanese)
|
|
# Date created: 19 August 1998
|
|
# Whom: Issei Suzuki <issei@jp.FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tcsh-nls
|
|
PORTVERSION= 6.08.05
|
|
PKGNAMESUFFIX= -${CATALOGNAME}
|
|
CATEGORIES= japanese shells
|
|
MASTER_SITES= ${MASTER_SITE_PORTS_JP}
|
|
DISTNAME= tcsh-${PORTVERSION}.add2
|
|
|
|
MAINTAINER= issei@jp.FreeBSD.org
|
|
|
|
BUILD_DEPENDS= nkf:${PORTSDIR}/japanese/nkf
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${OSVERSION} >= 500006 || ${OSVERSION} < 500000 && ${OSVERSION} >= 400021
|
|
FORBIDDEN= tcsh in base system cannot deal with local message catalogs yet
|
|
.endif
|
|
|
|
CATALOGNAME?= generic
|
|
|
|
.if ${CATALOGNAME} == generic
|
|
MASTER_SITES+= ftp://ftp.astron.com/pub/tcsh/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
tcsh-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
NLSSRC= tcsh-${PORTVERSION}/nls/ja
|
|
.else
|
|
NLSSRC= ${DISTNAME}/nls/ja.${CATALOGNAME}
|
|
.endif
|
|
|
|
NLSDIR= ${PREFIX}/share/nls
|
|
GENCAT= /usr/bin/gencat
|
|
NKF= ${PREFIX}/bin/nkf
|
|
NLSSRC_FULL= ${WRKDIR}/${NLSSRC}
|
|
PORTDOCS= HISTORY.additional HowToMakeNLS.euc README.additional
|
|
|
|
post-patch:
|
|
@${MKDIR} ${NLSSRC_FULL}_sjis
|
|
@(cd ${NLSSRC_FULL}; \
|
|
for j in set[0-9] set[0-9][0-9] ; do \
|
|
${NKF} -Es $$j | \
|
|
${AWK} '{gsub(/[\x81-\x84\x88-\x9f\xe0-\xea]\\/,"&\\"); print; }' \
|
|
> ${NLSSRC_FULL}_sjis/$$j ; done ; \
|
|
)
|
|
|
|
do-build:
|
|
@(cd ${NLSSRC_FULL}; \
|
|
${CAT} set[0-9] set[0-9][0-9] > tcsh.m; \
|
|
${GENCAT} tcsh.cat tcsh.m; \
|
|
cd ${NLSSRC_FULL}_sjis; \
|
|
${CAT} set[0-9] set[0-9][0-9] > tcsh.m; \
|
|
${GENCAT} tcsh.cat tcsh.m; \
|
|
)
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${NLSSRC_FULL}/tcsh.cat ${NLSDIR}/ja_JP.EUC/tcsh.cat
|
|
${INSTALL_DATA} ${NLSSRC_FULL}/tcsh.m ${NLSDIR}/ja_JP.EUC/tcsh.m
|
|
${INSTALL_DATA} ${NLSSRC_FULL}_sjis/tcsh.cat ${NLSDIR}/ja_JP.SJIS/tcsh.cat
|
|
${INSTALL_DATA} ${NLSSRC_FULL}_sjis/tcsh.m ${NLSDIR}/ja_JP.SJIS/tcsh.m
|
|
.if !defined(NOPORTDOCS)
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/doc/tcsh
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|