summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
Diffstat (limited to 'shells')
-rw-r--r--shells/bash-completion-classic/Makefile48
-rw-r--r--shells/bash-completion-classic/distinfo2
-rw-r--r--shells/bash-completion-classic/files/patch-aa40
-rw-r--r--shells/bash-completion-classic/pkg-descr7
-rw-r--r--shells/bash-completion-classic/pkg-message9
-rw-r--r--shells/psh/Makefile54
-rw-r--r--shells/psh/distinfo2
-rw-r--r--shells/psh/files/patch-aa10
-rw-r--r--shells/psh/pkg-descr4
-rw-r--r--shells/psh/pkg-plist61
10 files changed, 0 insertions, 237 deletions
diff --git a/shells/bash-completion-classic/Makefile b/shells/bash-completion-classic/Makefile
deleted file mode 100644
index 1a7d95fce310..000000000000
--- a/shells/bash-completion-classic/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-# New ports collection makefile for: bash_completion
-# Date created: 29 May 2003
-# Whom: kirk@strauser.com
-#
-# $FreeBSD$
-#
-
-PORTNAME= bash-completion
-PORTVERSION= 20041017
-CATEGORIES= shells
-MASTER_SITES= http://www.caliban.org/files/bash/
-
-MAINTAINER= kirk@strauser.com
-COMMENT= Programmable completion library for Bash 2.04 and up
-
-.if defined(WITH_BASH2)
-RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2
-.else
-RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
-.endif
-
-.if defined(WITH_GSED)
-RUN_DEPENDS+= gsed:${PORTSDIR}/textproc/gsed
-.endif
-
-WRKSRC= ${WRKDIR}/bash_completion
-NO_BUILD= yes
-
-PKGMESSAGE= ${WRKDIR}/pkg-message
-PLIST_FILES= etc/bash_completion
-
-pre-everything::
- @${ECHO}
- @${ECHO} "You can build ${PKGNAME} with the following options:"
- @${ECHO} "WITH_BASH2 use shells/bash2 instead of shells/bash"
- @${ECHO} "WITH_GSED use GNU sed to enable additional completions"
- @${ECHO}
-
-pre-patch:
- @${SED} 's|%%PREFIX%%|${PREFIX}|g' ${PKGDIR}/pkg-message >${PKGMESSAGE}
-
-do-install:
- ${INSTALL_DATA} ${WRKSRC}/bash_completion ${PREFIX}/etc/bash_completion
-
-post-install:
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.mk>
diff --git a/shells/bash-completion-classic/distinfo b/shells/bash-completion-classic/distinfo
deleted file mode 100644
index 4f0854c973a1..000000000000
--- a/shells/bash-completion-classic/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (bash-completion-20041017.tar.gz) = b9f75cc7b11e5768d360f4a28f44067b
-SIZE (bash-completion-20041017.tar.gz) = 102970
diff --git a/shells/bash-completion-classic/files/patch-aa b/shells/bash-completion-classic/files/patch-aa
deleted file mode 100644
index dd36d6b3651d..000000000000
--- a/shells/bash-completion-classic/files/patch-aa
+++ /dev/null
@@ -1,40 +0,0 @@
---- bash_completion.orig Mon Oct 25 10:10:30 2004
-+++ bash_completion Mon Oct 25 10:12:35 2004
-@@ -31,14 +31,15 @@
- if [ -n "${FUNCNAME:-}" ]; then
- # we're being sourced from within a function, so we can't use
- # 'declare', as this will create local variables within a function
-- BASH_COMPLETION="${BASH_COMPLETION:-/etc/bash_completion}" 2>/dev/null
-- BASH_COMPLETION_DIR="${BASH_COMPLETION_DIR:=/etc/bash_completion.d}" \
-+ BASH_COMPLETION="${BASH_COMPLETION:-/usr/local/etc/bash_completion}" \
-+ 2>/dev/null
-+ BASH_COMPLETION_DIR="${BASH_COMPLETION_DIR:=/usr/local/etc/bash_completion.d}" \
- 2>/dev/null
- else
-- declare -r BASH_COMPLETION="${BASH_COMPLETION:-/etc/bash_completion}" \
-+ declare -r BASH_COMPLETION="${BASH_COMPLETION:-/usr/local/etc/bash_completion}" \
- 2>/dev/null
- declare -r \
-- BASH_COMPLETION_DIR="${BASH_COMPLETION_DIR:=/etc/bash_completion.d}"\
-+ BASH_COMPLETION_DIR="${BASH_COMPLETION_DIR:=/usr/local/etc/bash_completion.d}"\
- 2>/dev/null
- fi
-
-@@ -1131,7 +1132,7 @@
- else
- len=${#cur}
- idx=0
-- for pval in $( /usr/sbin/postconf -m ); do
-+ for pval in $( postconf -m ); do
- if [[ "$cur" == "${pval:0:$len}" ]]; then
- COMPREPLY[$idx]="$pval:"
- idx=$(($idx+1))
-@@ -1207,7 +1208,7 @@
- fi
- len=${#cur}
- idx=0
-- for pval in $( /usr/sbin/postconf | cut -d ' ' -f 1 ); do
-+ for pval in $( postconf | cut -d ' ' -f 1 ); do
- if [[ "$cur" == "${pval:0:$len}" ]]; then
- COMPREPLY[$idx]="$pval$eqext"
- idx=$(($idx+1))
diff --git a/shells/bash-completion-classic/pkg-descr b/shells/bash-completion-classic/pkg-descr
deleted file mode 100644
index 4f48a96869d3..000000000000
--- a/shells/bash-completion-classic/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-This is a programmable completion library for bash2 users. It features the
-ability to tab-complete arguments for many common programs.
-
-WWW: http://www.caliban.org/bash/index.shtml
-
-- Kirk Strauser
-kirk@strauser.com
diff --git a/shells/bash-completion-classic/pkg-message b/shells/bash-completion-classic/pkg-message
deleted file mode 100644
index 7bbf0ac073f2..000000000000
--- a/shells/bash-completion-classic/pkg-message
+++ /dev/null
@@ -1,9 +0,0 @@
-
-The programmable completion library is not enabled by default for various
-reasons. To use it, you should source %%PREFIX%%/etc/bash_completion from
-your .bashrc file. For example:
-
- if [ -f %%PREFIX%%/etc/bash_completion ]; then
- . %%PREFIX%%/etc/bash_completion
- fi
-
diff --git a/shells/psh/Makefile b/shells/psh/Makefile
deleted file mode 100644
index 81595a0ebe44..000000000000
--- a/shells/psh/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-# New ports collection makefile for: perlsh
-# Date created: 11 Dec 1999
-# Whom: Will Andrews <andrews@technologist.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= perlsh
-PORTVERSION= 0.009
-PORTREVISION= 1
-CATEGORIES= shells perl5
-MASTER_SITES= http://www.gregorpurdy.com/gregor/psh/
-DISTNAME= psh-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= New shell made entirely out of a Perl script
-
-PERL_CONFIGURE= yes
-USE_REINPLACE= yes
-
-MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
-MAN3= Psh::Builtins.3 \
- Psh::Completion.3 \
- Psh::Job.3 \
- Psh::Joblist.3 \
- Psh::Locale::Base.3 \
- Psh::Locale::Default.3 \
- Psh::Locale::French.3 \
- Psh::Locale::German.3 \
- Psh::Locale::Italian.3 \
- Psh::Locale::Portuguese.3 \
- Psh::Locale::Spanish.3 \
- Psh::OS.3 \
- Psh::OS::Mac.3 \
- Psh::OS::Unix.3 \
- Psh::OS::Win.3 \
- Psh::PCompletion.3 \
- Psh::Parser.3 \
- Psh::PerlEval.3 \
- Psh::Util.3
-
-pre-install:
- ${REINPLACE_CMD} -e "s:/usr/local:${PREFIX}:g" ${WRKSRC}/Makefile;
- ${REINPLACE_CMD} -e "s:/usr/local/man/man1:${MAN3PREFIX}/man/man1:g" ${WRKSRC}/Makefile;
- ${REINPLACE_CMD} -e "s:/usr/local/lib/perl5/5.00503/man/man3:${MAN3PREFIX}/man/man3:g" ${WRKSRC}/Makefile;
-
-post-install:
- @${ECHO_MSG} "Updating /etc/shells"
- @${CP} /etc/shells /etc/shells.bak
- @(${GREP} -v ${PREFIX}/bin/psh /etc/shells.bak; \
- ${ECHO_CMD} ${PREFIX}/bin/psh) > /etc/shells
- @${RM} /etc/shells.bak
-
-.include <bsd.port.mk>
diff --git a/shells/psh/distinfo b/shells/psh/distinfo
deleted file mode 100644
index 28843464761b..000000000000
--- a/shells/psh/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (psh-0.009.tar.gz) = a6d9dd7dc80ceb7ac63203bda7976622
-SIZE (psh-0.009.tar.gz) = 96704
diff --git a/shells/psh/files/patch-aa b/shells/psh/files/patch-aa
deleted file mode 100644
index 1e15fc8f9b87..000000000000
--- a/shells/psh/files/patch-aa
+++ /dev/null
@@ -1,10 +0,0 @@
---- Makefile.PL Tue Mar 14 05:29:39 2000
-+++ Makefile.PL.new Fri Jan 5 16:36:49 2001
-@@ -25,6 +25,7 @@
-
- WriteMakefile (
- NAME => 'psh',
-+ PREFIX => '${PREFIX}',
- VERSION_FROM => 'psh',
- AUTHOR => 'Gregor N. Purdy (gregor@focusresearch.com)',
- ABSTRACT => 'Perl Shell',
diff --git a/shells/psh/pkg-descr b/shells/psh/pkg-descr
deleted file mode 100644
index 2c5f33fb190d..000000000000
--- a/shells/psh/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Perl Shell is a new shell that combines the power of bash
-and several other shells with the power of perl programming.
-
-WWW: http://www.gregorpurdy.com/gregor/psh/
diff --git a/shells/psh/pkg-plist b/shells/psh/pkg-plist
deleted file mode 100644
index 7d7abf3f71eb..000000000000
--- a/shells/psh/pkg-plist
+++ /dev/null
@@ -1,61 +0,0 @@
-bin/psh
-%%SITE_PERL%%/Psh/Builtins/Bg.pm
-%%SITE_PERL%%/Psh/Builtins/Bind.pm
-%%SITE_PERL%%/Psh/Builtins/Builtin.pm
-%%SITE_PERL%%/Psh/Builtins/Complete.pm
-%%SITE_PERL%%/Psh/Builtins/Dirs.pm
-%%SITE_PERL%%/Psh/Builtins/Drives.pm
-%%SITE_PERL%%/Psh/Builtins/Exit.pm
-%%SITE_PERL%%/Psh/Builtins/Fallback/Ls.pm
-%%SITE_PERL%%/Psh/Builtins/Fallback/Env.pm
-%%SITE_PERL%%/Psh/Builtins/Fc.pm
-%%SITE_PERL%%/Psh/Builtins/Fg.pm
-%%SITE_PERL%%/Psh/Builtins/Firsttime.pm
-%%SITE_PERL%%/Psh/Builtins/Function.pm
-%%SITE_PERL%%/Psh/Builtins/Help.pm
-%%SITE_PERL%%/Psh/Builtins/History.pm
-%%SITE_PERL%%/Psh/Builtins/Kill.pm
-%%SITE_PERL%%/Psh/Builtins/Jobs.pm
-%%SITE_PERL%%/Psh/Builtins/Pshtokenize.pm
-%%SITE_PERL%%/Psh/Builtins/Readline.pm
-%%SITE_PERL%%/Psh/Builtins/Set.pm
-%%SITE_PERL%%/Psh/Builtins/Source.pm
-%%SITE_PERL%%/Psh/Builtins/Strategy.pm
-%%SITE_PERL%%/Psh/Builtins/Symbols.pm
-%%SITE_PERL%%/Psh/Builtins/Rename.pm
-%%SITE_PERL%%/Psh/Builtins/Which.pm
-%%SITE_PERL%%/Psh/Locale/Base.pm
-%%SITE_PERL%%/Psh/Locale/Italian.pm
-%%SITE_PERL%%/Psh/Locale/Default.pm
-%%SITE_PERL%%/Psh/Locale/French.pm
-%%SITE_PERL%%/Psh/Locale/Spanish.pm
-%%SITE_PERL%%/Psh/Locale/German.pm
-%%SITE_PERL%%/Psh/Locale/Portuguese.pm
-%%SITE_PERL%%/Psh/OS/Unix.pm
-%%SITE_PERL%%/Psh/OS/Win.pm
-%%SITE_PERL%%/Psh/OS/Mac.pm
-%%SITE_PERL%%/Psh/Strategy/Auto_resume.pm
-%%SITE_PERL%%/Psh/Strategy/Auto_cd.pm
-%%SITE_PERL%%/Psh/Strategy/Debug.pm
-%%SITE_PERL%%/Psh/Strategy/Fallback_builtin.pm
-%%SITE_PERL%%/Psh/Strategy/Perlfunc.pm
-%%SITE_PERL%%/Psh/Strategy/Perlscript.pm
-%%SITE_PERL%%/Psh/Completion.pm
-%%SITE_PERL%%/Psh/OS.pm
-%%SITE_PERL%%/Psh/PCompletion.pm
-%%SITE_PERL%%/Psh/PerlEval.pm
-%%SITE_PERL%%/Psh/Job.pm
-%%SITE_PERL%%/Psh/Joblist.pm
-%%SITE_PERL%%/Psh/Util.pm
-%%SITE_PERL%%/Psh/Prompt.pm
-%%SITE_PERL%%/Psh/Builtins.pm
-%%SITE_PERL%%/Psh/Parser.pm
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/psh/.packlist
-%%SITE_PERL%%/Psh.pm
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/psh
-@dirrm %%SITE_PERL%%/Psh/Builtins/Fallback
-@dirrm %%SITE_PERL%%/Psh/Builtins
-@dirrm %%SITE_PERL%%/Psh/Locale
-@dirrm %%SITE_PERL%%/Psh/OS
-@dirrm %%SITE_PERL%%/Psh/Strategy
-@dirrm %%SITE_PERL%%/Psh