diff options
author | minskim <minskim> | 2006-06-17 14:26:47 +0000 |
---|---|---|
committer | minskim <minskim> | 2006-06-17 14:26:47 +0000 |
commit | 3fee8543683c0b51287ffea952d6e57a96321957 (patch) | |
tree | 8cb0fc2f2da32ac4e49bb0295b6875410c8ae1f7 | |
parent | 2901aa98ed4d56146fb287a194005125f9941f19 (diff) | |
download | pkgsrc-3fee8543683c0b51287ffea952d6e57a96321957.tar.gz |
Import dtach from pkgsrc-wip. Packaged by Francis Gudin.
dtach is a tiny program that emulates the detach feature of screen,
allowing you to run a program in an environment that is protected from
the controlling terminal and attach to it later. dtach does not keep
track of the contents of the screen, and thus works best with programs
that know how to redraw themselves.
-rw-r--r-- | misc/dtach/DESCR | 5 | ||||
-rw-r--r-- | misc/dtach/Makefile | 24 | ||||
-rw-r--r-- | misc/dtach/PLIST | 7 | ||||
-rw-r--r-- | misc/dtach/distinfo | 5 |
4 files changed, 41 insertions, 0 deletions
diff --git a/misc/dtach/DESCR b/misc/dtach/DESCR new file mode 100644 index 00000000000..b236366d06d --- /dev/null +++ b/misc/dtach/DESCR @@ -0,0 +1,5 @@ +dtach is a tiny program that emulates the detach feature of screen, +allowing you to run a program in an environment that is protected from +the controlling terminal and attach to it later. dtach does not keep +track of the contents of the screen, and thus works best with programs +that know how to redraw themselves. diff --git a/misc/dtach/Makefile b/misc/dtach/Makefile new file mode 100644 index 00000000000..6840d7ddb4d --- /dev/null +++ b/misc/dtach/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/06/17 14:26:47 minskim Exp $ + +DISTNAME= dtach-0.7 +CATEGORIES= misc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dtach/} + +MAINTAINER= fgudin@nerim.net +HOMEPAGE= http://dtach.sourceforge.net/ +COMMENT= Small program that emulates the detach feature of screen + +GNU_CONFIGURE= yes +BUILD_TARGET= dtach + +DOCS= COPYING README dtach.spec + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC:Q}/dtach ${PREFIX:Q}/bin + ${INSTALL_MAN} ${WRKSRC:Q}/dtach.1 ${PREFIX:Q}/man/man1 + ${INSTALL_DATA_DIR} ${PREFIX:Q}/share/doc/${PKGBASE:Q} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC:Q}/${f:Q} ${PREFIX:Q}/share/doc/${PKGBASE:Q} +.endfor + +.include "../../mk/bsd.pkg.mk" diff --git a/misc/dtach/PLIST b/misc/dtach/PLIST new file mode 100644 index 00000000000..54ab35f98d8 --- /dev/null +++ b/misc/dtach/PLIST @@ -0,0 +1,7 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2006/06/17 14:26:47 minskim Exp $ +bin/dtach +man/man1/dtach.1 +share/doc/dtach/COPYING +share/doc/dtach/README +share/doc/dtach/dtach.spec +@dirrm share/doc/dtach diff --git a/misc/dtach/distinfo b/misc/dtach/distinfo new file mode 100644 index 00000000000..b58ad04ec88 --- /dev/null +++ b/misc/dtach/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2006/06/17 14:26:47 minskim Exp $ + +SHA1 (dtach-0.7.tar.gz) = 7f163d7bb4db1d266d69a4090bede02128bbca43 +RMD160 (dtach-0.7.tar.gz) = a85b405a42ce59fa7df2893f2ffdf1b3458096f4 +Size (dtach-0.7.tar.gz) = 50900 bytes |