--- retty-1.0.orig/blindtty.1 +++ retty-1.0/blindtty.1 @@ -0,0 +1,17 @@ +.TH BLINDTTY 1 2006-11-14 + +.SH NAME +blindtty - Run command in a detached terminal + +.SH SYNOPSIS +.B blindtty CMD [ARGS]... + +.SH DESCRIPTION + +.B blindtty +runs a command in a detached terminal. +You might find it useful to run it as "setsid blindtty CMD...". + +.RE +.SH "SEE ALSO" +retty(1), setsid(8), screen(1) --- retty-1.0.orig/Makefile +++ retty-1.0/Makefile @@ -9,9 +9,10 @@ blindtty: blindtty.o - + $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LIBS) retty: retty.o + $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LIBS) retty.o: bc-attach.i bc-detach.i --- retty-1.0.orig/debian/compat +++ retty-1.0/debian/compat @@ -0,0 +1 @@ +4 --- retty-1.0.orig/debian/rules +++ retty-1.0/debian/rules @@ -0,0 +1,36 @@ +#!/usr/bin/make -f + +build-indep: + +build build-arch: build-stamp +build-stamp: + $(MAKE) all + touch $@ + +install: build + dh_testdir + dh_testroot + dh_install + +binary-indep: + +binary binary-arch: install + dh_installdocs -a + dh_installman -a blindtty.1 retty.1 + dh_installchangelogs -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +clean: + dh_testdir + make clean + rm -f build-stamp + dh_clean + +.PHONY: build build-indep build-arch install binary-indep binary-arch binary clean --- retty-1.0.orig/debian/install +++ retty-1.0/debian/install @@ -0,0 +1,2 @@ +blindtty usr/bin +retty usr/bin --- retty-1.0.orig/debian/control +++ retty-1.0/debian/control @@ -0,0 +1,20 @@ +Source: retty +Section: utils +Priority: extra +Maintainer: Richard Hartmann +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.7.3 + +Package: retty +Architecture: i386 +Depends: ${shlibs:Depends} +Description: attach processes running on other terminals + retty is a tiny tool that lets you attach processes running on other + terminals. So you were running that mutt outside of screen at your home + machine and now wanna check your mail? Attach it with retty, do whatever you + want, detach it again and everything is as it was before. You don't have to + run them all in screen just in case. + . + Note that the tool is only very lightly tested, so take some care. Always + check first if attaching given application works before you will do it for + real. --- retty-1.0.orig/debian/copyright +++ retty-1.0/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Christoph Berg on +Tue, 14 Nov 2006 15:54:07 +0100. It has been taken over by Richard +Hartmann on Sun, 17 Feb 2008. + +It was downloaded from http://pasky.or.cz/~pasky/dev/retty/ + +Copyright and License: + Copyright (c) 2006 Petr Baudis, Jan Sembera + This program is licensed under GNU GPL version 2 and no later. + +On Debian systems, the complete text of the GNU GPL, version 2, can be +found in /usr/share/common-licenses/GPL-2. --- retty-1.0.orig/debian/changelog +++ retty-1.0/debian/changelog @@ -0,0 +1,18 @@ +retty (1.0-2ubuntu1) oneiric; urgency=low + + * Fix FTBFS with ld --as-needed. + + -- Matthias Klose Tue, 13 Sep 2011 23:16:02 +0200 + +retty (1.0-2) unstable; urgency=low + + * As per Myon's suggestion, I am taking over maintenance of this + package. (Closes: #428737) + + -- Richard Hartmann Sun, 17 Feb 2008 23:55:47 +0100 + +retty (1.0-1) unstable; urgency=low + + * Initial release (Closes: #398601). + + -- Christoph Berg Tue, 14 Nov 2006 15:56:35 +0100