diff options
author | tobez <tobez@FreeBSD.org> | 2004-06-22 09:24:56 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2004-06-22 09:24:56 +0000 |
commit | 8d952770400d483d89680f7463459bc8274db04f (patch) | |
tree | 641495559ace3939c38c366ce98c698189cda8cb /misc/dtach | |
parent | 0888921de08c5ebd83576880b0bfb3febba2a5ad (diff) | |
download | FreeBSD-ports-8d952770400d483d89680f7463459bc8274db04f.zip FreeBSD-ports-8d952770400d483d89680f7463459bc8274db04f.tar.gz |
Add dtach 0.6,
a small program that emulates the detach feature of
screen.
PR: 68179
Submitted by: bkhl@elektrubadur.se
Diffstat (limited to 'misc/dtach')
-rw-r--r-- | misc/dtach/Makefile | 34 | ||||
-rw-r--r-- | misc/dtach/distinfo | 2 | ||||
-rw-r--r-- | misc/dtach/pkg-descr | 7 | ||||
-rw-r--r-- | misc/dtach/pkg-plist | 1 |
4 files changed, 44 insertions, 0 deletions
diff --git a/misc/dtach/Makefile b/misc/dtach/Makefile new file mode 100644 index 0000000..e5cd773 --- /dev/null +++ b/misc/dtach/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: dtach +# Date created: 21 Jun 2004 +# Whom: bkhl@elektrubadur.se +# +# $FreeBSD$ +# + +PORTNAME= dtach +PORTVERSION= 0.6 +CATEGORIES= misc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= dtach + +MAINTAINER= bkhl@elektrubadur.se +COMMENT= A small program that emulates the detach feature of screen + +GNU_CONFIGURE= yes +ALL_TARGET= dtach + +MAN1= dtach.1 +PORTDOCS= COPYING README dtach.spec + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dtach ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/dtach.1 ${MANPREFIX}/man/man1 + +.ifndef(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/misc/dtach/distinfo b/misc/dtach/distinfo new file mode 100644 index 0000000..1562a8e --- /dev/null +++ b/misc/dtach/distinfo @@ -0,0 +1,2 @@ +MD5 (dtach-0.6.tar.gz) = 7f4d593220f685f614983274559ea62e +SIZE (dtach-0.6.tar.gz) = 49201 diff --git a/misc/dtach/pkg-descr b/misc/dtach/pkg-descr new file mode 100644 index 0000000..a98459e --- /dev/null +++ b/misc/dtach/pkg-descr @@ -0,0 +1,7 @@ +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. + +WWW: http://dtach.sourceforge.net/ diff --git a/misc/dtach/pkg-plist b/misc/dtach/pkg-plist new file mode 100644 index 0000000..a45f935 --- /dev/null +++ b/misc/dtach/pkg-plist @@ -0,0 +1 @@ +bin/dtach |