aboutsummaryrefslogtreecommitdiffstats
path: root/shells
Commit message (Collapse)AuthorAgeFilesLines
* Add a couple of missing files and remove extra directories on uninstall.Steve Price2001-04-154-0/+12
|
* Our `end' key defintion for TERM==cons25 seems to be different from others.David E. O'Brien2001-04-123-0/+42
| | | | | | | So make the same localization here that ache made in src/contrib/libreadline/terminal.c rev 1.2. Submitted by: sobomax
* Re-update to 1.03r with a hotfix from the author. PORTREVISION is setAkinori MUSHA2001-04-104-2/+26
| | | | | | to 1 now due to this whole matter. Submitted by: MAINTAINER
* Remove. Patch not needed any longer.David E. O'Brien2001-04-103-0/+0
| | | | Submitted by: sobomax
* Update to version 2.05.David E. O'Brien2001-04-1015-81/+33
| | | | Submitted by: sobomax
* Temporarily back out the previous update. There seems to be a nastyAkinori MUSHA2001-04-102-2/+2
| | | | bug in 1.03r. Now I'm talking with the author...
* Update to 1.03r.Akinori MUSHA2001-04-102-2/+2
| | | | | PR: ports/26471 Submitted by: Nobuhiro Yasutomi <nobu@psrc.isac.co.jp> (MAINTAINER)
* Make WRKDIR safe (fix broken on bento)Michael Haro2001-03-301-1/+1
|
* make WRKDIR safe (fix broken on bento)Michael Haro2001-03-301-2/+2
|
* Update to 1.03q.Akinori MUSHA2001-03-202-2/+2
| | | | Approved by: Nobuhiro Yasutomi <nobu@tech.isac.co.jp> (MAINTAINER)
* Update to 0.6.Akinori MUSHA2001-03-193-5/+13
|
* Fix a segmentation fault on the Alpha.David E. O'Brien2001-03-173-0/+60
| | | | | | | | | | | | | | | | As shown with this script : m(){ if [ $1 -eq 1 ];then echo $2 $3;else m $(($1-1)) $2 $4 $3;m 1 $2 \ $3 $4;m $(($1-1)) $4 $3 $2;fi;};if [ $# -eq 3 ]&&[ $3 -ge 1 -a $1 -le \ 3 -a $1 -ge 1 -a $2 -le 3 -a $2 -ge 1 -a $1 -ne $2 ];then m $3 $1 $2 $\ ((6-$1-$2)); else echo Usage: /bin/sh hanoi.sh from to num; fi #by rhb $ bash2 hanoi.sh 1 2 3 1 2 1 3 Segmentation fault (core dumped) Submitted by: Christian Weisgerber <naddy@mips.inka.de>
* Add ruby-shell, a Ruby library to run commands and control jobs like aAkinori MUSHA2001-03-166-0/+63
| | | | | | | | | | | shell. Pipes and redirections work just as expected: sh = Shell.cd("/foo") sh.cat("bar") | sh.tee("baz") > "baa" # or sh.transact do cat("bar") | tee("baz") > "baa" end
* Update to lastest versionKevin Lo2001-03-112-2/+2
| | | | | PR: 25666 Submitted by: maintainer
* I dropped maintainership or at least I tried to. Do it again.David E. O'Brien2001-03-111-1/+1
|
* Add wapsh 1.0, a system to allow remote shell logins via a WAPWill Andrews2001-03-119-0/+252
| | | | | | | phone or web browser. PR: 24313 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
* New port: mudsh: An "intelligent" game-like shellClive Lin2001-03-016-0/+55
| | | | | PR: ports/25441 Submitted by: George Reid <greid@dogma.freebsd-uk.eu.org>
* - Remove the custom do-extract target.Steve Price2001-02-281-8/+5
| | | | | | | | | - Cleanup the do-build target. - Allow the ksh binary to be statically linked but default to dynamic to support dynamic loading of 'builtin' functions. Submitted by: Jacques A. Vidrine <n@nectar.com> Reviewed by: maintainer
* Forgot to commit this file with the previous update to use the sourceSteve Price2001-02-271-0/+18
| | | | instead of binary distribution.
* Build from source now that it is available starting with versionSteve Price2001-02-2612-50/+183
| | | | | | | 2001-01-01.0000. PR: 25180 Submitted by: maintainer
* Update to version 0.009.Steve Price2001-02-2610-82/+106
| | | | | PR: 24119 Submitted by: Joseph Scott <joseph@randomnetworks.com>
* add vshnu, the New Visual ShellYing-Chieh Liao2001-02-266-0/+45
|
* Add secondary site to MASTER_SITESKevin Lo2001-02-251-1/+2
| | | | | PR: 25326 Submitted by: Ports Fury
* Put back my editor hints that were removed w/o permission.David E. O'Brien2001-02-073-0/+3
| | | | Note these are *FULLY* Satoshi approved for the past 4 years.
* Update to version 0.9.4Kevin Lo2001-01-289-27/+72
| | | | | PR: 24676 Submitted by: Ports Fury
* Master site disappeared. Use MASTER_SITE_LOCAL.Jacques Vidrine2001-01-223-4/+2
| | | | Noticed by: fenner
* Massive style enforcement - use ^I instead of spaces for variables identation.Maxim Sobolev2001-01-175-27/+24
|
* Remove nonexistent master site.Will Andrews2001-01-091-1/+0
| | | | Submitted by: ben
* Update to 0.9.3Kevin Lo2001-01-0712-144/+69
| | | | | PR: 24097 Submitted by: Ports Fury
* Goodbye, YEAR2000. Hello, 2001.Will Andrews2001-01-011-2/+0
| | | | Approved by: asami
* Add pash 2.2, a full-screen shell, similar to Midnight Commander. SomeWill Andrews2000-12-3113-0/+447
| | | | | | | | 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>
* Add osh 001127, a reimplementation of the old and obsolete shell versionWill Andrews2000-12-308-0/+89
| | | | | | | | | that was in standard use up to UNIX 6th Edition and was supplied as osh with UNIX 7th Edition. Its command language is a sparse subset of those of modern shells and is mostly common to both sh(1) and csh(1). PR: 23943 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
* Fix typoDavid E. O'Brien2000-12-233-3/+3
| | | | PR: 23202
* Update to version 6.10.00.Steve Price2000-12-113-16/+15
| | | | | PR: 23078 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
* Well, basic reading skills certainly do help occassionally - LorenPeter Pentchev2000-12-081-1/+1
| | | | | James Rittle suggested that he be added as port maintainer with another e-mail address.
* Bump PORTREVISION because of the added efree()/erealloc() patch.Peter Pentchev2000-12-081-1/+2
| | | | | | Also, let people blame Loren James Rittle for future es problems ;) Submitted by: Loren James Rittle <rittle@latour.rsch.comm.mot.com>
* free() before realloc() is bad, bad, bad.Peter Pentchev2000-12-081-0/+13
| | | | Submitted by: Loren James Rittle <rittle@latour.rsch.comm.mot.com>
* It's my main shell, so I have in interest in seeing it maintained.David E. O'Brien2000-11-303-3/+6
|
* Drop my maintainershipAndrey A. Chernov2000-11-303-3/+3
|
* Also fix the symlink race vulnerability in bashbug.sh.David E. O'Brien2000-11-301-0/+11
| | | | Obtained from: bash-1.14.7-23.5x.src.rpm
* Fix the symlink vulnerability noted at http://www.securityfocus.com/bid/2006David E. O'Brien2000-11-301-0/+28
| | | | Obtained from: RedHat bash-1.14.7-23.5x.src.rpm
* Add $FreeBSD$'s which help me in problem reports.David E. O'Brien2000-11-221-0/+1
|
* Fix the temporary file creation problem with <<Kris Kennaway2000-11-201-0/+1
|
* Depend on ncurses.5 after the upgrade of devel/ncurses.Thomas Gellekum2000-11-161-1/+1
|
* Make sure to point this to my local distfile directory instead ofJeroen Ruigrok van der Werven2000-11-101-1/+1
| | | | obrien's.
* Update port to the 20001106 version, which fixes a temporaryJeroen Ruigrok van der Werven2000-11-062-4/+2
| | | | | | file creation security problem. Approved by: obrien
* Mark forbidden for now, due to tempfile creation issues.Jeroen Ruigrok van der Werven2000-11-061-0/+1
| | | | | | Approved by: obrien [well, not really, but he knows I was working on fixing this and he urged me to reroll the distfile with the fix]
* Correct MASTER_SITES.Shigeyuki Fukushima2000-10-281-1/+1
| | | | Submitted by: Brett M Hogden <hogden@rge.com>
* Remove an unnecessary "strip" line in post-install.Patrick S. Gardella2000-10-191-1/+0
| | | | Submitted by: knu
* Update to 1.03oKevin Lo2000-10-123-6/+6
| | | | | PR: 21928 Submitted by: MAINTAINER
* Change PKGDIR from pkg/ to . Also fix places where ${PKGDIR} isSatoshi Asami2000-10-081-1/+1
| | | | | | spelled out (many of which are ${PKGDIR}/MESSAGE -> ${PKGMESSAGE} type fixes that shouldn't have been necessary) and the string "/pkg/" appear.
* Rename PLIST.nobuild to pkg-plist.nobuild.Satoshi Asami2000-10-081-1/+1
|
* Rename PLIST.doc to pkg-plist.doc.Satoshi Asami2000-10-081-1/+1
|
* Eliminate WRKSRC=${WRKDIR}/${PKGNAME} lines, as these will break whenSatoshi Asami2000-09-251-1/+1
| | | | | | | | | | | PORTREVISION or PORTEPOCH are defined. Most of these Makefiles were defining DISTNAME and WRKSRC (and sometimes EXTRACT_SUFX) -- change those to define DISTFILES only. Also, some of the WRKSRC lines were not even necessary, as they were defining it to the default value. Instigated by: Peter Pentchev <roam@orbitel.bg> and kris
* Update _kld to look (also) into /boot/kernel for kernel modules.Akinori MUSHA2000-09-062-2/+2
|
* - Update to 0.5.2Alexander Langer2000-07-224-59/+261
| | | | - Add NOPORTDOCS hunks
* Correct OSVERSION, which I raised for testing but forgot toAlexander Langer2000-07-221-2/+2
| | | | set correctly after that.
* Update to patchlevel 3.Alexander Langer2000-07-213-7/+7
|
* - Add support for sigset_t - changes.Alexander Langer2000-07-192-1/+27
| | | | | | - Claim maintainership. Approved by: cracauer
* - Update to verison 6.09.01Alexander Langer2000-07-164-23/+49
| | | | | | | | - Create symlink for /bin/tcsh (instead of installing full package) for -current/-stable (requested by obrien) PR: 19853 Submitted by: Ports Fury
* Push the FreeBSD version check down to 400021 for tcsh in base system.David E. O'Brien2000-07-121-1/+1
|
* Update MD5. Since ftp.freebsd.org never got a copy (and I don't have one)Will Andrews2000-07-101-1/+1
| | | | | | of the original, I could not check the diff. Submitted by: ade
* Use {MASTER,PATCH}_SITE_SUBDIR instead of make's sed capabilities.Steve Price2000-07-081-1/+2
|
* Update to 3.0.8. Remove useless echo in Makefile.Will Andrews2000-07-022-3/+2
|
* Get rid of the workaround regarding the libzsh-3.1.x.so generation, asAkinori MUSHA2000-06-302-12/+3
| | | | | | | | | zsh 3.1.9 was found to generate it also on 3-STABLE. This should fix the breakage of the package for 3-STABLE. Pointed out by: Masayuki FUKUI <fukui@sonic.nm.fujitsu.co.jp> Reviewed by: shige (Maintainer)
* Move the stragler's www.freebsd.org/~user distfiles to the officalDavid E. O'Brien2000-06-293-3/+6
| | | | MASTER_SITE_LOCAL site.
* Use ${MASTER_SITE_LOCAL}.Satoshi Asami2000-06-291-2/+3
|
* Unleash all of these ports upon the people. I no longer have any interestWill Andrews2000-06-223-3/+3
| | | | | in any of them, but will be happy to assign MAINTAINER to others and commit updates for them.
* Locally hosted distfiles moved to ftp.freebsd.org.Jacques Vidrine2000-06-201-2/+1
|
* Use the distfiles now on ftp.freebsd.org instead of from my home directorySteve Price2000-06-171-1/+1
| | | | on freefall.
* Add MASTER_SITE_SOURCEFORGE.Maxim Sobolev2000-06-152-3/+6
| | | | Submitted by: Ollivier Robert <roberto@keltia.freenix.fr>
* The zsh-functions distfile has been moved from freefall to ftp.Akinori MUSHA2000-06-081-1/+1
|
* Update to 3.1.9.Shigeyuki Fukushima2000-06-082-2/+2
|
* Unbroke the port.Maxim Sobolev2000-06-071-1/+2
| | | | | | | | The distfile is still available from www.research.att.com/sw/tools/reuse under the original conditions. PR: 18989 Submitted by: Jonathan Fosburgh <jonathan@fosburgh.org>
* Add dependency to autoconf.Shigeyuki Fukushima2000-06-071-0/+2
| | | | | PR: ports/19066 Submitted by: Andreas Schulz <ats@first.gmd.de>
* PORTVERSION=0.9b1 -> PORTVERSION=0.9.b1Tim Vanderhoek2000-06-041-1/+1
|
* Update to 3.1.7.Shigeyuki Fukushima2000-06-034-25/+89
| | | | Submitted by: knu@FreeBSD.org
* @dirrm share/doc/44bsd-cshSatoshi Asami2000-05-311-0/+1
| | | | Submitted by: bento
* Update to 3.1.7-pre-4.Akinori MUSHA2000-05-285-28/+59
| | | | | | | | | | No response from: shige Now the FreeBSD specific compdefs I submitted have been included within their distribution! Introduce a workaround for the libzsh shared library generation. This should be solved by the forthcoming 3.1.7 release.
* Re-add patch for failglob variable (see previous discussion on -commiters)Martin Cracauer2000-05-243-0/+453
|
* Fix trace() symbol clash with ncursesMartin Cracauer2000-05-243-0/+42
| | | | Untested (4-stable) commit by: ache
* Restore static linkingAndrey A. Chernov2000-05-233-0/+3
| | | | Submitted by: Martin Cracauer <cracauer@cons.org>
* Take over MAINTAINER since the current one is inactive. Also allow peopleWill Andrews2000-05-201-3/+4
| | | | | | to build a static binary without having to touch the Makefile. Approved by: asami
* Comment clean-ups.Tim Vanderhoek2000-05-131-1/+1
|
* Upgrade to 2.04Andrey A. Chernov2000-05-0821-807/+105
| | | | | failglob patch removed - this sort of patches must be submitted to bash maintainer
* Update to 3.1.7.p2.Shigeyuki Fukushima2000-05-033-3/+11
|
* Change MAINTAINER's address.Akinori MUSHA2000-05-012-2/+2
| | | | | PR: ports/18300 Submitted by: MAINTAINER
* Oops, I forgot the distfile zsh-3.1.7-pre-1.tar.gz was underAkinori MUSHA2000-04-291-6/+7
| | | | | | zsh/development/, not zsh/. Noticed by: cpiazza
* Update to 3.1.7.p1.Shigeyuki Fukushima2000-04-295-66/+249
| | | | Submitted by: knu@FreeBSD.org
* Add some completion definitions(compdef) of FreeBSD original commands.Shigeyuki Fukushima2000-04-264-158/+187
| | | | | Contributor, knu-san, thank you! And we need more and more compdefs! :)
* Since AT&T has released KSH93 as open-source, there is no longer aWill Andrews2000-04-241-0/+1
| | | | | | | binary distribution. PR: 17451 Submitted by: maintainer
* Revert erich's ports to ports@FreeBSD.org, as erich has been non-responsiveKris Kennaway2000-04-241-1/+1
| | | | | | | | for quite some time. If any non-committer wants to take over maintainership please let me know. Reviewed by: ports No response from: erich
* Correct whitespace introduced during PORTNAME conversion and portlintMichael Haro2000-04-2114-36/+34
|
* portlintMichael Haro2000-04-212-9/+9
|
* Disable this port for -currentAndrey A. Chernov2000-04-201-2/+7
| | | | Remove myself from MAINTAINER
* Fix MASTER_SITEKris Kennaway2000-04-171-1/+1
| | | | | PR: 18037 Submitted by: howardjp@wam.umd.edu
* Fix a typo.David E. O'Brien2000-04-151-2/+2
| | | | Submitted by: R. Imura <imura@af.airnet.ne.jp>
* Add the original 44bsd-csh for those that don't care for the new one.David E. O'Brien2000-04-151-0/+1
|
* This is the the traditional 4.4BSD /bin/csh C-shell, with additionalDavid E. O'Brien2000-04-155-0/+54
| | | | FreeBSD fixes and updates since 4.4BSD Lite was released.
* Portlint COMMENT's.Akinori MUSHA2000-04-151-1/+1
| | | | | | | Everybody should read the Handbook again! PR: ports/18008 Submitted by: tkato@prontomail.ne.jp
* Convert to PORTNAME/PORTVERSION.Satoshi Asami2000-04-141-3/+3
|
* FixChris Piazza2000-04-121-1/+2
| | | | Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
* Update with the new PORTNAME/PORTVERSION variablesChris Piazza2000-04-1017-46/+43
|
* Finish moving MAINTAINER for my ports.Will Andrews2000-03-223-3/+3
| | | | | | andrews@technologist.com -> will@FreeBSD.org. :-) Reminded by: asami
* Restore useless version required comments.David E. O'Brien2000-03-221-0/+1
|
* Remove the "version required" line.David E. O'Brien2000-03-201-1/+0
|
* Upgrade shells/perlsh to new version (perlsh 0.007).Chris D. Faulhaber2000-02-2912-52/+182
| | | | | | | | | | | | | | 1) Update pkg/PLIST. 2) Change to depend on perlsh's install mechanism. 3) New patch (patch-aa) fixes PREFIX problem. 4) Account for broken TCP/IP on MASTER_SITES. 5) General Makefile cleanups. 6) Addition of perlsh to perl5 virtual category. 7) Use PKGNAME to match port's name. 8) Remove unnecessary perl substitution. PR: 17031 Submitted by: Maintainer
* As per prior decision, move NO_LATEST_LINK from zsh to zsh-devel. AsSatoshi Asami2000-02-222-1/+1
| | | | | | | it is obvious from their names, NO_LATEST_LINK should have been in zsh-devel/Makefile when it was committed. We will revisit this issue after the release.
* Fix a problem with zsh.texi introduced when we upgraded our base-systemTorsten Blum2000-02-142-13/+101
| | | | | texinfo to 4.0. Things could be easier if people would use manpages instead of texinfo & Co.
* Style nits in the ports I maintain.David E. O'Brien2000-02-131-7/+7
|
* Add NO_LATEST_LINK, zsh-devel is the prefered port for now.Bill Fumerola2000-02-121-0/+1
|
* Change all www.freebsd.org/~user references to people.FreeBSD.org/~user,Peter Wemm2000-02-083-3/+3
| | | | | | as the days of the former are numbered. Reviewed by: asami
* Fix texinfo error.Shigeyuki Fukushima2000-02-051-2/+100
| | | | | Substitute @value{dsp} for ''. Substitute @t{@value{dsp}} for @t{'}@t{'}.
* Adding sash version 3.4.Steve Price2000-01-3020-0/+569
| | | | | | | A Stand-Alone shell combining many common utilities. PR: 16309 Submitted by: Patrick Gardella <patrick@freebsd.org>
* add WWW:Michael Haro2000-01-225-0/+10
| | | | | PR: 16261, 16262, 16263 Submitted by: joseph.scott@owp.csus.edu
* Add WWW to description of shells/bash1Michael Haro2000-01-221-0/+2
| | | | | PR: 16260 Submitted by: joseph.scott@owp.csus.edu
* Don't include bsd.port.pre.mk twice.Satoshi Asami2000-01-171-1/+1
|
* Add flash.Wes Peters2000-01-091-0/+1
| | | | | PR: 15995 Submitted by: Will Andrews <andrews@technologist.com>
* Add port for flash, a user-menu shell. This still needs aWes Peters2000-01-0916-0/+297
| | | | | | | good FreeBSD-specific template; Will is working on one. PR: 15995 Submitted by: Will Andrews <andrews@technologist.com>
* Don't need a period at end.Satoshi Asami2000-01-082-2/+2
|
* Remove info/dir from PLISTAde Lovett2000-01-081-1/+0
| | | | | PR: 15945 Submitted by: Alexander Langer <alex@big.endian.de>
* Add perlsh.Satoshi Asami2000-01-061-0/+1
| | | | Forgotten by: wes
* Commit perlsh 0.004pre2 port.Wes Peters2000-01-0410-0/+106
| | | | | PR: 15412 Submitted by: Will Andrews <andrews@technologist.com>
* Make sure we add ksh93 to /etc/shells.Steve Price1999-12-312-0/+9
| | | | | PR: 15788 Submitted by: maintainer
* Update /etc/shells after installation.Thomas Gellekum1999-12-291-0/+7
| | | | | PR: 15685 Submitted by: foxfair
* Don't coredump under certain conditions where the pid > 32000.Steve Price1999-12-293-0/+63
| | | | | PR: 12174 Submitted by: Dirk Meyer <dirk.meyer@home.dinoex.sub.org>
* Use --entry instead of --defentry so this port doesn't fail on olderSteve Price1999-12-293-3/+3
| | | | | | versions of FreeBSD. PR: 12746
* Add a MASTER_SITE.Steve Price1999-12-261-1/+2
| | | | PR: 15675
* fix installation of info filesMichael Haro1999-12-253-0/+3
| | | | | PR: 14761 Submitted by: Jeremy Lea <reg@shale.csir.co.za>
* Update to version 1.03l.Steve Price1999-12-242-4/+4
| | | | | PR: 15237 Submitted by: maintainer
* Merge from zsh-devel: build zshall(1) correctly.Bill Fumerola1999-12-081-0/+11
|
* Intelligent packaging. Portlint.Bill Fumerola1999-12-071-3/+2
| | | | | | Inspired by: PR: ports/15306 Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
* Add `failglob' option as announced on -ports mailing list.Martin Cracauer1999-12-043-0/+594
|
* Bash1 incorrectly restores signals when executing programs. This causesDavid E. O'Brien1999-11-283-0/+38
| | | | | | | | | | | | | | | many programs to use 100% CPU after a login session was ungracefully closed because SIGHUP will not be delivered to processes started from bash1 used as login shell (SIGHUP is ignored when bash1 is running as login shell and telnet connection is made because ignored SIGHUP is inherited from inetd->telnetd->getty->login; ignored SIGHUP is restored before starting any program from shell). These patches were derived from Bash 2.03, and attempt to impliement the Bash 2.03 behavior. PR: 14943 Submitted by: Max Khon (fjoe@iclub.nsu.ru)
* Use $(CC) -E rather than ``cpp'' to deal with cpp's new braindamage.David E. O'Brien1999-11-281-1/+10
|
* Activate the ksh93 port.Steve Price1999-11-271-0/+1
|
* Initial import of ksh93.Steve Price1999-11-276-0/+72
| | | | | | | The official AT&T release of KornShell 93. PR: 14497 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Upgrade to v3.0.7.Joseph Koshy1999-11-252-3/+3
|
* Fix reported in ports/14376 does not solve the problem essentially.Shigeyuki Fukushima1999-10-291-0/+11
| | | | | | | | Therefore I solve the problem by the another way. Thank you for your bug-report. PR: ports/14376 Submitted by: Will Andrews <andrews@technologist.com>
* change master siteAndrey A. Chernov1999-10-033-3/+3
| | | | Submitted by: Chet Ramey <chet@nike.ins.cwru.edu>
* Fix packaging. Move all version info out of PLIST using PLIST_SUB.Satoshi Asami1999-09-112-1/+2
|
* building a static binary has been broken. fix thatTorsten Blum1999-09-111-1/+1
|
* Upgrade to zsh 3.0.6.Torsten Blum1999-09-113-9/+9
|
* Updated to 1.03kSatoshi Taoka1999-09-072-3/+3
| | | | | PR: 13590 Submitted by: maintainer
* FreeBSD.ORG -> FreeBSD.orgMichael Haro1999-08-317-8/+8
| | | | | Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
* $Id$ -> $FreeBSD$Peter Wemm1999-08-3113-13/+13
|
* ln -> ${LN}Michael Haro1999-08-281-2/+2
|
* Update to tcsh 6.09Michael Haro1999-08-282-5/+7
| | | | | Submitted by: KATO Tsuguru tkato@prontomail.ne.jp PR: 13413
* echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuffMichael Haro1999-08-283-6/+6
| | | | to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
|
* chmod -> ${CHMOD}Michael Haro1999-08-231-3/+3
| | | | chown -> ${CHOWN}
* Update to 3.1.6.Shigeyuki Fukushima1999-08-065-18/+174
| | | | | PR: ports/12944 Submitted by: Chris Piazza <cpiazza@FreeBSD.org>
* Fix formatting glitch in job status output.Thomas Gellekum1999-07-211-0/+17
| | | | Submitted by: Michael Rendell <michael@cs.mun.ca>
* Upgrade to 5.2.14.Thomas Gellekum1999-07-162-7/+11
|
* Use __FreeBSD__ instead of FreeBSD so this builds on the Alpha too.Steve Price1999-07-061-0/+11
|
* #4/4 enforcing Caps, no periodTim Vanderhoek1999-06-2711-11/+11
| | | | | | | | | | | | [Has anyone figured-out what makes the number 393 so interesting to PW, now?] I wonder what was going through Jordan's head during his infamous $Id$-smashing commit. Before I forget.... Thanks to naddy@mips.rhein-neckar.de (Christian Weisgerber) for prompting this commit. See msg-id: 7geokh$tje$1@mips.rhein-neckar.de
* 1) Update ports/shells/rc to version 1.6 (the first release versionChris Piazza1999-06-264-49/+29
| | | | | | | | | | in many years.) 2) change MAINTAINER line to myself, this is with the approval of erich@FreeBSD.org (the current maintainer) 3) update the pkg/DESCR to include a WWW line PR: 12392 Submitted by: Scott A. Kenney <saken@hotel.rmta.org>
* Correct identity string on the alpha.Steve Price1999-06-231-0/+16
| | | | Noticed by: Jeff Wheat <jeff@cetlink.net>
* One of MASTER_SITES is disappeared, one is changed.SADA Kenji1999-06-081-4/+3
|
* Remove the test to create ${PREFIX}/share/info/dir as it is nowMichael Haro1999-06-0614-42/+7
| | | | in bsd.port.mk and this helps to unify the check and install.
* Mark broken for Alpha because of bus errors from unaligned accesses.Steve Price1999-05-311-1/+5
|
* Activate esh.Jacques Vidrine1999-05-291-1/+2
|
* The ``easy shell'', a small shell with Lisp-like syntax.Jacques Vidrine1999-05-297-0/+97
|
* use system libreadline for -currentAndrey A. Chernov1999-05-283-0/+3
|
* Fixes for freebsd,ELF,-currentAndrey A. Chernov1999-05-2815-45/+132
| | | | Upgrade docs to 2.03
* Update to 2.03 (maintainer did not respond)Martin Cracauer1999-04-199-36/+39
|
* Add back bash1.David E. O'Brien1999-03-311-1/+2
|
* Bash version 1.17 was much more popular than I thought.David E. O'Brien1999-03-3012-0/+251
| | | | (deleted to save space on the CDROM since I thought few were still using it)
* Delete the bash1 port.David E. O'Brien1999-03-291-2/+1
|
* Delete the bash 1.17 port. It served us well as we transitioned to bashDavid E. O'Brien1999-03-2912-251/+0
| | | | version 2.
* Update to 1.03jSeiichirou Hiraoka1999-03-172-4/+4
| | | | | PR: ports/10635 Submitted by: nobu@psrc.isac.co.jp
* Update to version 1.5b2.Steve Price1999-03-154-100/+25
| | | | | PR: 9882 Submitted by: Scott A. Kenney <saken+freebsd-ports@hotel.rmta.org>
* remove links on unexecAndrey A. Chernov1999-03-071-0/+5
|
* Update to FD-1.03iSeiichirou Hiraoka1999-03-042-5/+5
|
* MAINTAINER changed, because I was a committer.Shigeyuki Fukushima1999-03-011-2/+2
|
* Unbreak for ELF. I didn't hear from the maintainer, but the fix is aJoseph Koshy1999-02-231-4/+8
| | | | minor one (addition of LDFLAGS to CONFIGURE_ENV).
* ${MASTER_SITE_GNU} got rearranged in December; let's catch up.Bill Fenner1999-01-274-4/+8
|
* Break up the "plan9" category -- all the ports are where they belong, andSatoshi Asami1999-01-092-3/+4
| | | | | | "plan9" is a virtual category now. Reviewed by: the ports list
* Activate zsh-devel port.Steve Price1998-12-241-1/+2
|
* Update to version 3.1.5 after repository copy.Steve Price1998-12-246-55/+46
| | | | | PR: 8552 Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
* Mark this broken while Steve works on upgrade.Satoshi Asami1998-12-241-1/+3
|
* Sort entries. In particular, "large", "medium", "small" sort in this order,Satoshi Asami1998-12-071-2/+2
| | | | | | | | | | dispite their meanings. (Sometimes we're too smart for computers. :) Found by: sorting ports/INDEX by "sort -t '|' +1 -2" (Note: the whole "x11" category appears at the end with the above sort command, but I'll leave that the way it is for now -- "ls" shows it before other x11-* entries.)
* More MASTER_SITESMartin Cracauer1998-12-032-17/+12
| | | | | | Compacting DESCR Yes, I still plan to ELFify this one...
* Fixup CATEGORIES list.Steve Price1998-11-221-2/+2
| | | | Submitted by: Josh Gilliam <josh@quick.net>
* upgrade to 6.08.00Andrey A. Chernov1998-10-223-88/+5
|
* Move manpages to Makefile and use MAN* macros.Steve Price1998-10-042-3/+3
|
* Mark BROKEN for ELF.Justin M. Seger1998-09-291-1/+3
|
* Upgrade, 1.03g -> 1.03h.Masafumi Max NAKANE1998-09-045-11/+27
| | | | | PR: 7808 Submitted by: maintainer
* Update /etc/shells upon make install.Masafumi Max NAKANE1998-08-271-6/+11
| | | | ln -> ${LN}
* Update /etc/shells upon make install.Masafumi Max NAKANE1998-08-272-2/+12
|
* Remove miscellaneous manpages.Tim Vanderhoek1998-08-191-1/+0
|
* Removed manpages from pkg/PLISTDavid E. O'Brien1998-08-1411-32/+5
|
* Update to version 2.02.1.Steve Price1998-08-106-12/+12
| | | | | Submitted by: studded@dal.net Hoping that Andrey doesn't mind: steve :)
* Guard against a nonexistant /usr/share/info/dir.Steve Price1998-07-186-6/+15
| | | | PR: 7297
* Yikes! I missed a 'ja-' in my cvs co. Undo the previousSteve Price1998-07-046-86/+120
| | | | | | commit. Pointed out by: ache@FreeBSD.ORG
* Update to version 6.07.06.Steve Price1998-07-046-120/+86
| | | | | PR: 7112 Submitted by: maintainer
* Rename "bash" to "bash1" (the actual port is already repository copied).Satoshi Asami1998-06-261-2/+2
| | | | Requested by: chet@ins.CWRU.Edu
* Update to 0.9beta1.Martin Cracauer1998-06-084-93/+42
| | | | | | | | | | | | | | | | | | This version is now GNU configure driven. A word of warning for future committers so that you don't fall into the same trap as I did: The source has an printf-style funtion "print". This doesn't understand "%u", so the usual print-casting stuff for long long ints isn't printf("%u", (unsigned int)foo); but print("%d", (int)foo); which obviously looses in some cases, but I didn't take the effort to extend this function to take 64 bit value (just unsigned is limited as well). In this case, it isn't that bad, since it is used to print limits, but memory limits are internally stored as "mega" or "kilo" anyway.
* put MASTER_SITE_GNU firstAndrey A. Chernov1998-05-163-9/+9
|
* Link statically.Thomas Gellekum1998-04-291-1/+2
| | | | Prompted by: latest discussion in freebsd-security
* Upgrade to 2.02Andrey A. Chernov1998-04-286-45/+36
|
* Move the man pages to ${PREFIX}/man/ja from ja_JP.EUC.Masafumi Max NAKANE1998-04-052-3/+3
| | | | Forgotten by: whomever changed man/ja_JP.EUC -> man/ja in BSD.local.dist
* Add NO_LATEST_LINK -- these are not the latest versions, and we shouldn'tSatoshi Asami1998-04-041-1/+2
| | | | | depend on ordering in the parent Makefiles for the links to be created correctly.
* Upgrade, 1.03f -> 1.03g.Masafumi Max NAKANE1998-02-082-5/+5
| | | | | PR: 5657 Submitted by: maintainer
* Upgrade, 1.03e -> 1.03f.Masafumi Max NAKANE1997-12-202-5/+5
| | | | | Submitted by: maintainer PR: 5341
* Files from old MASTER_SITE moved to a new site.Justin M. Seger1997-11-281-2/+2
|
* Upgrade, 1.03a -> 1.03eMasafumi Max NAKANE1997-11-142-5/+5
| | | | | Submitted by: maintainer PR: 5006
* Upgrade to 2.01.1Andrey A. Chernov1997-11-066-15/+15
|
* Upgrade to 5.2.13.Thomas Gellekum1997-10-282-6/+6
|
* Upgrade to 3.0.5Torsten Blum1997-09-266-12/+12
|
* Upgrade, 1.01h -> 1.03a.Masafumi Max NAKANE1997-09-194-36/+19
| | | | | PR: 4581 Submitted by: maintainer
* @exec/@unexec directives that use %[FD] should never be put at theMasafumi Max NAKANE1997-09-072-2/+2
| | | | very beginning of the file. This has been causing pkg_add to fail.
* Make Bash obey ${PREFIX}David E. O'Brien1997-08-211-0/+11
|
* Forgot to disable NO_CDROMMartin Cracauer1997-07-151-2/+1
|
* Make this port almost portlint - clean (Description is still too long)Martin Cracauer1997-07-152-50/+14
| | | | Fix some typos.
* New version. This version is allowed to be on the CDROM.Martin Cracauer1997-07-152-5/+5
| | | | | PR: ports/4096 Reviewed by: Thomas Gellekum <tg@ihf.rwth-aachen.de>
* Install /etc/shells entry and info dir entryAndrey A. Chernov1997-06-286-3/+90
| | | | PR: 3971
* Get bash to not use GNU malloc. This solves the calloc() weirdnessJordan K. Hubbard1997-06-281-0/+19
| | | | in -current. Closes PR#3971
* Remove trailing dot from ${MAINTAINER}Bill Fenner1997-06-261-2/+2
| | | | Found by: distfile checker
* Update from 3.0.2 to 3.0.4Torsten Blum1997-06-256-22/+24
|
* Use install-info to edit the dir file.Masafumi Max NAKANE1997-06-164-16/+20
|
* Patch for zsh.texi to to add @direntry and @dircategory.Masafumi Max NAKANE1997-06-161-0/+13
|
* Patch for Doc/Makefile.in to:Masafumi Max NAKANE1997-06-162-0/+42
| | | | | - Add --no-split to the makeinfo command line. - Remove info files before makeinfo.
* Use install-info to edit the dir file.Masafumi Max NAKANE1997-06-161-0/+3
|
* Use install-info to edit the dir file.Masafumi Max NAKANE1997-06-161-2/+8
| | | | | The (now old) master_site doesn&t have bash-1.14.7 anymore, but GNU sites do, so update it.
* In documentation subdirectory, let ``make all'' build only the infoMasafumi Max NAKANE1997-06-161-2/+19
| | | | files.
* Patch up the texinfo file and add @dircategory and @direntry.Masafumi Max NAKANE1997-06-161-0/+13
|
* Upgrade to 2.01Andrey A. Chernov1997-06-079-111/+39
|
* Reduce number of patches needed for fnmatchAndrey A. Chernov1997-05-273-6/+6
|
* Use different way to nuke local fnmatch.h to not touch dependancesAndrey A. Chernov1997-05-273-6/+6
|
* FIx serious globbing error with \ due to wrong local fnmatch.h includedAndrey A. Chernov1997-05-273-3/+9
|
* fix handling of builtin limit command.Eric L. Hernes1997-04-101-36/+54
| | | | closes ports/3037
* ache writes:David E. O'Brien1997-02-171-1/+3
| | | | | | > This port is obsoleted by bash2, so I don't want to be MAINTAINER I *hate* bash2. So I'll take it over.
* Added the docs to the package.David E. O'Brien1997-02-169-18/+105
| | | | Commited with permission of the maintainer.
* This port is obsoleted by bash2, so I don't want to be MAINTAINERAndrey A. Chernov1997-02-141-3/+1
|
* Instruction to display English help message was wrong.Masafumi Max NAKANE1997-01-091-1/+2
| | | | Submitted by: Nobuhiro Yasutomi <nobu@psrc.isac.co.jp>
* Upgrade, 1.01 -> 1.01h.Masafumi Max NAKANE1997-01-063-75/+26
| | | | | Reviewed by: max Submitted by: nobu@psrc.isac.co.jp
* Upgrade, 1.01 -> 1.01h.Masafumi Max NAKANE1997-01-062-4/+6
| | | | | Submitted by: nobu@psrc.isac.co.jp Reviewed by: max
* Activated scsh.Masafumi Max NAKANE1997-01-031-1/+2
|
* New port, scsh:Masafumi Max NAKANE1997-01-0310-0/+470
| | | | | | A Unix shell embedded into Scheme, with access to all Posix calls Reviewed by: max Submitted by: cracauer@cons.org "Martin Cracauer"
* Add bash2, which has been repository-copied from bash before rollingSatoshi Asami1997-01-021-1/+2
| | | | it back from 2.0 to 1.14.7.
* Roll this back to 1.14.7.Satoshi Asami1997-01-028-204/+146
|
* Upgrade to 2.0Andrey A. Chernov1996-12-2723-329/+351
|
* Don't need WRKSRC.David E. O'Brien1996-12-274-12/+12
| | | | Add manpages to MANx. But don't compress them.
* Style police.David E. O'Brien1996-12-274-8/+8
|
* update checksum - the distfile has changedTorsten Blum1996-12-202-2/+2
|
* Sort this file once and for all, so nobody has to scramble it again. :)Satoshi Asami1996-12-202-8/+8
|
* Upgrade to 3.0.2Torsten Blum1996-12-196-20/+26
|
* DISTNAME goes before PKGNAME.Satoshi Asami1996-12-171-2/+2
|
* Upgrade to 6.07.02Andrey A. Chernov1996-12-164-14/+24
|