diff options
Diffstat (limited to 'shells/tcsh/Makefile')
-rw-r--r-- | shells/tcsh/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile index 9b93cf61e399..9fe099256440 100644 --- a/shells/tcsh/Makefile +++ b/shells/tcsh/Makefile @@ -1,17 +1,20 @@ # New ports collection makefile for: tcsh -# Version required: 6.06 +# Version required: 6.07.02 # Date created: 22 August 1994 # Whom: jkh # -# $Id: Makefile,v 1.14 1996/11/18 11:39:56 asami Exp $ +# $Id: Makefile,v 1.15 1996/11/18 14:13:54 asami Exp $ # -DISTNAME= tcsh-6.06 +PKGNAME= tcsh-6.07.02 +DISTNAME= tcsh-6.07 CATEGORIES= shells -MASTER_SITES= ftp://ee.cornell.edu/pub/tcsh/ +MASTER_SITES= ftp://ftp.deshaw.com/pub/tcsh/ MAINTAINER= ache@FreeBSD.ORG +GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/${PKGNAME} ALL_TARGET= all catalogs INSTALL_TARGET= install install.man MAN1= tcsh.1 @@ -19,13 +22,15 @@ MAN1= tcsh.1 post-install: chown bin.bin ${PREFIX}/bin/tcsh chown bin.bin ${PREFIX}/man/man1/tcsh.1 - cd ${WRKSRC}; install -c -o bin -g bin -m 444 tcsh.C.cat ${PREFIX}/share/nls/C/tcsh.cat - cd ${WRKSRC}; install -c -o bin -g bin -m 444 tcsh.french.cat ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat + cd ${WRKSRC}; ${INSTALL_DATA} tcsh.C.cat ${PREFIX}/share/nls/C/tcsh.cat + cd ${WRKSRC}; ${INSTALL_DATA} tcsh.french.cat ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat ln -sf ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat ${PREFIX}/share/nls/fr_BE.ISO_8859-1/tcsh.cat ln -sf ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat ${PREFIX}/share/nls/fr_CA.ISO_8859-1/tcsh.cat ln -sf ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat ${PREFIX}/share/nls/fr_CH.ISO_8859-1/tcsh.cat - cd ${WRKSRC}; install -c -o bin -g bin -m 444 tcsh.german.cat ${PREFIX}/share/nls/de_DE.ISO_8859-1/tcsh.cat + cd ${WRKSRC}; ${INSTALL_DATA} tcsh.german.cat ${PREFIX}/share/nls/de_DE.ISO_8859-1/tcsh.cat ln -sf ${PREFIX}/share/nls/de_DE.ISO_8859-1/tcsh.cat ${PREFIX}/share/nls/de_AT.ISO_8859-1/tcsh.cat ln -sf ${PREFIX}/share/nls/de_DE.ISO_8859-1/tcsh.cat ${PREFIX}/share/nls/de_CH.ISO_8859-1/tcsh.cat + install -d -o ${BINOWN} -g ${BINGRP} -m 755 ${PREFIX}/share/nls/el_GR.ISO_8859-7 + cd ${WRKSRC}; ${INSTALL_DATA} tcsh.greek.cat ${PREFIX}/share/nls/el_GR.ISO_8859-7/tcsh.cat .include <bsd.port.mk> |