--- xtermcontrol-3.3.orig/debian/changelog +++ xtermcontrol-3.3/debian/changelog @@ -0,0 +1,92 @@ +xtermcontrol (3.3-1) unstable; urgency=medium + + * New upstream release + * Bumped standards-version + + -- Robert Lemmen Thu, 23 Jun 2016 20:33:07 +0100 + +xtermcontrol (3.1-1) unstable; urgency=low + + * New upstream release + * Upgrade to latest standsrds-version (no changes) + * Fix some minus-vs-hyphen cases in manpage + * Switch on hardning flags in build + + -- Robert Lemmen Sat, 22 Jun 2013 17:55:54 +0100 + +xtermcontrol (3.0-1) unstable; urgency=low + + * New upstream release + * Fixed some (but by far not all) lintian warnings: + * add misc:Depends to control file + * add debian/source/format + * build-arch and build-indep in debian/rules + * remove boilerplate from debian/watch + + -- Robert Lemmen Fri, 07 Jun 2013 12:46:44 +0100 + +xtermcontrol (2.10-1) unstable; urgency=low + + * New upstream release (closes: #544396) + * Bumped Standards-Version and di some related cleanups + + -- Robert Lemmen Thu, 22 Oct 2009 10:15:15 +0100 + +xtermcontrol (2.9-2) unstable; urgency=low + + * Fixed the manual page for whatis (closes: #462974) + * Bumped standards version + + -- Robert Lemmen Fri, 7 Mar 2008 11:12:58 +0000 + +xtermcontrol (2.9-1) unstable; urgency=low + + * New upstream release (closes: #391270, #437108) + + -- Robert Lemmen Tue, 4 Sep 2007 15:31:00 +0200 + +xtermcontrol (2.8-1) unstable; urgency=low + + * New upstream release (closes: #437108) + + -- Robert Lemmen Tue, 28 Aug 2007 10:38:26 +0100 + +xtermcontrol (2.7-1) unstable; urgency=low + + * New upstream release + + -- Robert Lemmen Sun, 26 Dec 2004 18:01:22 +0100 + +xtermcontrol (2.6-1) unstable; urgency=low + + * New upstream release + + -- Robert Lemmen Sun, 17 Oct 2004 18:21:30 +0200 + +xtermcontrol (2.4-1) unstable; urgency=low + + * New upstream release + * Fixed description (closes: #238724) + + -- Robert Lemmen Mon, 26 Apr 2004 17:05:30 +0200 + +xtermcontrol (2.3-3) unstable; urgency=low + + * updated debhelper dependency to reflact what I can actually test + + -- Robert Lemmen Wed, 3 Mar 2004 13:25:04 +0100 + +xtermcontrol (2.3-2) unstable; urgency=low + + * cleaned up debian/rules + * added dependency on xterm + * fixed debian/copyright + + -- Robert Lemmen Sun, 22 Feb 2004 15:08:55 +0100 + +xtermcontrol (2.3-1) unstable; urgency=low + + * Initial Release. (closes: #226797) + + -- Robert Lemmen Mon, 12 Jan 2004 17:05:28 +0100 + --- xtermcontrol-3.3.orig/debian/compat +++ xtermcontrol-3.3/debian/compat @@ -0,0 +1 @@ +7 --- xtermcontrol-3.3.orig/debian/control +++ xtermcontrol-3.3/debian/control @@ -0,0 +1,18 @@ +Source: xtermcontrol +Section: x11 +Priority: optional +Maintainer: Robert Lemmen +Build-Depends: debhelper (>= 7.0.0) +Standards-Version: 3.9.8 + +Package: xtermcontrol +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: xterm +Description: dynamic configuration of xterm properties + xtermcontrol is an utility to dynamically query and modify xterm + properties, making it easy to query and change colors, title, font and + geometry of a running xterm. Window manipulations such as de-/iconify, + raise/lower, maximize/restore and reset are also supported. + . + xtermcontrol also lets advanced users issue any xterm control sequence. --- xtermcontrol-3.3.orig/debian/copyright +++ xtermcontrol-3.3/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Robert Lemmen on +Mon, 12 Jan 2004 17:05:28 +0100. + +It was downloaded from http://www.thrysoee.dk/xtermcontrol/ + +Upstream Author: Jess Thrysoee + +Copyright: 2002-2006 Jess Thrysoee + + 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 with + the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; + if not, write to the Free Software Foundation, Inc., 51 Franklin St, + Fifth Floor, Boston, MA 02110-1301, USA. + + On Debian systems, the complete text of the GNU General Public + License, version 2, can be found in /usr/share/common-licenses/GPL-2. --- xtermcontrol-3.3.orig/debian/docs +++ xtermcontrol-3.3/debian/docs @@ -0,0 +1 @@ +doc/ctlseqs.txt --- xtermcontrol-3.3.orig/debian/rules +++ xtermcontrol-3.3/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = $(shell dpkg-buildflags --get CFLAGS) +CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS) +LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) + +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man + + +build: build-arch build-indep + +build-arch: build-stamp +build-indep: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/xtermcontrol + +binary-indep: build-indep install + +binary-arch: build-arch install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installman + 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 --- xtermcontrol-3.3.orig/debian/source/format +++ xtermcontrol-3.3/debian/source/format @@ -0,0 +1 @@ +1.0 --- xtermcontrol-3.3.orig/debian/watch +++ xtermcontrol-3.3/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://www.thrysoee.dk/xtermcontrol/ \./xtermcontrol-(.*)\.tar\.gz(\?.*)? --- xtermcontrol-3.3.orig/doc/xtermcontrol.roff +++ xtermcontrol-3.3/doc/xtermcontrol.roff @@ -1,6 +1,5 @@ .SH NAME -.\" the x macro is the package name -\*x \- dynamic control of XFree86 xterm properties. +xtermcontrol \- dynamic control of XFree86 xterm properties. .\" .\" "SYNOPSIS" .\" @@ -205,22 +204,22 @@ .nf .sp allowWindowOps: - --raise - --lower - --restore - --maximize - --iconify - --de-iconify - --get-title - --geometry - --get-geometry + \-\-raise + \-\-lower + \-\-restore + \-\-maximize + \-\-iconify + \-\-de-iconify + \-\-get-title + \-\-geometry + \-\-get-geometry allowTitleOps: - --title + \-\-title allowFontOps: - --font - --get-font + \-\-font + \-\-get-font .sp .fi All three resources can usually be enabled for the current xterm session via a menu; ctrl+rightclick and look for menu item names like 'Allow Window Ops'. To set these resource values persistently you can add the following to either your local ~/.Xdefaults file, or to a system-wide resource file like /etc/X11/app-defaults/XTerm: