diff options
Diffstat (limited to 'shells/osh/Makefile')
-rw-r--r-- | shells/osh/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/shells/osh/Makefile b/shells/osh/Makefile new file mode 100644 index 0000000..59531ba --- /dev/null +++ b/shells/osh/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: osh +# Date created: 29 December 2000 +# Whom: George Reid <greid@ukug.uk.freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= osh +PORTVERSION= 001127 +CATEGORIES= shells +MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/ + +MAINTAINER= greid@ukug.uk.freebsd.org + +MAKEFILE= makefile + +MAN1= osh.1 + +post-install: + @${ECHO} "updating /etc/shells" + @${CP} /etc/shells /etc/shells.bak + @(${GREP} -v ${PREFIX}/bin/osh /etc/shells.bak; \ + ${ECHO} ${PREFIX}/bin/osh) > /etc/shells + @${RM} /etc/shells.bak + +.include <bsd.port.mk> |