diff options
author | will <will@FreeBSD.org> | 2000-12-31 14:02:40 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-12-31 14:02:40 +0800 |
commit | f73d3c05e13e7b3979291354d74834287b63886c (patch) | |
tree | cdf441857947b9738f0f37162b915fdbdec238d3 /shells/pash/Makefile | |
parent | 76ae6282e2e7ab4d8bb608924a7209643b319690 (diff) | |
download | freebsd-ports-gnome-f73d3c05e13e7b3979291354d74834287b63886c.tar.gz freebsd-ports-gnome-f73d3c05e13e7b3979291354d74834287b63886c.tar.zst freebsd-ports-gnome-f73d3c05e13e7b3979291354d74834287b63886c.zip |
Add pash 2.2, a full-screen shell, similar to Midnight Commander. Some
patches were included to fix various bugs (including what I believe are
potential overflow bugs involving gets()).
PR: 23949
Submitted by: George Reid <greid@ukug.uk.freebsd.org>
Diffstat (limited to 'shells/pash/Makefile')
-rw-r--r-- | shells/pash/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/shells/pash/Makefile b/shells/pash/Makefile new file mode 100644 index 000000000000..207964d6649d --- /dev/null +++ b/shells/pash/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: pash +# Date created: 30 December 2000 +# Whom: George Reid <greid@ukug.uk.freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= pash +PORTVERSION= 2.2 +CATEGORIES= shells +MASTER_SITES= http://www.chez-pierre.com/pash/Archives/ +DISTNAME= pash.sources + +MAINTAINER= greid@ukug.uk.freebsd.org + +NO_WRKSUBDIR= yes + +MAKEFILE= makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pash ${PREFIX}/bin/pash + +post-install: + @${ECHO} "updating /etc/shells" + @${CP} /etc/shells /etc/shells.bak + @(${GREP} -v ${PREFIX}/bin/osh /etc/shells.bak; \ + ${ECHO} ${PREFIX}/bin/pash) > /etc/shells + @${RM} /etc/shells.bak + +.include <bsd.port.mk> |