--- vtgrab-0.1.8.orig/Makefile.am +++ vtgrab-0.1.8/Makefile.am @@ -2,7 +2,7 @@ rvc_SOURCES = rvc.c rvcd_SOURCES = rvcd.c xfree86.c twiglet_SOURCES = nrvc.c simple_panel.c -twiglet_LDFLAGS = -lncurses +twiglet_LDADD = -lncurses docdir=$(datadir)/doc/$(PACKAGE) doc_DATA = doc/rvc CFLAGS = -D_GNU_SOURCE -Wall -W -O2 --- vtgrab-0.1.8.orig/Makefile.in +++ vtgrab-0.1.8/Makefile.in @@ -66,7 +66,7 @@ rvc_SOURCES = rvc.c rvcd_SOURCES = rvcd.c xfree86.c twiglet_SOURCES = nrvc.c simple_panel.c -twiglet_LDFLAGS = -lncurses +twiglet_LDADD = -lncurses docdir = $(datadir)/doc/$(PACKAGE) doc_DATA = doc/rvc CFLAGS = -D_GNU_SOURCE -Wall -W -O2 @@ -93,7 +93,6 @@ rvcd_DEPENDENCIES = rvcd_LDFLAGS = twiglet_OBJECTS = nrvc.o simple_panel.o -twiglet_LDADD = $(LDADD) twiglet_DEPENDENCIES = COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) --- vtgrab-0.1.8.orig/debian/changelog +++ vtgrab-0.1.8/debian/changelog @@ -0,0 +1,33 @@ +vtgrab (0.1.8-3ubuntu2) xenial; urgency=medium + + * No-change rebuild for ncurses6 transition. + + -- Matthias Klose Sun, 07 Feb 2016 09:56:12 +0000 + +vtgrab (0.1.8-3ubuntu1) oneiric; urgency=low + + * Fix FTBFS with ld --as-needed. + + -- Matthias Klose Mon, 12 Sep 2011 17:13:56 +0200 + +vtgrab (0.1.8-3) unstable; urgency=low + + * remove /bin after moving out binaries (closes: #345287) + * fixing copyright file (closes: #302912) + * rebuild to remove /usr/bin transition (closes: #359598) + + -- RISKO Gergely Wed, 31 May 2006 01:26:08 +0200 + +vtgrab (0.1.8-2) unstable; urgency=low + + * build-dep fix (closes: Bug#110077) + + -- RISKO Gergely Wed, 29 Aug 2001 19:49:43 +0200 + +vtgrab (0.1.8-1) unstable; urgency=low + + * Initial Release. (closes: Bug#71607) + + -- RISKO Gergely Wed, 22 Aug 2001 23:37:25 +0200 + + --- vtgrab-0.1.8.orig/debian/control +++ vtgrab-0.1.8/debian/control @@ -0,0 +1,14 @@ +Source: vtgrab +Section: admin +Priority: optional +Maintainer: RISKO Gergely +Build-Depends: debhelper (>> 2.0.0), libncurses5-dev +Standards-Version: 3.7.2.0 + +Package: vtgrab +Architecture: any +Depends: ${shlibs:Depends} +Description: A VNC like console monitoring + This is a utility for monitoring the screen of another machine. + It only works for text consoles: for X, the idea is to use VNC + instead. --- vtgrab-0.1.8.orig/debian/copyright +++ vtgrab-0.1.8/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by RISKO Gergely on +Wed, 22 Aug 2001 23:37:25 +0200. + +It was downloaded from http://people.redhat.com/twaugh/ftp/vtgrab/ + +Upstream Author: Tim Waugh + +Copyright: (from rvc.c) + * vtgrab - grab the foreground console for display on another machine + * Copyright (C) 2000 Tim Waugh + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +NOTE: on Debian systems, you can also found the lincense in a file at: +/usr/share/common-licenses/GPL + +NOTE: the address of FSF changed, the new address is: + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. --- vtgrab-0.1.8.orig/debian/dirs +++ vtgrab-0.1.8/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- vtgrab-0.1.8.orig/debian/docs +++ vtgrab-0.1.8/debian/docs @@ -0,0 +1,4 @@ +BUGS +NEWS +README +TODO --- vtgrab-0.1.8.orig/debian/postinst +++ vtgrab-0.1.8/debian/postinst @@ -0,0 +1,47 @@ +#! /bin/sh +# postinst script for vtgrab +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- vtgrab-0.1.8.orig/debian/postrm +++ vtgrab-0.1.8/debian/postrm @@ -0,0 +1,36 @@ +#! /bin/sh +# postrm script for vtgrab +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 0 + +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + + --- vtgrab-0.1.8.orig/debian/preinst +++ vtgrab-0.1.8/debian/preinst @@ -0,0 +1,42 @@ +#! /bin/sh +# preinst script for vtgrab +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# +# For details see /usr/share/doc/packaging-manual/ + +case "$1" in + install|upgrade) +# if [ "$1" = "upgrade" ] +# then +# start-stop-daemon --stop --quiet --oknodo \ +# --pidfile /var/run/vtgrab.pid \ +# --exec /usr/sbin/vtgrab 2>/dev/null || true +# fi + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- vtgrab-0.1.8.orig/debian/prerm +++ vtgrab-0.1.8/debian/prerm @@ -0,0 +1,37 @@ +#! /bin/sh +# prerm script for vtgrab +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + remove|upgrade|deconfigure) +# install-info --quiet --remove /usr/info/vtgrab.info.gz + ;; + failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- vtgrab-0.1.8.orig/debian/rules +++ vtgrab-0.1.8/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=4 + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/vtgrab. + $(MAKE) install prefix=$(CURDIR)/debian/vtgrab + mv $(CURDIR)/debian/vtgrab/bin/twiglet $(CURDIR)/debian/vtgrab/usr/bin + mv $(CURDIR)/debian/vtgrab/bin/rvc $(CURDIR)/debian/vtgrab/usr/sbin + mv $(CURDIR)/debian/vtgrab/bin/rvcd $(CURDIR)/debian/vtgrab/usr/sbin + rmdir $(CURDIR)/debian/vtgrab/bin + rm -Rf $(CURDIR)/debian/vtgrab/share + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installcron + dh_installman twiglet.1 + dh_installinfo + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure