diff options
author | clive <clive@FreeBSD.org> | 2001-03-01 23:57:14 +0800 |
---|---|---|
committer | clive <clive@FreeBSD.org> | 2001-03-01 23:57:14 +0800 |
commit | a0870fdead7b76864610094b5563310eddea8cea (patch) | |
tree | 320399ec493c679b662210f3d6511f8d3f792b19 /shells | |
parent | 4d0de06f2547821f728e3ce1558deeb1a1d9dccc (diff) | |
download | freebsd-ports-gnome-a0870fdead7b76864610094b5563310eddea8cea.tar.gz freebsd-ports-gnome-a0870fdead7b76864610094b5563310eddea8cea.tar.zst freebsd-ports-gnome-a0870fdead7b76864610094b5563310eddea8cea.zip |
New port: mudsh: An "intelligent" game-like shell
PR: ports/25441
Submitted by: George Reid <greid@dogma.freebsd-uk.eu.org>
Diffstat (limited to 'shells')
-rw-r--r-- | shells/Makefile | 1 | ||||
-rw-r--r-- | shells/mudsh/Makefile | 39 | ||||
-rw-r--r-- | shells/mudsh/distinfo | 1 | ||||
-rw-r--r-- | shells/mudsh/pkg-comment | 1 | ||||
-rw-r--r-- | shells/mudsh/pkg-descr | 10 | ||||
-rw-r--r-- | shells/mudsh/pkg-plist | 3 |
6 files changed, 55 insertions, 0 deletions
diff --git a/shells/Makefile b/shells/Makefile index c7ed5640dfc9..218075b67a98 100644 --- a/shells/Makefile +++ b/shells/Makefile @@ -8,6 +8,7 @@ SUBDIR += esh SUBDIR += flash SUBDIR += ksh93 + SUBDIR += mudsh SUBDIR += osh SUBDIR += pash SUBDIR += pdksh diff --git a/shells/mudsh/Makefile b/shells/mudsh/Makefile new file mode 100644 index 000000000000..c17a310ccf8d --- /dev/null +++ b/shells/mudsh/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: mudsh +# Date created: 28 February 2001 +# Whom: George Reid <greid@ukug.uk.freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= mudsh +PORTVERSION= 20010228 +CATEGORIES= shells +MASTER_SITES= http://www.xirium.com/tech/mud-shell/download/ +DISTNAME= mudsh +EXTRACT_SUFX= +EXTRACT_ONLY= + +MAINTAINER= greid@ukug.uk.freebsd.org + +NO_WRKSUBDIR= yes + +NO_BUILD= yes + +post-extract: + @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +do-patch: + @(${SED} -e 's,/usr/local/bin/perl,${PERL},1' ${WRKSRC}/${DISTNAME} \ + > foo && ${MV} foo ${WRKSRC}/${DISTNAME}) + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin + +post-install: + @${ECHO} "updating /etc/shells" + @${CP} /etc/shells /etc/shells.bak + @(${GREP} -v ${PREFIX}/bin/mudsh /etc/shells.bak; \ + ${ECHO} ${PREFIX}/bin/mudsh) > /etc/shells + @${RM} /etc/shells.bak + +.include <bsd.port.mk> diff --git a/shells/mudsh/distinfo b/shells/mudsh/distinfo new file mode 100644 index 000000000000..bc60159065a8 --- /dev/null +++ b/shells/mudsh/distinfo @@ -0,0 +1 @@ +MD5 (mudsh) = df171bb06b16cd75d91d0209081d0c2b diff --git a/shells/mudsh/pkg-comment b/shells/mudsh/pkg-comment new file mode 100644 index 000000000000..b8fbdb72afd0 --- /dev/null +++ b/shells/mudsh/pkg-comment @@ -0,0 +1 @@ +An "intelligent" game-like shell diff --git a/shells/mudsh/pkg-descr b/shells/mudsh/pkg-descr new file mode 100644 index 000000000000..644e036f7d25 --- /dev/null +++ b/shells/mudsh/pkg-descr @@ -0,0 +1,10 @@ +Is there any reason why a shell (or command line) cannot be as +tolerant or as intelligent as a text adventure game like Zork, or a +MUD [Multi User Dungeon]? Is there any reason why a shell cannot work +like such a game? ("Go North", etc.) Actually, no and we have the +implementation to prove it. Have fun, and don't get eaten by a Grue! + +WWW: http://www.xirium.com/tech/mud-shell/index.html + +- George Reid +greid@ukug.uk.freebsd.org diff --git a/shells/mudsh/pkg-plist b/shells/mudsh/pkg-plist new file mode 100644 index 000000000000..e8964c6c0819 --- /dev/null +++ b/shells/mudsh/pkg-plist @@ -0,0 +1,3 @@ +bin/mudsh +@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells +@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells |