diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-10-11 21:47:45 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-10-11 21:47:45 +0000 |
commit | 652e2956ee0721786181dcf43d7559a17c9b93f9 (patch) | |
tree | 3168e7bc4854554f72118dc96560235482befc88 | |
parent | 551dd598bd50fa36ec5070b44fede97059cdbb6b (diff) | |
download | pkgsrc-652e2956ee0721786181dcf43d7559a17c9b93f9.tar.gz |
Initial import of FreeBSD's screen port.
-rw-r--r-- | misc/screen/Makefile | 25 | ||||
-rw-r--r-- | misc/screen/files/md5 | 1 | ||||
-rw-r--r-- | misc/screen/patches/patch-aa | 29 | ||||
-rw-r--r-- | misc/screen/patches/patch-ab | 32 | ||||
-rw-r--r-- | misc/screen/patches/patch-ac | 12 | ||||
-rw-r--r-- | misc/screen/pkg/COMMENT | 1 | ||||
-rw-r--r-- | misc/screen/pkg/DESCR | 7 | ||||
-rw-r--r-- | misc/screen/pkg/PLIST | 7 |
8 files changed, 114 insertions, 0 deletions
diff --git a/misc/screen/Makefile b/misc/screen/Makefile new file mode 100644 index 00000000000..038a1bbe361 --- /dev/null +++ b/misc/screen/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: screen +# Version required: 3.7.2 +# Date created: 25 Nov 1994 +# Whom: ache +# +# $Id: Makefile,v 1.1.1.1 1997/10/11 21:47:45 hubertf Exp $ +# + +DISTNAME= screen-3.7.2 +CATEGORIES= misc +MASTER_SITES= ftp://ftp.uni-erlangen.de/pub/utilities/screen/ \ + ${MASTER_SITE_GNU} + +MAINTAINER= ache@FreeBSD.ORG + +GNU_CONFIGURE= yes +MAN1= screen.1 + +post-install: + @if [ ! -f ${PREFIX}/info/dir ]; then \ + ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi + @install-info ${PREFIX}/info/screen.info ${PREFIX}/info/dir + +.include <bsd.port.mk> diff --git a/misc/screen/files/md5 b/misc/screen/files/md5 new file mode 100644 index 00000000000..c49ba370a4a --- /dev/null +++ b/misc/screen/files/md5 @@ -0,0 +1 @@ +MD5 (screen-3.7.2.tar.gz) = 2d6db5de7fb0cf849cc5a6f94203f029 diff --git a/misc/screen/patches/patch-aa b/misc/screen/patches/patch-aa new file mode 100644 index 00000000000..b28623063f7 --- /dev/null +++ b/misc/screen/patches/patch-aa @@ -0,0 +1,29 @@ +*** Makefile.in.bak Mon Jan 16 17:59:20 1995 +--- Makefile.in Wed Jan 18 04:13:40 1995 +*************** +*** 20,26 **** + ETCSCREENRC = `sed < config.h -n -e '/define ETCSCREENRC/s/^.*"\([^"]*\)"/\1/p'` + + CC = @CC@ +- CFLAGS = -O + LDFLAGS = + LIBS = @LIBS@ + +--- 20,25 ---- +*************** +*** 79,85 **** + + install: install_bin + cd doc ; $(MAKE) install +! -tic ${srcdir}/terminfo/screeninfo.src + # Better do this by hand. E.g. under RCS... + # cat ${srcdir}/terminfo/screencap >> /etc/termcap + @echo "termcap entry (${srcdir}/terminfo/screencap) should be installed manually." +--- 78,84 ---- + + install: install_bin + cd doc ; $(MAKE) install +! # -tic ${srcdir}/terminfo/screeninfo.src + # Better do this by hand. E.g. under RCS... + # cat ${srcdir}/terminfo/screencap >> /etc/termcap + @echo "termcap entry (${srcdir}/terminfo/screencap) should be installed manually." diff --git a/misc/screen/patches/patch-ab b/misc/screen/patches/patch-ab new file mode 100644 index 00000000000..fc6b4815d2c --- /dev/null +++ b/misc/screen/patches/patch-ab @@ -0,0 +1,32 @@ +*** doc/Makefile.in.orig Mon Sep 2 06:54:27 1996 +--- doc/Makefile.in Mon Jun 16 15:24:12 1997 +*************** +*** 20,26 **** + $(TEXI2DVI) $(srcdir)/screen.texinfo + + info screen.info: screen.texinfo +! $(MAKEINFO) $(srcdir)/screen.texinfo -o screen.info + + install: installdirs + $(INSTALL_DATA) $(srcdir)/screen.1 $(mandir)/man1/screen.1 +--- 20,27 ---- + $(TEXI2DVI) $(srcdir)/screen.texinfo + + info screen.info: screen.texinfo +! rm -f ./screen.info* +! $(MAKEINFO) --no-split $(srcdir)/screen.texinfo -o screen.info + + install: installdirs + $(INSTALL_DATA) $(srcdir)/screen.1 $(mandir)/man1/screen.1 +*************** +*** 28,36 **** + -if test -f screen.info; then d=.; else d=$(srcdir); fi; \ + if test -f $$d/screen.info; then \ + for f in $$d/screen.info*; do $(INSTALL_DATA) $$f $(infodir);done; \ +- if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \ +- install-info --infodir=$(infodir) $$d/screen.info; \ +- else true; fi; \ + fi + + uninstall: +--- 29,34 ---- diff --git a/misc/screen/patches/patch-ac b/misc/screen/patches/patch-ac new file mode 100644 index 00000000000..0b5d4cf3ff9 --- /dev/null +++ b/misc/screen/patches/patch-ac @@ -0,0 +1,12 @@ +--- doc/screen.texinfo.orig Tue Nov 21 03:03:15 1995 ++++ doc/screen.texinfo Mon Jun 16 15:16:36 1997 +@@ -2,6 +2,9 @@ + @c %**start of header + @setfilename screen.info + @settitle Screen User's Manual ++@direntry ++* Screen: (screen). Full-screen window manager. ++@end direntry + @finalout + @setchapternewpage odd + @c %**end of header diff --git a/misc/screen/pkg/COMMENT b/misc/screen/pkg/COMMENT new file mode 100644 index 00000000000..2c939d6c8e4 --- /dev/null +++ b/misc/screen/pkg/COMMENT @@ -0,0 +1 @@ +A multi-screen window manager. diff --git a/misc/screen/pkg/DESCR b/misc/screen/pkg/DESCR new file mode 100644 index 00000000000..efa776967e5 --- /dev/null +++ b/misc/screen/pkg/DESCR @@ -0,0 +1,7 @@ +Screen is a full-screen window manager that multiplexes a physical terminal +between several processes (typically interactive shells). +Each virtual terminal provides the functions of a DEC VT100 terminal and, in +addition, several control functions from the ANSI X3.64 (ISO 6429) and ISO +2022 standards (e.g. insert/delete line and support for multiple character +sets). There is a scrollback history buffer for each virtual terminal and a +copy-and-paste mechanism that allows moving text regions between windows. diff --git a/misc/screen/pkg/PLIST b/misc/screen/pkg/PLIST new file mode 100644 index 00000000000..0cfa8d01892 --- /dev/null +++ b/misc/screen/pkg/PLIST @@ -0,0 +1,7 @@ +bin/screen +bin/screen-3.7.2 +man/man1/screen.1.gz +@unexec install-info --delete %D/info/screen.info %D/info/dir +info/screen.info +@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir +@exec install-info %D/info/screen.info %D/info/dir |