diff options
author | kim <kim> | 2005-03-25 19:13:24 +0000 |
---|---|---|
committer | kim <kim> | 2005-03-25 19:13:24 +0000 |
commit | 7c53c3ed599b8896c1677d07b36319909760ecb1 (patch) | |
tree | e474cbc5c8b278f18567437000dab875d27edb9a /shells/tcsh/Makefile | |
parent | 6db4b04c27efe285c27bade14935c09a4c8515bd (diff) | |
download | pkgsrc-7c53c3ed599b8896c1677d07b36319909760ecb1.tar.gz |
Upgrade to tcsh 6.14.00
New Features:
* UTF-8 handling for both singe and double width characters
* termname builtin for testing whether a terminal type is
available in termcap/terminfo
Diffstat (limited to 'shells/tcsh/Makefile')
-rw-r--r-- | shells/tcsh/Makefile | 98 |
1 files changed, 53 insertions, 45 deletions
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile index e74a2c9a753..090f0d5ce62 100644 --- a/shells/tcsh/Makefile +++ b/shells/tcsh/Makefile @@ -1,11 +1,15 @@ -# $NetBSD: Makefile,v 1.47 2004/12/03 15:15:09 wiz Exp $ +# $NetBSD: Makefile,v 1.48 2005/03/25 19:13:24 kim Exp $ # -DISTNAME= tcsh-6.13.00 +DISTNAME= tcsh-6.14.00 CATEGORIES= shells MASTER_SITES= ftp://ftp.astron.com/pub/tcsh/ \ ftp://ftp.gw.com/pub/unix/tcsh/ \ - ftp://ftp.funet.fi/pub/unix/shells/tcsh/ + ftp://ftp.funet.fi/pub/unix/shells/tcsh/ \ + \ + ftp://ftp.astron.com/pub/tcsh/old/ \ + ftp://ftp.gw.com/pub/unix/tcsh/old/ \ + ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/ MAINTAINER= kim@tac.nyc.ny.us HOMEPAGE= http://www.tcsh.org/ @@ -34,49 +38,53 @@ PKG_SHELL?= ${PREFIX}/bin/tcsh post-install: @${ECHO} "Installing message catalogues" @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} - @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 \ - german:ISO_8859-1:de:AT:CH:DE \ - greek:ISO_8859-7:el:GR \ - italian:ISO_8859-1:it:CH:IT \ - ja:eucJP:ja:JP \ - pl:ISO_8859-2:pl:PL \ - russian:KOI8-R:ru:RU:SU \ - spanish:ISO_8859-1:es:ES \ - ukrainian:KOI8-U:uk:UA \ - ; \ + @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 \ + german:ISO_8859-1:de:AT:CH:DE \ + greek:ISO_8859-7:el:GR \ + italian:ISO_8859-1:it:CH:IT \ + ja:eucJP:ja:JP \ + pl:ISO_8859-2:pl:PL \ + russian:KOI8-R:ru:RU:SU \ + spanish:ISO_8859-1:es:ES \ + ukrainian:KOI8-U:uk:UA \ + ; \ + do \ + OIFS="${IFS}"; \ + IFS=":${IFS}"; \ + set -- $$i; \ + IFS="${OIFS}"; \ + l=$$1; shift; \ + s=$$1; shift; \ + c=$$1; shift; \ + o=; \ + while [ $$# -gt 0 ]; \ do \ - OIFS="${IFS}"; \ - IFS=":${IFS}"; \ - set -- $$i; \ - IFS="${OIFS}"; \ - l=$$1; shift; \ - s=$$1; shift; \ - c=$$1; shift; \ - o=; \ - while [ $$# -gt 0 ]; do \ - d=${NLSDIR}/$${c}_$$1.$${s}; \ - [ -d ${PREFIX}/$$d ] || \ - ${INSTALL_DATA_DIR} ${PREFIX}/$$d; \ - if [ -z "$$o" ]; then \ - o="$$d"; \ - ${INSTALL_DATA} ${WRKSRC}/tcsh.$${l}.cat \ - ${PREFIX}/$${d}/tcsh.cat; \ - else \ - ${LN} -f ${PREFIX}/$${o}/tcsh.cat \ - ${PREFIX}/$${d}; \ - fi; \ - ${ECHO} $${d}/tcsh.cat >> ${PLIST_SRC}; \ - shift 1; \ - done; \ - done \ + d=${NLSDIR}/$${c}_$$1.$${s}; \ + [ -d ${PREFIX}/$$d ] || \ + ${INSTALL_DATA_DIR} ${PREFIX}/$$d; \ + if [ -z "$$o" ]; \ + then \ + o="$$d"; \ + ${INSTALL_DATA} ${WRKSRC}/tcsh.$${l}.cat \ + ${PREFIX}/$${d}/tcsh.cat; \ + else \ + ${LN} -f ${PREFIX}/$${o}/tcsh.cat \ + ${PREFIX}/$${d}; \ + fi; \ + ${ECHO} $${d}/tcsh.cat >> ${PLIST_SRC}; \ + shift 1; \ + done; \ + done; \ fi .include "../../mk/bsd.pkg.mk" |