--- xkeycaps-2.47.orig/xkeycaps.man +++ xkeycaps-2.47/xkeycaps.man @@ -267,7 +267,7 @@ the physical keys: it is immutable (unless you repaint your keyboard...) .TP 10 .B \fIChord\fP -This term refers to a set of two or more keys held down simultaniously (by +This term refers to a set of two or more keys held down simultaneously (by analogy with piano keyboards.) All but one of the keys will generally be Modifier Keys. Sometimes \fIConstellation\fP is used to mean the same thing. .TP 10 --- xkeycaps-2.47.orig/debian/menu +++ xkeycaps-2.47/debian/menu @@ -0,0 +1 @@ +?package(xkeycaps):needs="x11" section="Applications/System/Administration" title="xkeycaps" command="/usr/bin/xkeycaps" --- xkeycaps-2.47.orig/debian/dirs +++ xkeycaps-2.47/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/man/man1 +etc/X11/app-defaults --- xkeycaps-2.47.orig/debian/README.debian +++ xkeycaps-2.47/debian/README.debian @@ -0,0 +1,7 @@ +xkeycaps for DEBIAN +------------------- + +If you want to incorporate additional keyboard layouts, get the xkeycaps +source and check out "defining.txt". + +J.H.M. Dassen (Ray) , Tue, 29 Jul 1997 17:03:44 +0200 --- xkeycaps-2.47.orig/debian/copyright +++ xkeycaps-2.47/debian/copyright @@ -0,0 +1,46 @@ +This package was debianized by J.H.M. Dassen (Ray) + on Tue, 29 Jul 1997 17:03:44 +0200. +The current maintainer is Christoph Berg . + +Older xkeycaps versions are available from http://www.jwz.org/xkeycaps/, +versions starting from 2.47 are available in the Debian archive at +http://ftp.debian.org/debian/pool/main/x/xkeycaps/. + +Copyright and License: + +Copyright (c) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999 + Jamie Zawinski +Copyright (c) 2005, 2006 Christoph Berg + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that copyright +notice and this permission notice appear in supporting documentation. No +representations are made about the suitability of this software for any +purpose. It is provided "as is" without express or implied warranty. + +xkeycaps/vroot.h: +/** Copyright 1991 by Andreas Stolcke **/ +/** Copyright 1990 by Solbourne Computer Inc. **/ +/** Longmont, Colorado **/ +/** **/ +/** All Rights Reserved **/ +/** **/ +/** Permission to use, copy, modify, and distribute this software and **/ +/** its documentation for any purpose and without fee is hereby **/ +/** granted, provided that the above copyright notice appear in all **/ +/** copies and that both that copyright notice and this permis- **/ +/** sion notice appear in supporting documentation, and that the **/ +/** name of Solbourne not be used in advertising **/ +/** in publicity pertaining to distribution of the software without **/ +/** specific, written prior permission. **/ +/** **/ +/** ANDREAS STOLCKE AND SOLBOURNE COMPUTER INC. DISCLAIMS ALL WARRANTIES **/ +/** WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF **/ +/** MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL ANDREAS STOLCKE **/ +/** OR SOLBOURNE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL **/ +/** DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA **/ +/** OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER **/ +/** TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE **/ +/** OR PERFORMANCE OF THIS SOFTWARE. **/ + --- xkeycaps-2.47.orig/debian/control +++ xkeycaps-2.47/debian/control @@ -0,0 +1,19 @@ +Source: xkeycaps +Section: x11 +Priority: optional +Maintainer: Christoph Berg +Standards-Version: 3.7.2 +Build-Depends: debhelper (>> 4), libxaw7-dev | libxaw-dev, xutils-dev, xbitmaps + +Package: xkeycaps +Architecture: any +Depends: ${shlibs:Depends} +Conflicts: xaw95 (<< 1.1-4), xaw3d (<< 1.3-6), nextawg (<< 0.5.2), nextaw (<< 0.8-2) +Description: manipulate X11 keymaps (for xmodmap) graphically + xkeycaps is a graphical front-end to xmodmap(1). It opens a window that looks + like a keyboard; moving the mouse over a key shows what KeySyms and Modifier + bits that key generates. Clicking on a key simulates KeyPress/KeyRelease + events on the window of your choice. It is possible to change the KeySyms + and Modifiers generated by a key through a mouse-based interface. This + program can also write an input file for xmodmap to recreate your changes in + future sessions. --- xkeycaps-2.47.orig/debian/rules +++ xkeycaps-2.47/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f +# based on the sample debian/rules file for GNU hello by Ian Jackson. + +#export DH_VERBOSE=1 + +# Rather paranoid than sorry. Make the shell exit with an error if an +# untested command fails. +SHELL+= -e + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CDEBUGFLAGS="-O0 -g -Wall" +else + CDEBUGFLAGS="-O2 -g -Wall" +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALLFLAGS = -c -s +else + INSTALLFLAGS = -c +endif + +build: build-stamp +build-stamp: + dh_testdir + xmkmf + make CDEBUGFLAGS=$(CDEBUGFLAGS) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +binary-indep: +# There are no architecture-independent files to be uploaded +# generated by this package. If there were any they would be +# made here. + +binary-arch: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + make INSTALL="install -p" INSTALLFLAGS=$(INSTALLFLAGS) \ + DESTDIR=$(CURDIR)/debian/xkeycaps BINDIR=/usr/bin \ + install + install -p -m 644 XKeyCaps.ad \ + debian/xkeycaps/etc/X11/app-defaults/XKeyCaps + dh_installdocs README + dh_installmenu + dh_installman xkeycaps.man + dh_installchangelogs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +.PHONY: binary binary-arch binary-indep clean checkroot --- xkeycaps-2.47.orig/debian/compat +++ xkeycaps-2.47/debian/compat @@ -0,0 +1 @@ +4 --- xkeycaps-2.47.orig/debian/changelog +++ xkeycaps-2.47/debian/changelog @@ -0,0 +1,285 @@ +xkeycaps (2.47-4) unstable; urgency=low + + * Build-Depend on xutils-dev instead of xutils. (Closes: #485551) + + -- Christoph Berg Fri, 04 Jul 2008 10:07:53 +0200 + +xkeycaps (2.47-3) unstable; urgency=low + + * Fix typo in manpage, spotted by Justin Pryzby (Closes: #436948). + * Update menu file for new menu policy. + + -- Christoph Berg Sun, 12 Aug 2007 14:36:04 +0200 + +xkeycaps (2.47-2) unstable; urgency=low + + * Use xmkmf instead of calling imake directly (Closes: #367844). + * Build-Depend on xbitmaps. + * Bump Standards-Version. + + -- Christoph Berg Wed, 31 May 2006 15:03:55 +0200 + +xkeycaps (2.47-1) unstable; urgency=low + + * Promote PC105 to the default keyboard for 'The X.Org Foundation'. + * Promote myself to Upstream and release a new version. + + -- Christoph Berg Mon, 2 Jan 2006 01:31:24 +0100 + +xkeycaps (2.46-13) unstable; urgency=low + + * Add keyboard layout for Toshiba Portege 34xxCT by Antony Pavloff. + * Update mail address for patches. + + -- Christoph Berg Sun, 18 Dec 2005 01:38:46 +0100 + +xkeycaps (2.46-12) unstable; urgency=low + + * Make SimpleMenu work with Num/ScrollLock on, thanks to Bernhard R. Link + for the patch (Closes: #90975). + + -- Christoph Berg Thu, 24 Nov 2005 15:52:37 +0100 + +xkeycaps (2.46-11) unstable; urgency=low + + * Rebuild to move menu to /usr/share. + * Bump Standards-Version (no changes). + + -- Christoph Berg Tue, 6 Sep 2005 23:36:24 +0200 + +xkeycaps (2.46-10) unstable; urgency=low + + * New maintainer (thanks to Ray for previously maintaining xkeycaps!). + * Apply patch I wrote in 2001 to support Sony C1VE/VN notebooks. + * Manpage: + + Fix some unescaped hyphens. + + Clarify "Write Output" documentation (Closes: #284387, #294440). + * Quote "x11" in debian/menu. + * debian/rules: + + Upgrade to debhelper 4. + + Use dh_installman. + + Remove redundant debhelper calls. + * debian/control: + + Remove Build-Depends on xlibs-dev. + + Lowercase Description. + + Priority: optional. + + Bump Standards-Version. + * Update copyright years. + + -- Christoph Berg Wed, 23 Feb 2005 02:34:12 +0100 + +xkeycaps (2.46-9) unstable; urgency=low + + * [debian/control] Prefer libxaw7-dev for the package providing libxaw-dev. + (Closes: #169999) + * [debian/rules] Introduced DEB_BUILD_OPTIONS handling. + * [debian/control] Updated Standards-Version. + + -- J.H.M. Dassen (Ray) Mon, 25 Nov 2002 13:06:34 +0100 + +xkeycaps (2.46-8) unstable; urgency=low + + * Removed dh_installxaw from rules file, as xkeycaps no longer requires + xaw-wrappers and dh_installxaw is to be phased out. (Closes: #120232) + + -- J.H.M. Dassen (Ray) Mon, 19 Nov 2001 20:31:12 +0100 + +xkeycaps (2.46-7) unstable; urgency=low + + * Fixed path to xkeycaps in menu file. (Closes: #112119) + * Removed unused emacs setting from changelog. + + -- J.H.M. Dassen (Ray) Thu, 13 Sep 2001 20:04:01 +0200 + +xkeycaps (2.46-6) unstable; urgency=low + + * Acknowledge NMU. (Closes: #105866) + + -- J.H.M. Dassen (Ray) Sun, 12 Aug 2001 15:52:33 +0200 + +xkeycaps (2.46-5.1) unstable; urgency=low + + * NMU + * Fix Build-depends. Closes: #105075 + + -- LaMont Jones Thu, 19 Jul 2001 10:40:36 -0600 + +xkeycaps (2.46-5) unstable; urgency=low + + * [Imakefile] Do HP-UX specific stuff on HPPA in general, but only if not + on Linux. (Closes: #105075) + * Added build dependencies. + * Marked the app-defaults file as a conffile. + * Install under /usr rather than /usr/X11R6. + * Updated Standards-Version. + + -- J.H.M. Dassen (Ray) Tue, 17 Jul 2001 22:42:28 +0200 + +xkeycaps (2.46-4) unstable; urgency=low + + * Moved app-defaults to /etc/X11/app-defaults. (Closes: #77124) + * #67226 was fixed in -3. (Closes: #67226) + + -- J.H.M. Dassen (Ray) Mon, 4 Dec 2000 20:41:46 +0100 + +xkeycaps (2.46-3) unstable; urgency=low + + * Have a versioned Conflicts: for nextaw, in order not to conflict with + the nextawg virtual package which nextaw provides. Thanks to Michael + Fedrowitz. (Fixes: #67226). + + -- J.H.M. Dassen (Ray) Mon, 17 Jul 2000 20:27:13 +0200 + +xkeycaps (2.46-2) unstable; urgency=low + + * xkeycaps seems to work fine with the current version of neXtaw in woody. + I can no longer reproduce the "BadPixmap" error when clicking 'OK' after + selecting the keyboard layout. + * Dropped the Recommends: xaw-wrappers and debian/xaw. + * Added Conflicts: for older neXtaw(g) versions. + * Updated my email address. + * Updated Standards-Version. + + -- J.H.M. Dassen (Ray) Sun, 9 Jul 2000 12:13:50 +0200 + +xkeycaps (2.46-1) unstable; urgency=low + + * New upstream release. New keymaps include + * Adesso Adesso PCK-301 (XFree86; US) + * Apple Extended II (MkLinux; US) + * IBM ThinkPad 560 (XFree86; Spanish) + * Ortek Enhanced Keyboard (XFree86; US) + * PC 84 key PC/AT (XFree86; US) + * PC 102 key, wide Delete, tall Enter (XFree86; Norwegian) + * PC 105 key, wide Delete, tall Enter (XFree86; Icelandic) + * PC 105 key, wide Delete, tall Enter (XFree86; Norwegian) + * PC CoolKeyboard 107 key (XFree86; US) + * PC Happy Hacking Keyboard (PC mode; XFree86; US) + * PC Sunshine KB-6868 105 key (XFree86; US) + * Toshiba Libretto 100CT (US) + + -- J.H.M. Dassen (Ray) Mon, 13 Dec 1999 19:40:51 +0100 + +xkeycaps (2.45-2) unstable; urgency=low + + * FHS migration. + + -- J.H.M. Dassen (Ray) Sat, 11 Sep 1999 12:52:12 +0200 + +xkeycaps (2.45-1) unstable; urgency=low + + * New upstream release. New keymaps include + * Compaq Presario 1655 (XInside; US) + * Cramer 106 key Interfaces (XFree86; US) + * Cramer 106 key Interfaces (Irix 5.2, 6.3; US) + * KTX 1000 IBM 104 Key Compatible (XFree86; US) + * Shine `Natural' 106 key (XFree86; Portuguese) + + -- J.H.M. Dassen (Ray) Tue, 22 Jun 1999 17:34:33 +0200 + +xkeycaps (2.44-3) unstable; urgency=low + + * Conflict with old-style xaw-wrappers; fixes #39598. + + -- J.H.M. Dassen (Ray) Sun, 20 Jun 1999 14:17:57 +0200 + +xkeycaps (2.44-2) unstable; urgency=low + + * Use new method of registering with xaw-wrappers. Patch by Joey Hess + (thanks!); added debian/xaw. Fixes #37115. + + -- J.H.M. Dassen (Ray) Wed, 5 May 1999 22:08:51 +0200 + +xkeycaps (2.44-1) unstable; urgency=low + + * New upstream release. New keymaps include + * Digital LK450 (Linux/XFree86) + * IBM ThinkPad (Linux/Xaccel; US) + * PC 102 key #1 (Linux/XFree86; Swiss French) + * PC 102 key #1 (Hewlett-Packard PC; Swedish/Finnish) + * PC 105 key (Linux/XFree86; CA) + * PC 105 key (Linux/XFree86; CF) + * PC 105 key (Linux/XFree86; Swedish/Finnish) + * PC 105 key (Linux/XFree86; Turkish) + * PC 105 key (Linux/XFree86; French) + * Sun Microsystems Type 4 (Linux/XFree86; US) + + -- J.H.M. Dassen (Ray) Fri, 23 Apr 1999 20:01:56 +0200 + +xkeycaps (2.43-1) unstable; urgency=low + + * New upstream release. + * Updated Standards-Version. + * Updated URLs in copyright. + + -- J.H.M. Dassen (Ray) Tue, 25 Aug 1998 14:23:15 +0200 + +xkeycaps (2.42-3) frozen unstable; urgency=low + + * Fixed + post{inst,rm}-does-not-call-updatemenus usr/lib/menu/xkeycaps + * Cleanup/update of the rules file. + * Workaround for the cpp/imake problem. Is this still needed? + + -- J.H.M. Dassen (Ray) Thu, 2 Apr 1998 18:42:39 +0200 + +xkeycaps (2.42-2) unstable; urgency=low + + * Previous version was built as "debian-specific source" by accident. + + -- J.H.M. Dassen (Ray) Wed, 4 Feb 1998 16:26:05 +0100 + +xkeycaps (2.42-1) unstable; urgency=low + + * New upstream release. + * Checked compliance with current policy; no bashisms. + + -- J.H.M. Dassen (Ray) Tue, 27 Jan 1998 14:55:31 +0100 + +xkeycaps (2.41-1) unstable; urgency=low + + * New upstream release. + + -- J.H.M. Dassen (Ray) Thu, 1 Jan 1998 17:51:11 +0100 + +xkeycaps (2.38-4) unstable; urgency=low + + * Switched to debhelper. + + -- J.H.M. Dassen (Ray) Thu, 1 Jan 1998 16:32:45 +0100 + +xkeycaps (2.38-3) unstable; urgency=low + + * xaw-wrappers conffile was executable (Bug #14141). + + -- J.H.M. Dassen (Ray) Sun, 26 Oct 1997 12:45:13 +0100 + +xkeycaps (2.38-2) unstable; urgency=low + + * Conflict with libc5 Xaw packages. xkeycaps is linked against libc6 Xaw, + but a libc5 Xaw might be loaded by ld.so . + + -- J.H.M. Dassen (Ray) Thu, 11 Sep 1997 16:12:45 +0200 + +xkeycaps (2.38-1) unstable; urgency=low + + * New upstream release. + * libc6 binary. + * The upstream source is distributed as .tar.Z; the Debian source is + .tar.gz, the tar part of which is now pristine. + * Files are installed with preserved timestamps. + * Cleanup: no gdb histories in diff; nor Makefile (generated by + debian/rules). + + -- J.H.M. Dassen (Ray) Tue, 9 Sep 1997 08:54:24 +0200 + +xkeycaps (2.37-1) unstable; urgency=medium (high for neXtaw users) + + * Brought up to date: latest version, new maintainer, new source format, + debmake, menu. This fixes all reported bugs: + old conventions (#6079), outdated dependencies etc. (#6601, #9329, + #9896), old source format (#9570), outdated version (#10675), + * Uses xaw-wrappers as xkeycaps fails with neXtaw. + + -- J.H.M. Dassen (Ray) Wed, 30 Jul 1997 12:03:32 +0200 +