--- multitee-3.0.orig/debian/changelog +++ multitee-3.0/debian/changelog @@ -0,0 +1,24 @@ +multitee (3.0-4) unstable; urgency=low + + * Switch to cdbs. (Closes: #437593) + * Standards 3.7.2 (no changes). + + -- Roberto Lumbreras Mon, 13 Aug 2007 16:11:20 +0200 + +multitee (3.0-3) unstable; urgency=low + + * Updated to standards 3.6.1 + + -- Roberto Lumbreras Tue, 27 Jan 2004 02:05:00 +0100 + +multitee (3.0-2) unstable; urgency=low + + * standards 3.1.1 + + -- Roberto Lumbreras Sun, 9 Apr 2000 20:37:45 +0200 + +multitee (3.0-1) unstable; urgency=low + + * new package + + -- Roberto Lumbreras Wed, 4 Mar 1998 03:54:14 +0100 --- multitee-3.0.orig/debian/compat +++ multitee-3.0/debian/compat @@ -0,0 +1 @@ +5 --- multitee-3.0.orig/debian/control +++ multitee-3.0/debian/control @@ -0,0 +1,14 @@ +Source: multitee +Section: utils +Priority: optional +Maintainer: Roberto Lumbreras +Build-Depends: cdbs, debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: multitee +Architecture: any +Depends: ${shlibs:Depends} +Description: send multiple inputs to multiple outputs + multitee sends all input on file descriptor fdin to each + descriptor fdout. This is an improved version written by Dan + Bernstein of the multitee program for BSD systems. --- multitee-3.0.orig/debian/copyright +++ multitee-3.0/debian/copyright @@ -0,0 +1,14 @@ +This is the Debian GNU/Linux prepackaged version of multitee, an +improved version of the multitee program for BSD systems. Multitee +sends all input on file descriptor fdin to each descriptor fdout. + +This package was put together from sources obtained from: + http://cr.yp.to/software/multitee-3.0.shar.gz + +Copyrights +---------- +Copyright (C) 1991 Daniel J. Bernstein + +License +------- +Placed into the public domain. --- multitee-3.0.orig/debian/dirs +++ multitee-3.0/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/man/man1 +usr/share/doc/multitee --- multitee-3.0.orig/debian/install +++ multitee-3.0/debian/install @@ -0,0 +1 @@ +multitee usr/bin --- multitee-3.0.orig/debian/manpages +++ multitee-3.0/debian/manpages @@ -0,0 +1 @@ +multitee.1 --- multitee-3.0.orig/debian/rules +++ multitee-3.0/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/makefile.mk + --- multitee-3.0.orig/Makefile +++ multitee-3.0/Makefile @@ -0,0 +1,9 @@ + +all: multitee + +multitee: multitee.o sigdfl.o sigsched.o ralloc.o getopt.o fmt.o scan.o +tee: tee.o getopt.o ralloc.o fmt.o + +clean: + rm -f tee multitee *.o *.a *.0 *~ core + --- multitee-3.0.orig/multitee.c +++ multitee-3.0/multitee.c @@ -22,7 +22,6 @@ #include "fmt.h" #include "sod.h" #include -extern int errno; #ifndef EWOULDBLOCK #define EWOULDBLOCK 0 --- multitee-3.0.orig/sigsched.c +++ multitee-3.0/sigsched.c @@ -23,7 +23,6 @@ #include #include #include -extern int errno; #include "config/fdsettrouble.h" #include "sigsched.h" #include "ralloc.h"