aboutsummaryrefslogtreecommitdiff
path: root/sysutils/screen
Commit message (Collapse)AuthorAgeFilesLines
* Allow $TERM to be longer than 20 bytes, allow for 63 bytes.Cy Schubert2011-11-083-3/+23
| | | | | | | PR: 162339 Notes: svn path=/head/; revision=285273
* Back out previous commit. It broke UTF8 functioning.Cy Schubert2011-05-037-76/+1
| | | | | | | Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> Notes: svn path=/head/; revision=273591
* Add support for KOI8-U.Cy Schubert2011-05-017-1/+76
| | | | | | | | PR: ports/156031 Submitted by: Valentin Nechayev <netch@netch.kiev.ua> Notes: svn path=/head/; revision=273389
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Add option to enable locking using user's password.Cy Schubert2011-01-042-1/+25
| | | | | | | PR: 153548 Notes: svn path=/head/; revision=267359
* Bjorn Zeeb discovered that screen(1) was mangling ut_host by performingCy Schubert2010-11-182-3/+70
| | | | | | | | | | | | | | strange translations. For example, foo.bar.com gets translated to foo:S.0. Unfortunately, this means that it also truncates IPv6 addresses, e.g. 2001:7b8:310::1 -> 2001:S.0. Wouldn't it be better to just use the hostname unmodified? ut_host is supposed to contain a hostname, not some arbitrary string. Submitted by: ed (Ed Schouten) Discovered by: Bjorn Zeeb Notes: svn path=/head/; revision=264788
* Apply a new improved utmp patch.Cy Schubert2010-07-222-35/+6
| | | | | | | Submitted by: ed Notes: svn path=/head/; revision=258045
* Screen failed to work properly under HEAD. This patch resolve the issue.Cy Schubert2010-02-097-79/+58
| | | | | | | Submitted by: ed Notes: svn path=/head/; revision=249471
* Make screen build on the latest HEAD (900008).Cy Schubert2010-01-276-22/+123
| | | | Notes: svn path=/head/; revision=248661
* Fix build under FreeBSD 9.0-CURRENT.Cy Schubert2009-12-211-4/+27
| | | | | | | PR: 141743 Notes: svn path=/head/; revision=246404
* Remove the NO_PACKAGE. Recent testing suggests the problem may haveMark Linimon2009-09-121-2/+0
| | | | | | | | | | been fixed in the 5.x timeframe. Tested by: trasz Hat: portmgr Notes: svn path=/head/; revision=241275
* Set termios' VERASE to DEL, for vte's autodetect feature.Cy Schubert2009-02-232-1/+24
| | | | | | | | | | | PR: 131858 Submitted by: Szalai Andras <szalai.bandi@gmail.com> Obtained from: screen.git commit 01fbf99748f536519605087d5937761790fc6ded by Micah Cowan <micah@cowan.name> see: http://git.savannah.gnu.org/cgit/screen.git/commit/?id=01fbf99748f536519605087d5937761790fc6ded Notes: svn path=/head/; revision=228953
* Implement a new knob WITH_SHOWENC to show the encoding of every windowCy Schubert2008-07-252-2/+39
| | | | | | | | | | on status line. PR: 124492 Submitted by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw> Notes: svn path=/head/; revision=217457
* Add optional patch to include hostname in screen's "locked" message.Cy Schubert2008-06-101-0/+21
| | | | | | | | PR: 122718 Submitted by: Valentin Nechayev <netch@netch.kiev.ua> Notes: svn path=/head/; revision=214608
* Add optional patch to include hostname in screen's "locked" message.Cy Schubert2008-06-101-1/+6
| | | | | | | | PR: 122718 Submitted by: Valentin Nechayev <netch@netch.kiev.ua> Notes: svn path=/head/; revision=214605
* Prefer openpty() over /dev/ptmx.Cy Schubert2008-06-101-1/+2
| | | | | | | | PR: 123591 Submitted by: Ed Schouten <ed@80386.nl> Notes: svn path=/head/; revision=214604
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* Increase support for 512 ptys as per src/sys/kern/tty_pty.c r1.155.Cy Schubert2008-05-062-2/+2
| | | | Notes: svn path=/head/; revision=212699
* Avoid make.conf namespace collisions.Cy Schubert2007-10-292-12/+10
| | | | | | | Submitted by: Pietro Cerutti <gahr@gahr.ch> Notes: svn path=/head/; revision=202349
* Alter the way we reference EXTRA_PATCHES to allow slave ports to addCy Schubert2007-10-291-1/+1
| | | | | | | | | additional patches. Submitted by: rafan Notes: svn path=/head/; revision=202329
* Remove redundant install of man page.Cy Schubert2007-10-261-3/+0
| | | | Notes: svn path=/head/; revision=202079
* Fix (enable) installation of man pages and info documents.Cy Schubert2007-10-251-4/+8
| | | | | | | PR: 117488 Notes: svn path=/head/; revision=202010
* Implement options.Cy Schubert2007-10-111-7/+13
| | | | | | | | PR: 115888 Submitted by: original patch by Edwin Groothuis <edwin@mavetju.org> Notes: svn path=/head/; revision=201301
* sysutils/screen: install error if world compiled with NO_INFOEdwin Groothuis2007-09-231-0/+11
| | | | | | | | | | | | | | | | | | The program /usr/bin/install-info doesn't exist in case the base system has been compiled with NO_INFO. This causes an error during installation of sysutils/screen because one of screen's make files rely on this program. I added handling of NO_INFO (and NO_MAN by the way). I suggest to let screen depend on print/texinfo if the user doesn't define NO_INFO and /usr/bin/install-info doesn't exist. PR: ports/115048 Submitted by: Bj\xf6rn K\xf6nig <bkoenig@cs.tu-berlin.de> Approved by: maintainer timeout Notes: svn path=/head/; revision=199977
* sysutils/screen: install error if world compiled with NO_INFOEdwin Groothuis2007-09-233-0/+65
| | | | | | | | | | | | | | | | | | The program /usr/bin/install-info doesn't exist in case the base system has been compiled with NO_INFO. This causes an error during installation of sysutils/screen because one of screen's make files rely on this program. I added handling of NO_INFO (and NO_MAN by the way). I suggest to let screen depend on print/texinfo if the user doesn't define NO_INFO and /usr/bin/install-info doesn't exist. PR: ports/115048 Submitted by: Björn König <bkoenig@cs.tu-berlin.de> Approved by: maintainer timeout Notes: svn path=/head/; revision=199976
* Add my people.freebsd.org distfiles directory as a distribution site.Cy Schubert2006-12-271-0/+1
| | | | Notes: svn path=/head/; revision=180874
* Primary FTP site is down and GNU sites do not have a copy of theCy Schubert2006-12-271-0/+1
| | | | | | | distfile. Add my website as another source for the distfile. Notes: svn path=/head/; revision=180872
* Update 4.0.2 --> 4.0.3 to fix two security bugs in the utf8 combiningCy Schubert2006-10-262-5/+4
| | | | | | | | | | | characters handling. http://lists.gnu.org/archive/html/screen-users/2006-10/msg00028.html documents this bugfix. Approved by: portmgr (marcus) Notes: svn path=/head/; revision=175526
* A new option is added, called "cjkwidth [on|off]". When itRong-En Fan2006-08-052-0/+232
| | | | | | | | | | | | | | | | | | | | is enabled, it treats CJK ambiguous characters as full width. This feature is very helpful for reading legacy CJK applications' output which assume all CJK characters are full width. This option is default off. The patch is obtained from http://www.mhsin.org/~mhsin/patches/screen/patch-cjkwidth The credit belongs to Michael Hsin <mhsin _at mhsin.org>. It also has been submitted to upstream: http://savannah.gnu.org/bugs/?func=detailitem&item_id=16666 PR: ports/96167 Submitted by: rafan Approved by: maintainer timeout (3 months and 2 weeks) Notes: svn path=/head/; revision=169764
* Fix configure step so that it doesn't dump core on FreeBSD/amd64 due to aCy Schubert2006-05-302-5/+6
| | | | | | | | | missing prototype. Submitted by: ru Notes: svn path=/head/; revision=163962
* Add a trivial patch to fix screen compiles on post-pmtx FreeBSD 7-currentAlexander Kabaev2006-02-101-0/+15
| | | | | | | | | systems. Approved by: maintainer timeout Notes: svn path=/head/; revision=155621
* SHA256ifyEdwin Groothuis2006-01-241-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154303
* Move misc/screen to sysutils category after repocopy, since it'sKirill Ponomarev2005-11-051-1/+1
| | | | | | | | | | more appropriate place for such kind of software. PR: ports/88497 Submitted by: krion Notes: svn path=/head/; revision=147404
* Fix handling of utmp entries on sparc64.Philip Paeps2005-10-212-1/+18
| | | | | | | | Approved by: cy (maintainer) Obtained from: NetBSD Notes: svn path=/head/; revision=146030
* Add support for 256 colour Xterm.Cy Schubert2005-09-161-1/+9
| | | | | | | | PR: 81285 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> Notes: svn path=/head/; revision=142939
* Add support for NONETHACK compile time option.Cy Schubert2005-09-161-0/+4
| | | | | | | | PR: 76170 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> Notes: svn path=/head/; revision=142938
* Fix deinstallation.Volker Stolz2004-08-301-2/+2
| | | | | | | | | PR: ports/69282 Submitted by: Hideyuki KURASHINA (rushani@) Approved by: maintainer timeout (cy's busy in RL) Notes: svn path=/head/; revision=117634
* [PATCH] misc/screen: Utilize EXAMPLESDIREdwin Groothuis2004-07-192-4/+7
| | | | | | | | | | | | | | | | Utilize EXAMPLESDIR to improves layout; i.e., configuration file -> ${PREFIX}/etc sample configuration file -> ${PREFIX}/share/examples/${PORTNAME} This change helps if many configuration files and sample ones exist. PR: ports/58385 Submitted by: Hideyuki KURASHINA <rushani@FreeBSD.org> Approved by: maintainer timeout Notes: svn path=/head/; revision=113963
* Set NO_PACKAGE; screen tends to go into a loop using all available CPUKris Kennaway2004-06-201-0/+2
| | | | | | | | | | | when used from the package. Perhaps it's hard-coding information from the build system that is not true in general. Reported by: many people Freaking out: peter Notes: svn path=/head/; revision=111879
* Add SIZE.Cy Schubert2004-03-181-0/+1
| | | | | | | Submitted by: trevor Notes: svn path=/head/; revision=104371
* Update to latest release 4.0.2.Sergey A. Osokin2004-01-265-64/+39
| | | | | | | | | Use DATADIR macro. Approved by: cy (maintainer) Notes: svn path=/head/; revision=99202
* Fix buffer overflow that allows privilege escalation for local users.Cy Schubert2003-12-023-1/+32
| | | | | | | | Approved by: will (using his portmgr hat) Obtained from: Timo Sirainen <tss@iki.fi> on BUGTRAQ Notes: svn path=/head/; revision=94846
* As a followup of ports/57028, remove more "'"s from the keybindings.Edwin Groothuis2003-10-131-5/+14
| | | | | | | Submitted by: Neil Darlow <neil@darlow.co.uk> Notes: svn path=/head/; revision=91008
* Added patch to remove warning during startup.Edwin Groothuis2003-10-133-3/+16
| | | | | | | | | | | (also use INFO files feature) PR: ports/57028 Submitted by: KIMURA Yasuhiro <yasu@utahime.org> Approved by: cy@ temp absence note Notes: svn path=/head/; revision=90978
* Udate 4.0.0 --> 4.0.1, 4.0.0 distfile is missing causing bento buildsCy Schubert2003-09-192-2/+2
| | | | | | | | | | to fail. 4.0.1 fixes two bugs with the parser. Noticed by: Allen Landsidel <all@biosys.net> and bento Approved by: marcus (wearing his portsmgr hat) Notes: svn path=/head/; revision=89064
* Fix segfault on Alpha platform.Cy Schubert2003-09-141-1/+7
| | | | | | | Approved by: marcus (wearing his portsmgr hat) Notes: svn path=/head/; revision=88978
* Fix: multiuser screen fails with "attach attempt with bad pid"Cy Schubert2003-09-101-0/+11
| | | | | | | PR: 55326 Notes: svn path=/head/; revision=88880
* Update 3.9.15 --> 4.0.0Cy Schubert2003-09-102-3/+2
| | | | Notes: svn path=/head/; revision=88879
* Fix ncurses core dump.Cy Schubert2003-05-042-0/+19
| | | | | | | | PR: gnu/23058 Submitted by: keramida Notes: svn path=/head/; revision=80119
* Update 3.9.13 -> 3.9.15Cy Schubert2003-03-293-2/+3
| | | | Notes: svn path=/head/; revision=77688