diff options
author | tobez <tobez@FreeBSD.org> | 2004-06-22 17:24:56 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2004-06-22 17:24:56 +0800 |
commit | 8d952770400d483d89680f7463459bc8274db04f (patch) | |
tree | 641495559ace3939c38c366ce98c698189cda8cb /misc | |
parent | 0888921de08c5ebd83576880b0bfb3febba2a5ad (diff) | |
download | freebsd-ports-gnome-8d952770400d483d89680f7463459bc8274db04f.tar.gz freebsd-ports-gnome-8d952770400d483d89680f7463459bc8274db04f.tar.zst freebsd-ports-gnome-8d952770400d483d89680f7463459bc8274db04f.zip |
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')
-rw-r--r-- | misc/Makefile | 1 | ||||
-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 |
5 files changed, 45 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index dfb28eb2e109..8c7686c15f20 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -67,6 +67,7 @@ SUBDIR += documancer SUBDIR += dog SUBDIR += dotfile + SUBDIR += dtach SUBDIR += dvorak7min SUBDIR += dvorakng SUBDIR += earthview diff --git a/misc/dtach/Makefile b/misc/dtach/Makefile new file mode 100644 index 000000000000..e5cd77339c22 --- /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 000000000000..1562a8e5fe8b --- /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 000000000000..a98459e0b2ff --- /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 000000000000..a45f9351e34b --- /dev/null +++ b/misc/dtach/pkg-plist @@ -0,0 +1 @@ +bin/dtach |