From owner-cvs-all@FreeBSD.ORG Fri Sep 7 15:11:15 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE50316A418; Fri, 7 Sep 2007 15:11:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CA25413C457; Fri, 7 Sep 2007 15:11:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l87FBFmh022670; Fri, 7 Sep 2007 15:11:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l87FBFmj022668; Fri, 7 Sep 2007 15:11:15 GMT (envelope-from miwi) Message-Id: <200709071511.l87FBFmj022668@repoman.freebsd.org> From: Martin Wilke Date: Fri, 7 Sep 2007 15:11:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/pty Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Sep 2007 15:11:15 -0000 miwi 2007-09-07 15:11:15 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/pty Makefile distinfo pkg-descr Log: 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 -- James Bailie PR: ports/116179 Submitted by: James Bailie Revision Changes Path 1.2867 +1 -0 ports/devel/Makefile 1.1 +18 -0 ports/devel/pty/Makefile (new) 1.1 +3 -0 ports/devel/pty/distinfo (new) 1.1 +17 -0 ports/devel/pty/pkg-descr (new)