diff options
Diffstat (limited to 'devel/pty')
-rw-r--r-- | devel/pty/Makefile | 18 | ||||
-rw-r--r-- | devel/pty/distinfo | 2 | ||||
-rw-r--r-- | devel/pty/files/patch-Makefile | 13 | ||||
-rw-r--r-- | devel/pty/pkg-descr | 14 |
4 files changed, 0 insertions, 47 deletions
diff --git a/devel/pty/Makefile b/devel/pty/Makefile deleted file mode 100644 index 08fdb6b06afd..000000000000 --- a/devel/pty/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# Created by: James Bailie <jimmy@mammothcheese.ca> -# $FreeBSD$ - -PORTNAME= pty -PORTVERSION= 1.2 -CATEGORIES= devel -MASTER_SITES= http://www.mammothcheese.ca/ - -MAINTAINER= jimmy@mammothcheese.ca -COMMENT= Helps debug programs which fiddle with their tty settings - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - -PLIST_FILES= bin/pty man/man1/pty.1.gz - -.include <bsd.port.mk> diff --git a/devel/pty/distinfo b/devel/pty/distinfo deleted file mode 100644 index a9dd162eb214..000000000000 --- a/devel/pty/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (pty-1.2.tar.gz) = 08cda619f279b6b0cc46958197d7ee7b94db793b726adb741b24bb6aa6f74741 -SIZE (pty-1.2.tar.gz) = 3353 diff --git a/devel/pty/files/patch-Makefile b/devel/pty/files/patch-Makefile deleted file mode 100644 index 7122c871318d..000000000000 --- a/devel/pty/files/patch-Makefile +++ /dev/null @@ -1,13 +0,0 @@ ---- ./Makefile.orig 2014-02-18 11:25:22.776279198 +0100 -+++ ./Makefile 2014-02-18 11:25:42.052279336 +0100 -@@ -12,8 +12,8 @@ - - install: pty - gzip pty.1 -- ${INSTALL_MAN} pty.1.gz ${PREFIX}/man/man1/ -- ${INSTALL_PROGRAM} pty ${PREFIX}/bin -+ ${BSD_INSTALL_MAN} pty.1.gz ${DESTDIR}${MANPREFIX}/man/man1/ -+ ${BSD_INSTALL_PROGRAM} pty ${DESTDIR}${PREFIX}/bin - - deinstall: - rm -r ${PREFIX}/bin/pty diff --git a/devel/pty/pkg-descr b/devel/pty/pkg-descr deleted file mode 100644 index f7fe01a80756..000000000000 --- a/devel/pty/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -pty is a tool to help debug console programs which take the terminal out of -canonical mode, by allowing the program being debugged and the debugger to run -on separate terminal devices. - -To use pty, the programmer changes to the terminal device where he or she -wishes to interact with the program to be debugged, and at the shell -prompt, runs pty with no arguments. Pty will print out the filename of the -slave side of the pseudo-terminal it has opened. Inside the debugger, -running in another terminal device, one then redirects the program to be -debugged's IO to the slave (tty command of gdb). When you are finished -using pty, you must manually kill it. When pty starts it prints out its -pid. - -WWW: http://www.mammothcheese.ca/munger.html |