--- rxvt-unicode-9.07.orig/debian/app-defaults
+++ rxvt-unicode-9.07/debian/app-defaults
@@ -0,0 +1,50 @@
+! System-wide defaults for rxvt-unicode
+!
+! PLEASE NOTE: URxvt.* resources set here will override users' Rxvt.*
+! resources. Edit with care.
+
+! Uncomment to use the historical terminfo entry
+
+!URxvt.termName: rxvt
+
+! Uncomment for color/font settings like in Debian's uxterm
+
+!URxvt.font: -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso10646-1
+!URxvt.color0: black
+!URxvt.color1: red3
+!URxvt.color2: green3
+!URxvt.color3: yellow3
+!URxvt.color4: DodgerBlue1
+!URxvt.color5: magenta3
+!URxvt.color6: cyan3
+!URxvt.color7: gray90
+!URxvt.color8: gray50
+!URxvt.color9: red
+!URxvt.color10: green
+!URxvt.color11: yellow
+!URxvt.color12: SteelBlue1
+!URxvt.color13: magenta
+!URxvt.color14: cyan
+!URxvt.color15: white
+!URxvt.colorUL: white
+!URxvt.colorBD: yellow
+!URxvt.reverseVideo: true
+
+! Examples for custom keysyms overrides
+
+!URxvt.keysym.KP_Up: ^[[A
+!URxvt.keysym.KP_Right: ^[[C
+!URxvt.keysym.KP_Left: ^[[D
+!URxvt.keysym.KP_Down: ^[[B
+!URxvt.keysym.KP_Insert: ^[[2~
+!URxvt.keysym.KP_Delete: ^[[3~
+!URxvt.keysym.KP_Add: +
+!URxvt.keysym.KP_Subtract: -
+!URxvt.keysym.KP_Multiply: *
+!URxvt.keysym.KP_Divide: /
+!URxvt.keysym.KP_Enter: ^M
+
+! Uncomment for aterm-like scrolling keys
+
+!URxvt.keysym.Shift-Up: command:\033]720;1\007
+!URxvt.keysym.Shift-Down: command:\033]721;1\007
--- rxvt-unicode-9.07.orig/debian/README.Debian
+++ rxvt-unicode-9.07/debian/README.Debian
@@ -0,0 +1,147 @@
+rxvt-unicode for Debian
+=======================
+
+rxvt-unicode is a real drop-in replacement for rxvt; if no other rxvt
+package is installed, you can start rxvt-unicode with the "rxvt" command
+and the same arguments. The update-alternatives utility can be used to
+choose which rxvt variant is to be executed as "rxvt".
+
+The package is provided in three different flavors:
+
+ - A mini version (-lite) with basic Unicode and basic input support,
+   targeted to low-memory systems.
+ - A "default" version with default features enabled plus some extra.
+   This is targeted to the average system.
+ - A big version (-ml), including the Perl interpreter and all other
+   extra features.
+
+FAQ
+===
+
+Q: How do I change settings? Why are rxvt.foobar: resources ignored?
+
+A: rxvt-unicode uses the resource class URxvt and the resource name
+   urxvt. If neither of these resources are defined, urxvt will fall
+   back to the resource class Rxvt (but not the resource name rxvt).
+
+   This may be exploited to share resources between different rxvts. For
+   example, in ~/.Xresources:
+
+   Rxvt.background: black
+   Rxvt.foreground: white
+   Rxvt.font: fixed
+   URxvt.font: xft:Mono:size=10
+
+   If no XAPPLRESDIR is set, urxvt will read system-wide resources from
+   /etc/X11/app-defaults. These defaults will override any Rxvt.foobar
+   settings, since some settings are incompatible or will become
+   incompatible with standard rxvt in future versions.
+
+Q: Why is my $TERM not set to "rxvt"?
+
+A: rxvt-unicode uses its own terminfo entry instead of rxvt's since it
+   provides more features and may fix minor problems with the default
+   rxvt terminfo data. However, as with every non-xterm terminal
+   program, users get trouble with various programs and remote shell
+   environments (e.g. via ssh to non-Debian systems) since they usually
+   do not have the rxvt-unicode terminfo data. If you want $TERM to
+   default to rxvt instead, set the URxvt.termName resource in
+   /etc/X11/app-defaults/URxvt or ~/.Xresources.
+
+Q: Why do my open urxvts not show up as logins?
+
+A: For security reasons, rxvt-unicode is not installed setuid. If you would
+   like all your urxvt windows to show up in "w" and "last", you can change
+   this with the following commands:
+   
+      dpkg-statoverride --force --update --add root utmp 2755 /usr/bin/urxvt
+      dpkg-statoverride --force --update --add root utmp 2755 /usr/bin/urxvtd
+   
+   And to undo it:
+   
+      dpkg-statoverride --update --remove /usr/bin/urxvt
+      dpkg-statoverride --update --remove /usr/bin/urxvtd
+
+Q: How do I choose different colors?
+
+A: Upstream author writes:
+
+   | All standard ways of specifying colours work with rxvt-unicode:
+   |
+   |    rxvt -fg CIELab:0.9/0.5/0.5 -bg rgb:ffff/0000/0000
+   |
+   | gives me some dark gray on red (I tested this with Debian's rxvt-unicode
+   | and it worked the same there). I do that all the time:
+   |
+   |    Rxvt*color7:            gray90
+   |    Rxvt*foreground:        gray90
+   |    Rxvt*colorBD:           white
+   |    Rxvt*cursorColor:       #e0e080
+   |    Rxvt*throughColor:      #8080f0
+   |    Rxvt*highlightColor:    #f0f0f0
+   |    Rxvt*background:        #000000
+   | 
+   | (although in Debian you might want URxvt instead of Rxvt there).
+
+   The other way is extending the X color palette:
+
+   | > The colors used there are those provided by the X server palette,
+   | > which is defined in /etc/X11/rgb.txt . Add your colors with custom
+   | > names there, set your colors in ~/.Xresources (see commented examples
+   | > in /etc/X11/app-defaults/URxvt-ml), and restart the Xserver.
+
+Q: Why is rxvt-unicode black-on-white while uxterm is white-on-black?
+
+A: Opinions on this question differ. White-on-black is considered to
+   make your eyes less tired, as the screen emits less light; this is
+   what the standard uxterm uses. However, it can also be uncomfortable
+   if you are used to reading text printed on paper. In the opinion of
+   this maintainer, a decent LCD monitor makes the light problem
+   relatively unimportant, and black-on-white is aesthetically
+   preferable.
+
+   However, this scheme can cause usability problems with programs that
+   make aggressive use of the ANSI color palette, and may simply not be
+   to your taste. If you would prefer a more uxterm-like "theme", please
+   refer to the example in the file /etc/X11/app-defaults/URxvt.
+
+Q: When I use the -tint option, I do not see any transparency at all;
+   why?
+
+A: You need to add -tr or -ip to -tint (or add the corresponding X
+   resources; see the manpage).
+
+Q: I used -tint and -tr (or -ip), but the background is not colored as
+   expected; why?
+
+A: You need to set the background image with a program that uses the
+   freedesktop.org standard, such as Esetroot, GNOME, or icewmbg
+   with SupportSemitransparency set. icewmbg is somewhat buggy;
+   restarting it with "icewmbg -r" has been reported to help.
+
+Q: I used aterm some time ago with a tinted and "shaded" background. In
+   urxvt the brightness control (-sh) does not work as expected. How do
+   I use shading?
+
+A: "shading" in urxvt works similarly, but it is applied to the color
+   that is specified with tint, so you need tint as well (e.g. "-rv -tr
+   -tint green -sh 30" to get a "Matrix" look). If you simply wish to
+   make the background image darker, you may just use "tinting" with
+   dark values (gray tinting), e.g. -tint gray30 (gray40, gray70, etc.).
+
+Known Problems
+==============
+
+ - Transparency mode may have problems with icewmbg; other applications
+   mostly work.
+
+ - The automatic font chooser is limited to the list of the configured
+   fonts and a small internal fallback list. This is done for
+   performance reasons (see man page). You may need some experimenting
+   with the fonts, e.g. "xft:Lucida Console" has good consistent
+   Cyrillic support but no bold chars. "xft:Courier New" has both,
+   Cyrillic and bold chars but its look is a matter of taste.
+   For Latin environment, DejaVu Sans Mono looks good (package:
+   ttf-dejavu). Mixtures are possible, e.g. "xft:DejaVu Sans
+   Mono:pixelsize=12,xft:Lucida Console:pixelsize=12" but they do not
+   always look good together.
--- rxvt-unicode-9.07.orig/debian/rules
+++ rxvt-unicode-9.07/debian/rules
@@ -0,0 +1,199 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# 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
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CXXFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CXXFLAGS += -O0
+else
+	CXXFLAGS += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	INSTALL_PROGRAM += -s
+endif
+
+cfgcommon = \
+    --host=$(DEB_HOST_GNU_TYPE) \
+    --build=$(DEB_BUILD_GNU_TYPE) \
+    --prefix=/usr \
+    --mandir=\$${prefix}/share/man \
+    --infodir=\$${prefix}/share/info \
+    --enable-plain-scroll \
+    --enable-keepscrolling \
+    --enable-selectionscrolling \
+    --enable-pointer-blank \
+    --enable-utmp \
+    --enable-wtmp \
+    --enable-lastlog \
+    --with-term=rxvt-unicode
+
+config.status: configure
+	dh_testdir
+	cp -f /usr/share/misc/config.sub config.sub
+	cp -f /usr/share/misc/config.guess config.guess
+
+conf-unicode-lite:
+	CXXFLAGS="$(CXXFLAGS)" ./configure $(cfgcommon) \
+	    --disable-xft \
+	    --disable-afterimage \
+	    --disable-perl \
+	    --disable-iso14755
+
+conf-unicode:
+	CXXFLAGS="$(CXXFLAGS)" ./configure $(cfgcommon) \
+	    --enable-xft \
+	    --enable-font-styles \
+	    --enable-afterimage \
+	    --enable-transparency \
+	    --enable-fading \
+	    --enable-rxvt-scroll \
+	    --enable-next-scroll \
+	    --enable-xterm-scroll \
+	    --enable-perl \
+	    --enable-mousewheel \
+	    --enable-slipwheeling \
+	    --enable-smart-resize \
+	    --disable-iso14755
+
+conf-unicode-ml:
+	CXXFLAGS="$(CXXFLAGS)" ./configure $(cfgcommon) \
+	    --enable-unicode3 \
+	    --enable-combining \
+	    --enable-xft \
+	    --enable-font-styles \
+	    --enable-afterimage \
+	    --enable-transparency \
+	    --enable-fading \
+	    --enable-rxvt-scroll \
+	    --enable-next-scroll \
+	    --enable-xterm-scroll \
+	    --enable-perl \
+	    --enable-xim \
+	    --enable-iso14755 \
+	    --enable-frills \
+	    --enable-mousewheel \
+	    --enable-slipwheeling \
+	    --enable-smart-resize
+
+build: build-stamp
+build-stamp: config.status
+	dh_testdir
+
+	mkdir -p tmp
+	dh_installdirs -A usr/bin etc/X11/app-defaults usr/share/pixmaps
+
+	set -e; \
+	for x in unicode unicode-lite unicode-ml; do \
+		cp -f debian/rxvt-unicode-base.preinst debian/rxvt-$$x.preinst; \
+		cp -f debian/rxvt-unicode-base.postinst debian/rxvt-$$x.postinst; \
+		cp -f debian/rxvt-unicode-base.prerm debian/rxvt-$$x.prerm; \
+		y=$(CURDIR)/debian/rxvt-$$x ; z=$(CURDIR)/tmp/$$x; \
+		$(MAKE) $(MFLAGS) -f debian/rules conf-$$x && \
+			perl -pe s,..tag.CXX,, -i src/Makefile; \
+		if expr $(DEB_HOST_GNU_TYPE) : 'alpha-linux-gnu\|sparc-linux-gnu' > /dev/null; then \
+			echo "#define EV_USE_EPOLL 0" >> config.h; \
+		fi; \
+		$(MAKE); \
+		mkdir -p tmp/$$x; \
+		$(MAKE) -C doc; \
+		TERMINFO=$$y/etc/terminfo $(MAKE) DESTDIR=$$y install; \
+		ln -sf urxvt $$y/usr/bin/rxvt-unicode; \
+		ln -sf urxvt.1.gz $$y/usr/share/man/man1/rxvt-unicode.1.gz; \
+		chrpath -d $$y/usr/bin/*; \
+		install -m644 debian/*.xpm $$y/usr/share/pixmaps; \
+		install -m755 debian/urxvtcd $$y/usr/bin; \
+		install -m644 debian/urxvtcd.1 $$y/usr/share/man/man1; \
+		gzip -9 $$y/usr/share/man/man1/urxvtcd.1; \
+		ln -sf urxvt.xpm $$y/usr/share/pixmaps/urxvt_32x32.xpm; \
+		cp debian/app-defaults $$y/etc/X11/app-defaults/URxvt; \
+	done
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) distclean
+	-$(MAKE) -C doc realclean
+	rm -f config.guess config.sub config.log
+	# these will be fixed shortly
+	rm -f src/rxvtlib.h
+	rm -f doc/Makefile
+
+# XXX: rewrite all of this and use it; it is untouched.
+install: build
+#	dh_testdir
+#	dh_testroot
+#	dh_clean -k 
+#	dh_installdirs -A usr/bin etc/X11/app-defaults usr/share/pixmaps etc/terminfo/r
+#	$(MAKE) install prefix=$(CURDIR)/debian/rxvt-unicode/usr
+#	cd debian/rxvt-unicode/usr/share/man/man1 && mv rxvt.1 rxvt-unicode.1 && cp $(CURDIR)/debian/rxvtc.1 . && ln -sf rxvtc.1.gz rxvtd.1.gz
+#	cd $(CURDIR)/debian/rxvt-unicode/usr/bin && rm -f *-1.* && mv rxvt rxvt-unicode && chrpath -d *
+# and the icon
+# now clone to -lite and -ml	
+#	set -e ; for x in code code-lite code-ml ; do \
+#		y=debian/rxvt-uni$$x ; z=tmp/$$x ;\
+#			#fixme VVV
+#		cp -f debian/rxvt-unicode-base.postinst debian/rxvt-uni$$x.postinst ;\
+#		cp -f debian/rxvt-unicode-base.prerm debian/rxvt-uni$$x.prerm ;\
+#		cp -af $$z/rxvt $$y/usr/bin/urxvt ;\
+#		cp -af $$z/rxvtd $$y/usr/bin/urxvtd ;\
+#		cp -af $$z/rxvtc $$y/usr/bin/urxvtc ;\
+#		ln -sf urxvt $$y/usr/bin/rxvt-unicode ;\
+#		chrpath -d $$y/usr/bin/* ;\
+#		dh_installman -prxvt-uni$$x $$z/urxvt.1 $$z/urxvt.7 debian/urxvtc.1 ;\
+#		ln -sf urxvtc.1.gz $$y/usr/share/man/man1/urxvtd.1.gz ;\
+#		ln -sf urxvt.1.gz $$y/usr/share/man/man1/rxvt-unicode.1.gz ;\
+#		install -m644 debian/*.xpm $$y/usr/share/pixmaps/ ;\
+#		cp -lf $$y/usr/share/pixmaps/urxvt.xpm $$y/usr/share/pixmaps/urxvt_32x32.xpm ;\
+#		TERMINFO=$$y/etc/terminfo tic doc/etc/rxvt-unicode.terminfo ;\
+#		cp debian/app-defaults $$y/etc/X11/app-defaults/URxvt$${x#code} ;\
+#	done
+	# extra icons are wasted space in -lite
+	# rm debian/rxvt-unicode-lite/usr/share/pixmaps/*_*
+
+# 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_installchangelogs -A Changes
+	dh_installdocs -A `cat debian/docs`
+	dh_installexamples
+	# fix the perms
+#	chmod -x debian/*/usr/share/doc/*/examples/menu/*
+	rm -rf debian/*/etc/terminfo
+#	dh_install
+	dh_installmenu
+#	dh_installdebconf
+#	dh_installinfo
+#	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- rxvt-unicode-9.07.orig/debian/urxvt_32x32.xpm
+++ rxvt-unicode-9.07/debian/urxvt_32x32.xpm
@@ -0,0 +1,141 @@
+/* XPM */
+static char * urxvt_32x32_xpm[] = {
+"32 32 106 2",
+"  	c None",
+". 	c #E7E7E7",
+"+ 	c #E7E3DE",
+"@ 	c #E7DFDE",
+"# 	c #29417B",
+"$ 	c #5A719C",
+"% 	c #294173",
+"& 	c #08246B",
+"* 	c #18387B",
+"= 	c #294D8C",
+"- 	c #395D9C",
+"; 	c #526DAD",
+"> 	c #6382BD",
+", 	c #7392C6",
+"' 	c #84A6DE",
+") 	c #9CBAE7",
+"! 	c #B5CFF7",
+"~ 	c #CEDBEF",
+"{ 	c #ADBECE",
+"] 	c #94B2D6",
+"^ 	c #CEDFEF",
+"/ 	c #ADBED6",
+"( 	c #C6D3DE",
+"_ 	c #52658C",
+": 	c #7371F7",
+"< 	c #394573",
+"[ 	c #B5D3F7",
+"} 	c #D6D3CE",
+"| 	c #A5A6A5",
+"1 	c #A59E9C",
+"2 	c #6B6963",
+"3 	c #B5B2AD",
+"4 	c #8496AD",
+"5 	c #CEC7C6",
+"6 	c #9CA6AD",
+"7 	c #C6C7C6",
+"8 	c #525D6B",
+"9 	c #294584",
+"0 	c #8C96BD",
+"a 	c #8C9EC6",
+"b 	c #425D9C",
+"c 	c #7392CE",
+"d 	c #8CA6DE",
+"e 	c #ADAAA5",
+"f 	c #A5A29C",
+"g 	c #211C18",
+"h 	c #C6BEBD",
+"i 	c #52618C",
+"j 	c #B5B6B5",
+"k 	c #52596B",
+"l 	c #847D7B",
+"m 	c #002063",
+"n 	c #001C52",
+"o 	c #001C5A",
+"p 	c #ADC7EF",
+"q 	c #94A2B5",
+"r 	c #8C9EAD",
+"s 	c #8CAAC6",
+"t 	c #9CAABD",
+"u 	c #8C9EB5",
+"v 	c #F7F7F7",
+"w 	c #DEDBDE",
+"x 	c #848284",
+"y 	c #8C8A8C",
+"z 	c #8C8E8C",
+"A 	c #D6D7D6",
+"B 	c #FFFFFF",
+"C 	c #E7E3E7",
+"D 	c #DEDFDE",
+"E 	c #949294",
+"F 	c #ADAAAD",
+"G 	c #EFEFEF",
+"H 	c #CECFCE",
+"I 	c #BDBEBD",
+"J 	c #4A4D4A",
+"K 	c #B5B2B5",
+"L 	c #9C9E9C",
+"M 	c #7B7D7B",
+"N 	c #393C39",
+"O 	c #9C9A9C",
+"P 	c #848684",
+"Q 	c #313031",
+"R 	c #636563",
+"S 	c #292C29",
+"T 	c #F7F3F7",
+"U 	c #949694",
+"V 	c #5A595A",
+"W 	c #EFEBEF",
+"X 	c #737173",
+"Y 	c #000000",
+"Z 	c #ADAEAD",
+"` 	c #BDBABD",
+" .	c #D6D7FF",
+"..	c #5A59FF",
+"+.	c #CECFFF",
+"@.	c #B5B2FF",
+"#.	c #DEDBFF",
+"$.	c #A5A2A5",
+"%.	c #C6C3C6",
+"&.	c #ADA6AD",
+"*.	c #7371FF",
+"=.	c #6B6DFF",
+"-.	c #5A5D5A",
+";.	c #BDB6BD",
+">.	c #CECBC6",
+",.	c #BDBAB5",
+"                                                                ",
+"                                                                ",
+"                                                                ",
+". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ",
+"@ # $ $ $ % & * = - ; > , ' ) ! ~ ~ ~ ~ { ~ ~ ~ ~ ] ^ ~ ~ ~ / ( ",
+"@ _ : : : < & * = - ; > , ' ) [ } } } } | 1 2 2 3 4 @ 1 5 1 6 ( ",
+"@ _ 7 7 7 8 9 0 a b ; > c d ) [ } } } } | e } } e 4 @ f g h 6 ( ",
+"@ i j j j k & * = - ; > , ' ) [ } 2 l } | e 1 1 3 4 @ 1 5 1 6 ( ",
+"@ m n n n o & * = - ; > , ' ) p q q q q r q q q q s t q q q u ( ",
+"@ v v v v v v v v v v v v v v v v v v v v v v v v v v w x y z A ",
+"@ B B B B B B B B B B B B B B B B B C B B B B B B B B D E F | + ",
+"@ B D G H H B H B B H G D B B w G I J I I B B B B B B D F K L + ",
+"@ B M J z N B z O H P B Q v B R B O N O O B B B B B B D M y L + ",
+"@ B M I B B B B J S T B L K I z B B R B B B B B B B B D P U F + ",
+"@ B M I B B B C J V H B T V J W B B R B B B B B B B B D P U F + ",
+"@ B M I B B B V G G J G B X M B B B X S N B B B B B B D P U F + ",
+"@ B B B B B B B B B B B B B B B B B B B B B B B B B B D P U F + ",
+"@ B B B B B B B B B B B B B B B . H H H H C B B B B B D P U F + ",
+"@ B B B B B B B B B B B B B B B M Y Y Y Y R B B B B B D P U F + ",
+"@ B B B B B B v B B B B B B B B M Y Y Y Y R B B B B B D P U F + ",
+"@ B B B B B B J L B B B B B B B M Y Y Y Y R B B B B B D O Z ` + ",
+"@  .....+.@.#.B K R $.B B B B B M Y Y Y Y R B B B B B D %.%.&.+ ",
+"@ +.B B *.=.B B L -.H B B B B B M Y Y Y Y R B B B B B D %.K L + ",
+"@ B B B B B B R K B B B B B B B M Y Y Y Y R B B B B B D %.K L + ",
+"@ B B B B B B B B B B B B B B B M Y Y Y Y R B B B B B D ;.O O + ",
+"@ B B B B B B B B B B B B B B B O Q Q Q Q P B B B B B D $.F F + ",
+"@ B B B B B B B B B B B B B B B B B B B B B B B B B B D | K L + ",
+"@ B B B B B B B B B B B B B B B B B B B B B B B B B B D O Z j + ",
+"H >.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.7 >.>.>.,.",
+"                                                                ",
+"                                                                ",
+"                                                                "};
--- rxvt-unicode-9.07.orig/debian/changelog
+++ rxvt-unicode-9.07/debian/changelog
@@ -0,0 +1,608 @@
+rxvt-unicode (9.07-2) unstable; urgency=low
+
+  [ Jakub Wilk ]
+  * Disable use of epoll on Alpha and SPARC, as it is not properly
+    supported by (Closes: #576826)
+
+  [ Decklin Foster ]
+  * Change xutils build-dep to xutils-dev (Closes: #575859)
+  * Fix copyright notice
+  * Use "Terminal Emulators" menu section
+
+ -- Decklin Foster <decklin@red-bean.com>  Sun, 18 Apr 2010 21:55:23 -0400
+
+rxvt-unicode (9.07-1) unstable; urgency=low
+
+  * New upstream version
+    - Fixes FTBFS non-const declaration in background.C (Closes: #560482)
+
+ -- Decklin Foster <decklin@red-bean.com>  Thu, 14 Jan 2010 21:04:21 -0500
+
+rxvt-unicode (9.06-3) unstable; urgency=low
+
+  * Don't remove urxvtcd alternative if selected (Closes: #555310)
+  * Fix x-terminal-emulator priority for urxvt
+
+ -- Decklin Foster <decklin@red-bean.com>  Sun, 29 Nov 2009 22:00:45 -0500
+
+rxvt-unicode (9.06-2) unstable; urgency=medium
+
+  * Don't install an alternative for urxvtcd (due to #481123)
+
+ -- Decklin Foster <decklin@red-bean.com>  Mon, 02 Nov 2009 11:11:44 -0500
+
+rxvt-unicode (9.06-1) unstable; urgency=low
+
+  * New upstream version
+    - Uses PERL_SYS_INIT3 (Closes: #495066)
+  * Disable libafterimage in -lite flavor (Closes: #493480)
+
+ -- Decklin Foster <decklin@red-bean.com>  Sat, 08 Nov 2008 18:32:29 -0500
+
+rxvt-unicode (9.05-4) unstable; urgency=low
+
+  * Remove urxvtcd alternative in prerm (Closes: #503137)
+    - Also, install its manual page as a slave.
+
+ -- Decklin Foster <decklin@red-bean.com>  Sat, 25 Oct 2008 22:53:39 -0400
+
+rxvt-unicode (9.05-3) unstable; urgency=low
+
+  * Correct location of rgb.txt (Closes: #501728)
+  * Fix xterm scrollbar border color
+
+ -- Decklin Foster <decklin@red-bean.com>  Tue, 21 Oct 2008 17:03:42 -0400
+
+rxvt-unicode (9.05-2) unstable; urgency=low
+
+  * Remove quilt, put the following it git:
+    - Elide very obsolete documentation of problems with sarge .deb
+    - Fix sed and podselect invocations so that docs are generated
+      correctly
+    - Enable checking of app-defaults resources by default
+    - Perl ext: set default cutchars, fix double-click word selection
+  * Add example for shift-up/down arrow scrolling (suggested by Nico
+    Golde)
+  * Bitstream Vera -> DejaVu (code only! not in docs.) (Closes: #461289)
+  * Don't set urgency hint if focused (Closes: #493981)
+
+ -- Decklin Foster <decklin@red-bean.com>  Mon, 15 Sep 2008 18:36:06 -0400
+
+rxvt-unicode (9.05-1) unstable; urgency=low
+
+  * New Upstream Version
+
+ -- Decklin Foster <decklin@red-bean.com>  Mon, 16 Jun 2008 21:15:27 -0400
+
+rxvt-unicode (9.02-1) unstable; urgency=low
+
+  * New upstream release, obsoletes urxvtc-destroy.patch
+  * Preserve EWMH state and desktop properties in the tabbed extension
+    (Closes: #459888)
+
+ -- Decklin Foster <decklin@red-bean.com>  Tue, 29 Jan 2008 22:39:18 -0500
+
+rxvt-unicode (8.9-2) unstable; urgency=low
+
+  * Add patch to prevent urxvtd crashing when urxvtc is passed an illegal
+    option. (Closes: #460560)
+
+ -- Decklin Foster <decklin@red-bean.com>  Tue, 15 Jan 2008 22:23:06 -0500
+
+rxvt-unicode (8.9-1) unstable; urgency=low
+
+  * New upstream release.
+  * Don't refer to CFLAGS in debian/rules, as we are actually setting
+    CXXFLAGS.
+
+ -- Decklin Foster <decklin@red-bean.com>  Wed, 26 Dec 2007 21:56:16 -0500
+
+rxvt-unicode (8.7-2) unstable; urgency=high
+
+  * Set EV_USE_POLL to 1 on powerpc, to work around a particularly nasty
+    bug where libev would consistently abort with a failed assertion on
+    startup. Current versions are already fixed, but this patch is being
+    uploaded to replace the broken 8.7-1 in testing. (Closes: #457658)
+
+ -- Decklin Foster <decklin@red-bean.com>  Wed, 26 Dec 2007 20:19:17 -0500
+
+rxvt-unicode (8.7-1) unstable; urgency=low
+
+  * New upstream release (Closes: #455541)
+    - libafterimage now used for pixmap support (Closes: #448663)
+    - Merges man-typos.patch, popup-https.patch, sensible-browser.patch
+  * All flavors but -lite will depend on libafterimage, but XIM and
+    ISO14775 are now only in -ml so as not to bother users who don't want
+    them. (Closes: #393847)
+  * Fix groff copypasta in select-quoted.patch
+  * Don't install rxvt.1.gz as a slave alternative twice (Closes: #412062)
+
+ -- Decklin Foster <decklin@red-bean.com>  Wed, 12 Dec 2007 19:45:22 -0500
+
+rxvt-unicode (8.4-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Decklin Foster <decklin@red-bean.com>  Sat, 27 Oct 2007 21:08:55 -0400
+
+rxvt-unicode (8.3-2) unstable; urgency=low
+
+  * Fix sed and podselect invocations so that docs are generated correctly
+    (Closes: #437364)
+
+ -- Decklin Foster <decklin@red-bean.com>  Sun, 12 Aug 2007 02:24:21 -0400
+
+rxvt-unicode (8.3-1) unstable; urgency=low
+
+  * New upstream release (Closes: #433004)
+    - Rolled with autoconf 2.61 (Closes: #422540)
+  * Match https URLs in selection-popup (Closes: #428659)
+  * Fix typos in urxvtperl(3) (Closes: #411074, #415848)
+  * Use sensible-browser instead of x-www-browser directly (Closes: #415846)
+  * Added urxvtcd as alternative (Closes: #381967)
+
+ -- Decklin Foster <decklin@red-bean.com>  Fri, 03 Aug 2007 12:44:44 -0400
+
+rxvt-unicode (7.9-2) unstable; urgency=low
+
+  * Edit the comments in the app-defaults file, and disable all settings by
+    default. If font autoselection fails, I would prefer to open a new bug
+    specifically for that. (Closes: #385481)
+  * Reorganize and edit README.Debian, pushing as much as possible into FAQ
+    format (with resource setting issues first).
+
+ -- Decklin Foster <decklin@red-bean.com>  Fri,  1 Sep 2006 14:44:58 -0400
+
+rxvt-unicode (7.9-1) unstable; urgency=low
+
+  * New upstream release
+    - Fixes environment-corruption bug (Closes: #380348)
+
+ -- Decklin Foster <decklin@red-bean.com>  Sun, 27 Aug 2006 12:57:01 -0400
+
+rxvt-unicode (7.8-2) unstable; urgency=low
+
+  * Added select-quoted.patch, to set default cutchars for the Perl selection
+    extension and fix double-click selection of words. (Closes: #377194)
+  * Don't generate intermediate .pod file in doc/Makefile, since we would have
+    to explicitly clean it before generating the .diff.gz anyway.
+
+ -- Decklin Foster <decklin@red-bean.com>  Fri, 28 Jul 2006 02:35:21 -0400
+
+rxvt-unicode (7.8-1) unstable; urgency=low
+
+  * New upstream release. Updated patches:
+    - Merged upstream: grammar.patch, faq-section.patch
+    - Updated: generate-docs.patch
+    - Obsolete: make-docs.patch, man-title.patch
+  * Check for exit status of 2 in urxvtcd, and use -q (Closes: #379201)
+  * Update Standards-Version to 3.7.2.
+
+ -- Decklin Foster <decklin@red-bean.com>  Sun, 23 Jul 2006 11:21:09 -0400
+
+rxvt-unicode (7.7-4) unstable; urgency=low
+
+  * Changed several uses of "it's" to "its" in man pages. (Closes: #365036)
+  * Added urxvtcd man page.
+
+ -- Decklin Foster <decklin@red-bean.com>  Thu, 27 Apr 2006 10:03:50 -0400
+
+rxvt-unicode (7.7-3) unstable; urgency=low
+
+  * Add >= -5.1 to Xft build-dep (Closes: #360961)
+  * Explicitly enable Perl in default flavor. Death of -ml imminent.
+    (Closes: #360053)
+
+ -- Decklin Foster <decklin@red-bean.com>  Wed,  5 Apr 2006 14:48:34 -0400
+
+rxvt-unicode (7.7-2) unstable; urgency=low
+
+  * Re-rebuild against Xft NMU. (Closes: #351371, #358710)
+  * Enable checking of app-defaults resources by default (Closes: #348697)
+  * Updated and edited FAQ a bit more.
+
+ -- Decklin Foster <decklin@red-bean.com>  Fri, 24 Mar 2006 02:33:06 -0500
+
+rxvt-unicode (7.7-1) unstable; urgency=low
+
+  * Adopting package. (Closes: #348719)
+  * The following bugs have been fixed in previous Debian revisions:
+    - An x-terminal-emulator alternative is provided (Closes: #314977)
+    - /dev/tty is now readable by default (this was actually a bug in makedev
+      which was not reassigned for some reason.) (Closes: #246059)
+  * New upstream release:
+    - Cleans up eaves zombie shell processes in urxvtd (Closes: #339833)
+    - Handling of bold "special" characters fixed (Closes: #294582)
+    - Setting/pasting of PRIMARY selection fixed (Closes: #328965, #291587)
+    - #284257, should no longer happen, but I don't have a PPC.
+  * Rebuild against new Xft (Closes: #352168, #351371)
+  * Enable Perl support in rxvt-unicode-ml.
+  * Switch from dpatch to quilt.
+  * Fix documentation of utmp/wtmp permissions (Closes: #342738)
+  * Add FSF address to debian/copyright.
+  * Remove -D from install call (breaks with Ubuntu's coreutils).
+  * Set resource class to URxvt and fallback class to Rxvt for all flavors.
+    (Closes: #263123, #270160)
+  * Document the fact that $TERM defaults to rxvt-unicode (not rxvt), and how
+    to change this with X resources. Users do not (and should not) have to
+    compile terminfo entries, so remove these from examples; ncurses-base
+    provides a proper one already. (Closes: #351872)
+  * Install alternative for rxvt.1.gz. (Closes: #355069)
+  * Specify default fontset in app-defaults. (Closes: #348666)
+  * Removed debian/urxvtc.1 (superseded by upstream).
+  * Run pod2man using the name (i.e page heading) "urxvt" rather than "rxvt".
+    (Closes: #354904)
+  * Added urxvtcd script to automatically start urxvtd if necessary and run
+    urxvtc. (Closes: #347434)
+  * Added watch file.
+
+ -- Decklin Foster <decklin@red-bean.com>  Fri, 10 Mar 2006 16:41:50 -0500
+
+rxvt-unicode (7.5-1) unstable; urgency=low
+
+  * Orphaning the package, maintainer changed to QA
+  * New upstream release
+  * added build-dep on libperl-dev
+
+ -- Eduard Bloch <blade@debian.org>  Fri,  3 Feb 2006 14:29:33 +0100
+
+rxvt-unicode (7.0-1) unstable; urgency=low
+
+  * New upstream release
+    + autodetection of (incorrect) Latin1 in pure UTF-8 environment works
+      again (closes: #347718)
+  * removed the font name preset, automatic selection works acceptably well
+
+ -- Eduard Bloch <blade@debian.org>  Mon, 16 Jan 2006 16:51:28 +0100
+
+rxvt-unicode (6.3-1) unstable; urgency=low
+
+  * New upstream release
+    + From upstream changelog: - SECURITY FIX: on systems using openpty,
+      permissions were not correctly updated on the tty device and were left as
+      world-readable and world-writable (likely in original rxvt, too), and were
+      not restored properly. Affected are only systems where non-unix ptys were
+      used (such as most BSDs, not GNU/Linux). (found, patched and debugged by
+      Ryan Beasley).
+    + From upstream changelog: - meta8 support was forcefully enabled in most
+      configurations.  restored configurability of this (useless) feature
+      (reported by Mikachu). (closes: #346150, reopen if it doesn't)
+    
+ -- Eduard Bloch <blade@debian.org>  Fri,  6 Jan 2006 01:11:00 +0100
+
+rxvt-unicode (6.2-1) unstable; urgency=low
+
+  * New upstream release
+  * --enable-xpm-background in !-lite flavors (closes: #337088)
+
+ -- Eduard Bloch <blade@debian.org>  Mon,  2 Jan 2006 23:04:19 +0100
+
+rxvt-unicode (5.8-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 26 Oct 2005 02:05:58 +0200
+
+rxvt-unicode (5.7-1) unstable; urgency=low
+
+  * The forgotten "New upstream release"
+  * replaced xlibs-dev and x-dev with more granular package set
+  * -lite and -ml flavors now provide x-terminal-emulator (closes: #314977)
+  * enabled "next" scrollstyle in rxvt-unicode
+
+ -- Eduard Bloch <blade@debian.org>  Sat, 01 Oct 2005 01:08:13 +0200
+
+rxvt-unicode (5.6-1) unstable; urgency=low
+
+  * New upstream release
+  * using TERM=rxvt-unicode as default. Depends on current ncurses-base for
+    now untill it has reached testing
+
+ -- Eduard Bloch <blade@debian.org>  Sun,  3 Jul 2005 11:06:30 +0200
+
+rxvt-unicode (5.5-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Eduard Bloch <blade@debian.org>  Sun, 24 Apr 2005 20:30:42 +0200
+
+rxvt-unicode (5.4-1) unstable; urgency=low
+
+  * New upstream release (various bugfixes)
+
+ -- Eduard Bloch <blade@debian.org>  Fri, 22 Apr 2005 23:47:51 +0200
+
+rxvt-unicode (5.3-1) unstable; urgency=high
+
+  * New upstream release
+    + fixes a probably exploitable bug that allowed to overflow a buffer
+      via a long escape sequence
+
+ -- Eduard Bloch <blade@debian.org>  Sun, 13 Mar 2005 10:47:57 +0100
+
+rxvt-unicode (5.2-3) unstable; urgency=medium
+
+  * README.Debian: corrected typos and overlong lines (closes: #297140, patch
+    by Thomas Kappler <thomas.kappler@stud.uni-karlsruhe.de>)
+  * added a chapter about differences from upstream installations
+
+ -- Eduard Bloch <blade@debian.org>  Sun,  6 Mar 2005 10:36:05 +0100
+
+rxvt-unicode (5.2-2) unstable; urgency=medium
+
+  * changed the doc build to not regenerate the termcap file expecting an
+    existing installation of rxvt-unicode terminfo file (closes: #298178)
+  * disabled keysym overrides, seems to work with current bash and recent
+    rxvt-unicode versions again
+
+ -- Eduard Bloch <blade@debian.org>  Sun, 06 Mar 2005 10:29:13 +0100
+
+rxvt-unicode (5.2-1) unstable; urgency=low
+
+  * New upstream release
+  * disabled all Debian specific patches (except of docs changes), 
+    new version seems to work smooth again
+  * set the default font to more concrete default, not allowing X to provide
+    bad bitmap fonts
+
+ -- Eduard Bloch <blade@debian.org>  Wed,  2 Mar 2005 08:34:48 +0100
+
+rxvt-unicode (4.9-1) unstable; urgency=low
+
+  * New upstream release
+  * Updates on app-defaults file:
+    - comments update (rxvt-unicode termino hint)
+    - Added workarounds to make the numberic keypad keys behave like in
+      xterm/konsole/etc.
+    - removed the URxvt-shared suggestion, instead including URxvt-local after
+      all defaults lines
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 09 Feb 2005 01:54:59 +0100
+
+rxvt-unicode (4.8-1) unstable; urgency=medium
+
+  * New upstream release
+    + supports keycodes from the numpad better
+    + -fade description improved (closes: #284369)
+  * 07_bad_font_drawing.dpatch: fixes bad default Xft font size detection since
+    version 4.7 and bad non-Xft font drawing in 4.8
+  * 08_correct_debian_rand.dpatch: correcting the anti-Debian rants in the
+    manpage with a reference to README.Debian.gz, also updated README.Debian.gz
+    with a howto for installation of the alternative terminfo data 
+  * README.devenagari: documented problems and hints for devenagari usage
+    (closes: #269891)
+
+ -- Eduard Bloch <blade@debian.org>  Sun, 23 Jan 2005 11:24:19 +0100
+
+rxvt-unicode (4.7-3) unstable; urgency=high
+
+  * rebuilt with proper libgcc (closes: #289051)
+
+ -- Eduard Bloch <blade@debian.org>  Fri, 07 Jan 2005 00:18:00 +0100
+
+rxvt-unicode (4.7-2) unstable; urgency=high
+
+  * Now installing the postinst/prerm with update-alternatives calls again
+    (became commented after the last debian/rules rewrite... why did nobody
+    tell me before?! closes: #288798)
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 05 Jan 2005 22:26:13 +0100
+
+rxvt-unicode (4.7-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Eduard Bloch <blade@debian.org>  Thu, 30 Dec 2004 22:53:27 +0100
+
+rxvt-unicode (4.5-1) unstable; urgency=medium
+
+  * New upstream release
+    - should solve some font size related issues (among others, closes:#284614)
+  * reverted TERM to rxvt and removed the compiled terminfo file (left source
+    in the examples directory for those who do read the docs). Let me say
+    sorry for the mess I created WRT future upgrades of ncurses-base :(
+    (closes: #271572, #270243)
+
+ -- Eduard Bloch <blade@debian.org>  Mon, 13 Dec 2004 21:01:28 +0100
+
+rxvt-unicode (4.3-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Eduard Bloch <blade@debian.org>  Sat,  4 Dec 2004 11:58:25 +0100
+
+rxvt-unicode (4.1-1) unstable; urgency=low
+
+  * New upstream release
+  * enabled fading in normal and ml flavors (closes: #277917)
+
+ -- Eduard Bloch <blade@debian.org>  Tue, 23 Nov 2004 18:31:32 +0100
+
+rxvt-unicode (4.0+CVS20041003-1) experimental; urgency=low
+
+  * New upstream release plus CVS updates
+  * corrected icon position in pixmaps
+
+ -- Eduard Bloch <blade@debian.org>  Sat, 30 Oct 2004 09:50:56 +0200
+
+rxvt-unicode (3.9-3) unstable; urgency=high
+
+  * don't try to refresh the docs, it truncates the manpage
+
+ -- Eduard Bloch <blade@debian.org>  Sun, 29 Aug 2004 13:39:30 +0200
+
+rxvt-unicode (3.9-2) unstable; urgency=high
+
+  * 05_no_Xdefaults.dpatch: re-apply the custom X ressources from the X server
+    after the distribution's ones have been loaded (closes: #268353). This one
+    should really be fixed in Sarge
+  * Compiled with utmp support and documented how to enable it in
+    README.Debian (closes: #268344)
+  * 06_bugfixes.dpatch: documentation typos update from upstream, based on the
+    patch from Bastian Kleineidam (closes: #268219)
+
+ -- Eduard Bloch <blade@debian.org>  Sat, 28 Aug 2004 11:06:20 +0200
+
+rxvt-unicode (3.9-1) unstable; urgency=high
+
+  * New upstream release (fixes few last-minute bugs)
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 25 Aug 2004 21:39:30 +0200
+
+rxvt-unicode (3.8-1) unstable; urgency=high
+
+  * New upstream release
+    + bug fixes, including potential security problem (though low risk issue)
+  * disabled 04_graceful_exit.dpatch, caused more harm and another fix seems
+    to have been implemented by the upstream
+  * removed obsolete docs from the packages
+  * set a sane default font
+  * updated our urxvtc.1 manpage and README.Debian to reflect recent upstream
+    changes
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 25 Aug 2004 10:29:39 +0200
+
+rxvt-unicode (3.5-1) unstable; urgency=medium
+
+  * New upstream release
+   + fixes a nasty bug in 3.4 and various other bugs inherited from the old
+     rxvt source and also reported in the BTS (see changelog.gz for details)
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 11 Aug 2004 08:44:31 +0200
+
+rxvt-unicode (3.4-1) unstable; urgency=low
+
+  * New upstream release
+  * added link urxvt.xpm -> urxvt_32x32.xpm for window managers
+
+ -- Eduard Bloch <blade@debian.org>  Sat,  7 Aug 2004 12:05:37 +0200
+
+rxvt-unicode (3.3-1) unstable; urgency=low
+
+  * New upstream release
+  * Tinting support now improved, documented the background setting issues in
+    README.Debian (closes: #261922). Still problems with icewmbg but Esetroot
+    works.
+
+ -- Eduard Bloch <blade@debian.org>  Sat, 31 Jul 2004 16:17:54 +0200
+
+rxvt-unicode (3.2-2) unstable; urgency=low
+
+  * fixed the configuration rule for -lite in debian/rules which accidentaly
+    was not executed so the configuration of the normal package was used
+  * added the pixmaps in 16x16 and 48x48 for better use with IceWM
+  * added bold-font setup example to the app-defaults file
+
+ -- Eduard Bloch <blade@debian.org>  Fri, 30 Jul 2004 15:35:22 +0200
+
+rxvt-unicode (3.2-1) unstable; urgency=low
+
+  * New upstream release (bold font support and bugfixes)
+  * updated README.Debian to reflect the upstream changes and include
+    bold-font setup hints (closes: #240304)
+  * documented why .Xdefaults does not work, in the manpage (dpatched) and
+    in README.Debian (Closes: #259861)
+
+ -- Eduard Bloch <blade@debian.org>  Tue, 27 Jul 2004 07:52:11 +0200
+
+rxvt-unicode (3.1-1) unstable; urgency=low
+
+  * New upstream release (fixes the funny scrollbar color effect)
+  * increased the scroll buffer size to 512 lines (closes: #251718)
+
+ -- Eduard Bloch <blade@debian.org>  Thu,  1 Jul 2004 15:47:48 +0200
+
+rxvt-unicode (3.0-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Eduard Bloch <blade@debian.org>  Tue, 11 May 2004 09:11:42 +0200
+
+rxvt-unicode (2.9-1) unstable; urgency=low
+
+  * New upstream release
+    + documentation cleanup (closes: #246035)
+  * Set Provides: x-terminal-emulator (closes: #246584)
+  * documented how to set arbitrary colours (closes: #247031)
+
+ -- Eduard Bloch <blade@debian.org>  Sun,  9 May 2004 18:31:00 +0200
+
+rxvt-unicode (2.8-1) unstable; urgency=low
+
+  * New upstream release
+    + fixed font list description in the manpage (closes: #236826)
+    + new options for the secondaryScreen/Scroll (-ssr, -ssc, closes: #237673)
+    + close down terminal window when child exits (closes: #241267)
+  * alternative download location corrected
+
+ -- Eduard Bloch <blade@debian.org>  Wed, 21 Apr 2004 12:34:11 +0200
+
+rxvt-unicode (2.5-1) unstable; urgency=low
+
+  * New upstream release
+  * handles exceptions in urxvtc sanely (closes: #237510)
+
+ -- Eduard Bloch <blade@debian.org>  Mon, 29 Mar 2004 01:45:09 +0200
+
+rxvt-unicode (2.2-1) unstable; urgency=low
+
+  * New upstream release
+  * 03_build_fixes.dpatch enabled again, with fresh corrections from CVS
+  * a smaller icon (32x32) choosen from the .ico contents
+  * README.Debian: FAQ entry to URxvt resource naming (closes: #237515)
+  * commented my color palette out and documented it in README.Debian
+    (closes: #237677)
+
+ -- Eduard Bloch <blade@debian.org>  Fri, 12 Mar 2004 16:08:33 +0100
+
+rxvt-unicode (2.1-3) unstable; urgency=low
+
+  * patch to not segfault loudly on rejected X11 connection (cosmetic)
+  * linked the rxvtc manpage to urxvtd/urxvtc names
+  * converted the menu icon to xpm and dropped icoutils dependency (caused
+    FTBFS on arm anyways)
+  * added menu file and Conflicts field to the -ml flavor (closes: #237559)
+
+ -- Eduard Bloch <blade@debian.org>  Thu, 11 Mar 2004 23:54:13 +0100
+
+rxvt-unicode (2.1-2) unstable; urgency=low
+
+  * Config files cleanup: renamed rxvt-unicode's resource files to have the
+    expected names
+  * compatibility symlinks for rxvt-unicode name and its manpage
+  * README.Debian update WRT new configuration paths
+
+ -- Eduard Bloch <blade@debian.org>  Thu,  4 Mar 2004 08:23:46 +0100
+
+rxvt-unicode (2.1-1) unstable; urgency=low
+
+  * New upstream release
+    + renamed executables to urxvt*
+  * disabled 02_extra_xdefaults, using #include in the ressource files
+
+ -- Eduard Bloch <blade@debian.org>  Wed,  3 Mar 2004 12:51:35 +0100
+
+rxvt-unicode (2.0-1) unstable; urgency=low
+
+  * New upstream release
+    + workarounds to build with gcc (<< 3.2)
+    + build fixes for non-XIM/XFT config (disabled build_fixes dpatch)
+  * 02_extra_xdefaults.dpatch: fixed to merge correctly
+
+ -- Eduard Bloch <blade@debian.org>  Mon,  1 Mar 2004 11:18:52 +0100
+
+rxvt-unicode (1.9-1) unstable; urgency=low
+
+  * New upstream release
+  * enabled XGetDefaults to provide systemwide config
+  * removed remaining crap from the debian directory
+  * 02_extra_xdefaults.dpatch: per-package default Xressource files
+
+ -- Eduard Bloch <blade@debian.org>  Tue, 24 Feb 2004 17:41:07 +0100
+
+rxvt-unicode (1.8-1) unstable; urgency=low
+
+  * Initial Release (closes: #233565)
+
+ -- Eduard Bloch <blade@debian.org>  Tue, 24 Feb 2004 09:03:51 +0100
+
--- rxvt-unicode-9.07.orig/debian/copyright
+++ rxvt-unicode-9.07/debian/copyright
@@ -0,0 +1,153 @@
+This package was debianized by Eduard Bloch <blade@debian.org> on Tue,
+24 Feb 2004 09:03:51 +0100. It is currently maintained by Decklin Foster
+<decklin@red-bean.com>.
+
+It was downloaded from <http://dist.schmorp.de/rxvt-unicode/>.
+
+Upstream Author: Marc Lehmann <pcg@schmorp.de> and others
+
+Copyright:
+
+    [background.C]
+    Copyright (c) 2005-2008 Marc Lehmann <pcg@goof.com>
+    Copyright (c) 2007      Sasha Vasko <sasha@aftercode.net>
+
+    [command.C]
+    Copyright (c) 1992      John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
+   				- original version
+    Copyright (c) 1994      Robert Nation <nation@rocket.sanders.lockheed.com>
+    				- extensive modifications
+    Copyright (c) 1995      Garrett D'Amore <garrett@netcom.com>
+   				- vt100 printing
+    Copyright (c) 1995      Steven Hirsch <hirsch@emba.uvm.edu>
+   				- X11 mouse report mode and support for
+   				  DEC "private mode" save/restore functions.
+    Copyright (c) 1995      Jakub Jelinek <jj@gnu.ai.mit.edu>
+   				- key-related changes to handle Shift+function
+   				  keys properly.
+    Copyright (c) 1997      MJ Olesen <olesen@me.queensu.ca>
+   				- extensive modifications
+    Copyright (c) 1997      Raul Garcia Garcia <rgg@tid.es>
+   				- modification and cleanups for Solaris 2.x
+   				  and Linux 1.2.x
+    Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
+    Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
+    				- extensive modifications
+    Copyright (c) 1998      Alfredo K. Kojima <kojima@windowmaker.org>
+    Copyright (c) 2001      Marius Gedminas
+   				- Ctrl/Mod4+Tab works like Meta+Tab (options)
+    Copyright (c) 2003      Rob McMullen <robm@flipturn.org>
+    Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com>
+    Copyright (c) 2007      Emanuele Giaquinta <e.giaquinta@glauco.it>
+
+    [encoding.C, salloc.C, rxvtc.C, rxvt.C]
+    Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
+
+    [fdpass.C]
+    Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
+
+    [init.C]
+    Copyright (c) 1992      John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
+                                 - original version
+    Copyright (c) 1994      Robert Nation <nation@rocket.sanders.lockheed.com>
+                                 - extensive modifications
+    Copyright (c) 1996      Chuck Blake <cblake@BBN.COM>
+    Copyright (c) 1997      mj olesen <olesen@me.queensu.ca>
+    Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
+    Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
+                                 - extensive modifications
+    Copyright (c) 2003-2008 Marc Lehmann <pcg@goof.com>
+
+    [keyboard.C]
+    Copyright (c) 2005      WU Fengguang
+    Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
+
+    [logging.C]
+    Copyright (c) 1992      John Bovey <jdb@ukc.ac.uk>
+   				- original version
+    Copyright (c) 1993      lipka
+    Copyright (c) 1993      Brian Stempien <stempien@cs.wmich.edu>
+    Copyright (c) 1995      Raul Garcia Garcia <rgg@tid.es>
+    Copyright (c) 1995      Piet W. Plomp <piet@idefix.icce.rug.nl>
+    Copyright (c) 1997      Raul Garcia Garcia <rgg@tid.es>
+    Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
+    				- extensive modifications
+    Copyright (c) 1999      D J Hawkey Jr <hawkeyd@visi.com>
+   				- lastlog support
+    Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com>
+    Copyright (c) 2006      Emanuele Giaquinta <e.giaquinta@glauco.it>
+
+    [main.C]
+    Copyright (c) 1992      John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
+                                 - original version
+    Copyright (c) 1994      Robert Nation <nation@rocket.sanders.lockheed.com>
+                                 - extensive modifications
+    Copyright (c) 1995      Garrett D'Amore <garrett@netcom.com>
+    Copyright (c) 1997      mj olesen <olesen@me.QueensU.CA>
+                                 - extensive modifications
+    Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
+    Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
+                                 - extensive modifications
+    Copyright (c) 2003-2008 Marc Lehmann <pcg@goof.com>
+
+    [misc.C]
+    Copyright (c) 1996      mj olesen <olesen@me.QueensU.CA> Queen's Univ at Kingston
+    Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
+    Copyright (c) 1998-2000 Geoff Wing <gcw@pobox.com>
+    Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
+
+    [proxy.C]
+    Copyright (c) 2006      Marc Lehmann <pcg@goof.com>
+
+    [ptytty.C]
+    Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
+    Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com>
+    Copyright (c) 2006      Emanuele Giaquinta <e.giaquinta@glauco.it>
+
+    [rxvtfont.C]
+    Copyright (c) 2003-2008 Marc Lehmann <pcg@goof.com>
+
+    [rxvttoolkit.C, rxvtdaemon.C, rxvtd.C]
+    Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com>
+
+    [rxvtutil.C]
+    Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com>
+
+    [screen.C]
+    Copyright (c) 1997-2001 Geoff Wing <gcw@pobox.com>
+    Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com>
+
+    [scrollbar-plain.C, scrollbar-rxvt.C, scrollbar-xterm.C]
+    Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA>
+    Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
+    Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com>
+
+    [scrollbar.C, scrollbar-next.C]
+    Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA>
+    Copyright (c) 1998      Alfredo K. Kojima <kojima@windowmaker.org>
+   				- N*XTstep like scrollbars
+    Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
+    Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com>
+
+    [xdefaults.C]
+    Copyright (c) 1994      Robert Nation <nation@rocket.sanders.lockheed.com>
+                                 - original version
+    Copyright (c) 1997,1998 mj olesen <olesen@me.queensu.ca>
+    Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
+    Copyright (c) 2007      Emanuele Giaquinta <e.giaquinta@glauco.it>
+
+    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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, see "/usr/share/common-licenses/GPL" for details.
--- rxvt-unicode-9.07.orig/debian/watch
+++ rxvt-unicode-9.07/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-(.*)\.tar\.bz2
--- rxvt-unicode-9.07.orig/debian/rxvt-unicode-base.preinst
+++ rxvt-unicode-9.07/debian/rxvt-unicode-base.preinst
@@ -0,0 +1,11 @@
+#!/bin/sh -e
+
+if [ "$1" = upgrade ]; then
+    # clean up after old versions, unless the admin chose urxvtcd
+    if ! update-alternatives --query x-terminal-emulator | grep -q \
+            '^Value: /usr/bin/urxvtcd$'; then
+        update-alternatives --remove x-terminal-emulator /usr/bin/urxvtcd
+    fi
+fi
+
+#DEBHELPER#
--- rxvt-unicode-9.07.orig/debian/compat
+++ rxvt-unicode-9.07/debian/compat
@@ -0,0 +1 @@
+4
--- rxvt-unicode-9.07.orig/debian/rxvt-unicode-lite.menu
+++ rxvt-unicode-9.07/debian/rxvt-unicode-lite.menu
@@ -0,0 +1,7 @@
+?package(rxvt-unicode-lite):needs="x11" \
+   section="Applications/Terminal Emulators" \
+   longtitle="Rxvt-Unicode: terminal emulator for X" \
+   title="Rxvt-Unicode" \
+   command="rxvt-unicode" \
+   icon="/usr/share/pixmaps/urxvt.xpm"
+
--- rxvt-unicode-9.07.orig/debian/urxvt_16x16.xpm
+++ rxvt-unicode-9.07/debian/urxvt_16x16.xpm
@@ -0,0 +1,93 @@
+/* XPM */
+static char * urxvt_16x16_xpm[] = {
+"16 16 74 1",
+" 	c None",
+".	c #A5AABD",
+"+	c #949AB5",
+"@	c #848EAD",
+"#	c #63719C",
+"$	c #738AAD",
+"%	c #8C9EC6",
+"&	c #A5B6D6",
+"*	c #BDCFEF",
+"=	c #D6DFE7",
+"-	c #CED7DE",
+";	c #C6D3DE",
+">	c #C6CFDE",
+",	c #A5A2DE",
+"'	c #7B7DAD",
+")	c #39558C",
+"!	c #5269A5",
+"~	c #5A79B5",
+"{	c #7B9ED6",
+"]	c #ADC7EF",
+"^	c #D6D3CE",
+"/	c #A5A6A5",
+"(	c #9CA2AD",
+"_	c #BDBAB5",
+":	c #8C8E8C",
+"<	c #ADB6BD",
+"[	c #7B86A5",
+"}	c #526184",
+"|	c #424D73",
+"1	c #103073",
+"2	c #315594",
+"3	c #A5C7EF",
+"4	c #94A6B5",
+"5	c #ADAEB5",
+"6	c #A5AAB5",
+"7	c #A5B2C6",
+"8	c #EFEFEF",
+"9	c #FFFBFF",
+"0	c #F7F3F7",
+"a	c #EFEBEF",
+"b	c #949294",
+"c	c #B5B2B5",
+"d	c #F7F3EF",
+"e	c #9C9E9C",
+"f	c #949694",
+"g	c #CECFCE",
+"h	c #D6D7D6",
+"i	c #CECBCE",
+"j	c #C6C3C6",
+"k	c #C6C7C6",
+"l	c #D6D3D6",
+"m	c #737173",
+"n	c #DEDBDE",
+"o	c #FFFFFF",
+"p	c #B5B6B5",
+"q	c #F7F7F7",
+"r	c #4A494A",
+"s	c #A5A2A5",
+"t	c #ADAAAD",
+"u	c #BDBEBD",
+"v	c #E7E3E7",
+"w	c #393C39",
+"x	c #000000",
+"y	c #393839",
+"z	c #949A94",
+"A	c #DED7EF",
+"B	c #A5A2FF",
+"C	c #9C9EFF",
+"D	c #F7F7FF",
+"E	c #848684",
+"F	c #C6BEC6",
+"G	c #BDBABD",
+"H	c #E7DFDE",
+"I	c #EFE7E7",
+"                ",
+".+@#$%&*==-=;==>",
+"+,')!~{]^^//(_:<",
+"[}|12~{3((((4567",
+"8999999990999abc",
+"defghijklmnoo8fp",
+"deoqr8ssotooo8:u",
+"dgolqinvothoo8:u",
+"dooooooofmboo8:u",
+"doogaooowxyoo8zj",
+"ABCDEhoowxyoo8FG",
+"doogaooowxyoo8cp",
+"dooooooot:/oo8tG",
+"HIIIIIIIIIIIInck",
+"                ",
+"                "};
--- rxvt-unicode-9.07.orig/debian/urxvtcd.1
+++ rxvt-unicode-9.07/debian/urxvtcd.1
@@ -0,0 +1,23 @@
+.TH rxvt-unicode 1 "2006-04-27"
+.SH NAME
+urxvtcd \- start a urxvtc and/or urxvtd
+.SH SYNOPSIS
+.B urxvtcd
+.RI [ options ]
+.SH DESCRIPTION
+The
+.B urxvtcd
+script automatically starts
+.BR urxvtd (1)
+if it is not running, and then runs
+.BR urxvtc (1)
+with the specified arguments.
+.SH OPTIONS
+All options are passed to
+.BR urxvtc (1)
+as-is.
+.SH AUTHOR
+rxvt\-unicode was written by Marc Alexander Lehmann <rxvt\-unicode@schmorp.de>.
+.PP
+This manual page was written by Decklin Foster <decklin@red\-bean.com>,
+for the Debian project (but may be used by others).
--- rxvt-unicode-9.07.orig/debian/rxvt-unicode-base.prerm
+++ rxvt-unicode-9.07/debian/rxvt-unicode-base.prerm
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+
+if [ "$1" = remove ]; then
+    update-alternatives --remove rxvt /usr/bin/urxvt
+    update-alternatives --remove x-terminal-emulator /usr/bin/urxvt
+fi
+
+#DEBHELPER#
--- rxvt-unicode-9.07.orig/debian/control
+++ rxvt-unicode-9.07/debian/control
@@ -0,0 +1,59 @@
+Source: rxvt-unicode
+Section: x11
+Priority: optional
+Maintainer: Decklin Foster <decklin@red-bean.com>
+Build-Depends: debhelper (>= 4.0.0), libxt-dev, libxrender-dev, libx11-dev, libxpm-dev, groff-base, autotools-dev, xutils-dev, libxft-dev (>= 2.1.8.2-5.1), chrpath, libperl-dev, libafterimage-dev
+Standards-Version: 3.7.2
+
+Package: rxvt-unicode
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, base-passwd (>= 2.0.3.4), ncurses-base (>= 5.4-7)
+Provides: x-terminal-emulator
+Suggests: ttf-dejavu
+Description: RXVT-like terminal emulator with Unicode support
+ rxvt-unicode is a modern, Unicode-aware color xterm replacement that uses
+ significantly less memory than a conventional xterm and many other Unicode
+ supporting terminal emulators.
+ .
+ It supports using multiple fonts at the same time, including Xft fonts, and
+ client-server technology to reduce memory consumption when using multiple
+ windows.
+ .
+ This package contains the program version with most commonly-used features
+ enabled, including transparency, (16-bit) Unicode and FreeType font support.
+
+Package: rxvt-unicode-ml
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, base-passwd (>= 2.0.3.4), ncurses-base (>= 5.4-7)
+Provides: x-terminal-emulator, rxvt-unicode
+Suggests: ttf-bitstream-vera, ttf-kochi-gothic
+Conflicts: rxvt-unicode
+Description: multi-lingual terminal emulator with Unicode support for X11
+ rxvt-unicode is a modern, Unicode-aware color xterm replacement that uses
+ significantly less memory than a conventional xterm and many other Unicode
+ supporting terminal emulators.
+ .
+ It supports using multiple fonts at the same time, including Xft fonts, and
+ client-server technology to reduce memory consumption when using multiple
+ windows.
+ .
+ This package is configured with all additional features, including additional
+ multi-language functions (direct support for Asian encodings and extended
+ Unicode 3 support), and an embedded Perl interpreter.
+
+Package: rxvt-unicode-lite
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, base-passwd (>= 2.0.3.4), ncurses-base (>= 5.4-7)
+Provides: x-terminal-emulator, rxvt-unicode
+Conflicts: rxvt-unicode
+Description: RXVT-like terminal emulator with basic Unicode support
+ rxvt-unicode is a modern, Unicode-aware color xterm replacement that uses
+ significantly less memory than a conventional xterm and many other Unicode
+ supporting terminal emulators.
+ .
+ It supports using multiple fonts at the same time, including Xft fonts, and
+ client-server technology to reduce memory consumption when using multiple
+ windows.
+ .
+ This package contains the small version with only a few extra features and
+ without Freetype support.
--- rxvt-unicode-9.07.orig/debian/rxvt-unicode-ml.menu
+++ rxvt-unicode-9.07/debian/rxvt-unicode-ml.menu
@@ -0,0 +1,12 @@
+?package(rxvt-unicode-ml):needs="x11" \
+   section="Applications/Terminal Emulators" \
+   longtitle="Rxvt-Unicode: advanced terminal emulator for X" title="Rxvt-Unicode"\
+   command="urxvt" \
+   icon="/usr/share/pixmaps/urxvt.xpm"
+
+?package(rxvt-unicode-ml):needs="x11" \
+   section="Applications/Terminal Emulators" \
+   longtitle="Rxvt-Unicode: advanced terminal emulator for X" \
+   title="Rxvt-Unicode (Black, Xft)" \
+   command="urxvt -fn \"xft:Mono\" -rv" \
+   icon="/usr/share/pixmaps/urxvt.xpm"
--- rxvt-unicode-9.07.orig/debian/docs
+++ rxvt-unicode-9.07/debian/docs
@@ -0,0 +1,2 @@
+debian/README.*
+README.*
--- rxvt-unicode-9.07.orig/debian/NEWS.Debian
+++ rxvt-unicode-9.07/debian/NEWS.Debian
@@ -0,0 +1,12 @@
+rxvt-unicode (9.06-2) unstable; urgency=medium
+
+  * urxvtcd alternative removed
+
+    rxvt-unicode used to install the urxvtcd wrapper script as an
+    alternative for x-terminal-emulator; this is no longer the case.
+    If you do not have urxvtcd selected, it will be removed from the
+    alternatives system on upgrade. If you have selected urxvtcd as
+    x-terminal-emulator, it is strongly recommended that you switch to
+    plain urxvt.
+
+ -- Decklin Foster <decklin@red-bean.com>  Mon, 02 Nov 2009 11:11:44 -0500
--- rxvt-unicode-9.07.orig/debian/rxvt-unicode-base.postinst
+++ rxvt-unicode-9.07/debian/rxvt-unicode-base.postinst
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+if [ "$1" = configure ]; then
+
+    update-alternatives \
+        --install /usr/bin/rxvt \
+            rxvt /usr/bin/urxvt 30 \
+        --slave /usr/share/man/man1/rxvt.1.gz \
+            rxvt.1.gz /usr/share/man/man1/urxvt.1.gz
+    update-alternatives \
+        --install /usr/bin/x-terminal-emulator \
+            x-terminal-emulator /usr/bin/urxvt 20 \
+        --slave /usr/share/man/man1/x-terminal-emulator.1.gz \
+            x-terminal-emulator.1.gz /usr/share/man/man1/urxvt.1.gz
+
+fi
+
+#DEBHELPER#
--- rxvt-unicode-9.07.orig/debian/urxvt_48x48.xpm
+++ rxvt-unicode-9.07/debian/urxvt_48x48.xpm
@@ -0,0 +1,180 @@
+/* XPM */
+static char * urxvt_48x48_xpm[] = {
+"48 48 129 2",
+"  	c None",
+". 	c #EFEBE7",
+"+ 	c #E7E3DE",
+"@ 	c #7B86A5",
+"# 	c #4A5D8C",
+"$ 	c #526594",
+"% 	c #5A6D9C",
+"& 	c #6375A5",
+"* 	c #6B82A5",
+"= 	c #7386AD",
+"- 	c #7B8EB5",
+"; 	c #8496BD",
+"> 	c #8C9EC6",
+", 	c #94A6CE",
+"' 	c #9CAED6",
+") 	c #A5BAD6",
+"! 	c #ADC3DE",
+"~ 	c #B5CBE7",
+"{ 	c #B5CFEF",
+"] 	c #D6D3CE",
+"^ 	c #63719C",
+"/ 	c #9CA2BD",
+"( 	c #293863",
+"_ 	c #08246B",
+": 	c #103073",
+"< 	c #183C84",
+"[ 	c #29498C",
+"} 	c #395594",
+"| 	c #42619C",
+"1 	c #4A69AD",
+"2 	c #5A75B5",
+"3 	c #6386BD",
+"4 	c #7392C6",
+"5 	c #7B9ED6",
+"6 	c #8CAADE",
+"7 	c #94B6E7",
+"8 	c #A5C7EF",
+"9 	c #C6DFFF",
+"0 	c #9C9A9C",
+"a 	c #EFEBEF",
+"b 	c #D6CFCE",
+"c 	c #849EBD",
+"d 	c #8492A5",
+"e 	c #4241EF",
+"f 	c #29384A",
+"g 	c #213C84",
+"h 	c #5A79B5",
+"i 	c #849ED6",
+"j 	c #9CB6E7",
+"k 	c #8C8684",
+"l 	c #737573",
+"m 	c #424542",
+"n 	c #A5A6A5",
+"o 	c #BDBAB5",
+"p 	c #B5AEAD",
+"q 	c #E7E3E7",
+"r 	c #8C8E8C",
+"s 	c #212021",
+"t 	c #000000",
+"u 	c #C6C7C6",
+"v 	c #B5BAD6",
+"w 	c #CED3E7",
+"x 	c #7386B5",
+"y 	c #7B92BD",
+"z 	c #294584",
+"A 	c #395194",
+"B 	c #292C29",
+"C 	c #525D73",
+"D 	c #6B6D6B",
+"E 	c #212842",
+"F 	c #A5C3E7",
+"G 	c #7B8694",
+"H 	c #737D8C",
+"I 	c #8CAECE",
+"J 	c #B5B6C6",
+"K 	c #9CA6BD",
+"L 	c #A5AAC6",
+"M 	c #A5AEC6",
+"N 	c #ADB6CE",
+"O 	c #ADBACE",
+"P 	c #B5BACE",
+"Q 	c #B5BED6",
+"R 	c #BDC3D6",
+"S 	c #BDC7D6",
+"T 	c #C6CFDE",
+"U 	c #C6D3DE",
+"V 	c #CED7E7",
+"W 	c #CEDBE7",
+"X 	c #D6DFEF",
+"Y 	c #9CA6B5",
+"Z 	c #A5AEBD",
+"` 	c #F7F3EF",
+" .	c #FFFFFF",
+"..	c #CEC7CE",
+"+.	c #848284",
+"@.	c #8C8A8C",
+"#.	c #DEDBDE",
+"$.	c #949294",
+"%.	c #525552",
+"&.	c #ADAAAD",
+"*.	c #DED7DE",
+"=.	c #B5B2B5",
+"-.	c #7B7D7B",
+";.	c #737173",
+">.	c #D6D7D6",
+",.	c #181C18",
+"'.	c #393839",
+").	c #949694",
+"!.	c #7B757B",
+"~.	c #CECBCE",
+"{.	c #292829",
+"].	c #BDBEBD",
+"^.	c #C6C7FF",
+"/.	c #ADAAFF",
+"(.	c #B5AEB5",
+"_.	c #D6D3D6",
+":.	c #3938FF",
+"<.	c #5255FF",
+"[.	c #181CFF",
+"}.	c #8C8EFF",
+"|.	c #E7E3FF",
+"1.	c #A5A2A5",
+"2.	c #D6CFD6",
+"3.	c #C6BEC6",
+"4.	c #8C868C",
+"5.	c #7B797B",
+"6.	c #B5B6B5",
+"7.	c #9C969C",
+"8.	c #CECFCE",
+"                                                                                                ",
+"                                                                                                ",
+"                                                                                                ",
+"                                                                                                ",
+". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ",
+"+ @ # # # # # # # # $ % & * = - ; > , ' ) ! ~ { { { { { { { { { { { { { { { { { { { { { { { { ] ",
+"+ # ^ / / / / / ( _ : < [ } | 1 2 3 4 5 6 7 8 9 + + + + + + 0 a + + + + + b c a + + + + + b c ] ",
+"+ # d e e e e e f _ : g [ } | 1 h 3 4 i 6 j 8 9 ] ] ] ] ] ] k + l m m m n o c + ] n ] p o o c ] ",
+"+ # d q q q q q f _ : g [ } | 1 2 3 4 5 6 j 8 9 ] ] ] ] ] ] k + r ] ] ] r o c + ] s r t p o c ] ",
+"+ # d u u u u u f _ v w x y | 1 2 3 4 5 6 7 8 9 ] ] ] ] ] ] k + r ] ] ] r o c + ] n t r ] o c ] ",
+"+ # d u u u u u f _ z A x } | 1 h 3 4 i 6 j 8 9 ] o r r o ] k + r ] ] ] r o c + ] B n s n o c ] ",
+"+ # C D D D D D E _ : < [ } | 1 2 3 4 5 6 7 8 9 ] o r r o ] k + n r r r o o c + ] ] ] ] ] o c ] ",
+"+ # _ _ _ _ _ _ _ _ : g [ } | 1 h 3 4 i 6 j 8 F G G G G G G H d G G G G G G I d G G G G G G I ] ",
+"+ J K K K K K K K K L M N O P Q R S T U V W X X X X X X X X X X X X X X X X X X X T Y Y Y Y Z ] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...l +.@.+...] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...+.#.$.r #.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . .%.&. . . . . . . . . . . . ...r *.=.-.#.] ",
+"+ `  .u %.q ;.%.r  .&.;. . . .r &.q ;. . . . .%.>.u %.,.'.%.%.u  . . . . . . . . ...r ).).!.~.] ",
+"+ `  .&.t {.%.%.%. . .{.-. .].t  . .t >. . .>.{. .>.-.{.%.-.-.>. . . . . . . . . ...+.).).).#.] ",
+"+ `  .&.t &. .u r  . .u ,.u {.r  . .;.;. . .;.r  . . .%.&. . . . . . . . . . . . ...+.).).).#.] ",
+"+ `  .&.t  . . . . . . .r t %. . . .q ,. .q t  . . . .%.&. . . . . . . . . . . . ...+.).).).#.] ",
+"+ `  .&.t  . . . . . . .'.'.{.q  . . .'.r ;.;. . . . .%.&. . . . . . . . . . . . ...+.).).).#.] ",
+"+ `  .&.t  . . . . . .;.%. .%.'. . . .u '.,.q  . . . .%.;. . . . . . . . . . . . ...+.).).).#.] ",
+"+ `  .&.t  . . . . .&.,. . . .%.%. . . .,.;. . . . . .u ,.t t &. . . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .&.&.&.&.&.&.&.q  . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .t t t t t t t &. . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .t t t t t t t &. . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .t t t t t t t &. . . . . . . . ...+.).).).#.] ",
+"+ `  . . . . . . . .;.r  . . . . . . . . . . . . .t t t t t t t &. . . . . . . . ...+.).).).#.] ",
+"+ `  .^./. . . . . .q ;.,.&. . . . . . . . . . . .t t t t t t t &. . . . . . . . ...(.#.#._.*.] ",
+"+ ` ^.:.<.[.^. .}./. . .q %.{.r  . . . . . . . . .t t t t t t t &. . . . . . . . .....=.=.)...] ",
+"+ ` <.|. .^.[.<.:. . . . .u {.'.u  . . . . . . . .t t t t t t t &. . . . . . . . .....=.=.)...] ",
+"+ `  . . . . ./.|. . .u '.%.>. . . . . . . . . . .t t t t t t t &. . . . . . . . .....=.=.)...] ",
+"+ `  . . . . . . . .;.'.u  . . . . . . . . . . . .t t t t t t t &. . . . . . . . .....=.=.)...] ",
+"+ `  . . . . . . . .q  . . . . . . . . . . . . . .t t t t t t t &. . . . . . . . .....=.=.)...] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .t t t t t t t &. . . . . . . . ...1.!.!.!.2.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .t t t t t t t &. . . . . . . . ...1.~.~.~.2.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . .&.&.&.&.&.&.&.q  . . . . . . . ...(.3.=.4.#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...+.q &.5.#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...+.6.7.).#.] ",
+"+ `  . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8...#.~.#.#.] ",
+"~.o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o ",
+"                                                                                                ",
+"                                                                                                ",
+"                                                                                                ",
+"                                                                                                "};
--- rxvt-unicode-9.07.orig/debian/rxvt-unicode.menu
+++ rxvt-unicode-9.07/debian/rxvt-unicode.menu
@@ -0,0 +1,12 @@
+?package(rxvt-unicode):needs="x11" \
+   section="Applications/Terminal Emulators" \
+   longtitle="Rxvt-Unicode: terminal emulator for X" title="Rxvt-Unicode"\
+   command="urxvt" \
+   icon="/usr/share/pixmaps/urxvt.xpm"
+
+?package(rxvt-unicode):needs="x11" \
+   section="Applications/Terminal Emulators" \
+   longtitle="Rxvt-Unicode: terminal emulator for X" \
+   title="Rxvt-Unicode (Black, Xft)" \
+   command="urxvt -fn \"xft:Mono\" -rv" \
+   icon="/usr/share/pixmaps/urxvt.xpm"
--- rxvt-unicode-9.07.orig/debian/urxvtcd
+++ rxvt-unicode-9.07/debian/urxvtcd
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+urxvtc "$@"
+if [ $? -eq 2 ]; then
+    urxvtd -q -f
+    exec urxvtc "$@"
+fi
--- rxvt-unicode-9.07.orig/debian/urxvt.xpm
+++ rxvt-unicode-9.07/debian/urxvt.xpm
@@ -0,0 +1,141 @@
+/* XPM */
+static char * urxvt_32x32_xpm[] = {
+"32 32 106 2",
+"  	c None",
+". 	c #E7E7E7",
+"+ 	c #E7E3DE",
+"@ 	c #E7DFDE",
+"# 	c #29417B",
+"$ 	c #5A719C",
+"% 	c #294173",
+"& 	c #08246B",
+"* 	c #18387B",
+"= 	c #294D8C",
+"- 	c #395D9C",
+"; 	c #526DAD",
+"> 	c #6382BD",
+", 	c #7392C6",
+"' 	c #84A6DE",
+") 	c #9CBAE7",
+"! 	c #B5CFF7",
+"~ 	c #CEDBEF",
+"{ 	c #ADBECE",
+"] 	c #94B2D6",
+"^ 	c #CEDFEF",
+"/ 	c #ADBED6",
+"( 	c #C6D3DE",
+"_ 	c #52658C",
+": 	c #7371F7",
+"< 	c #394573",
+"[ 	c #B5D3F7",
+"} 	c #D6D3CE",
+"| 	c #A5A6A5",
+"1 	c #A59E9C",
+"2 	c #6B6963",
+"3 	c #B5B2AD",
+"4 	c #8496AD",
+"5 	c #CEC7C6",
+"6 	c #9CA6AD",
+"7 	c #C6C7C6",
+"8 	c #525D6B",
+"9 	c #294584",
+"0 	c #8C96BD",
+"a 	c #8C9EC6",
+"b 	c #425D9C",
+"c 	c #7392CE",
+"d 	c #8CA6DE",
+"e 	c #ADAAA5",
+"f 	c #A5A29C",
+"g 	c #211C18",
+"h 	c #C6BEBD",
+"i 	c #52618C",
+"j 	c #B5B6B5",
+"k 	c #52596B",
+"l 	c #847D7B",
+"m 	c #002063",
+"n 	c #001C52",
+"o 	c #001C5A",
+"p 	c #ADC7EF",
+"q 	c #94A2B5",
+"r 	c #8C9EAD",
+"s 	c #8CAAC6",
+"t 	c #9CAABD",
+"u 	c #8C9EB5",
+"v 	c #F7F7F7",
+"w 	c #DEDBDE",
+"x 	c #848284",
+"y 	c #8C8A8C",
+"z 	c #8C8E8C",
+"A 	c #D6D7D6",
+"B 	c #FFFFFF",
+"C 	c #E7E3E7",
+"D 	c #DEDFDE",
+"E 	c #949294",
+"F 	c #ADAAAD",
+"G 	c #EFEFEF",
+"H 	c #CECFCE",
+"I 	c #BDBEBD",
+"J 	c #4A4D4A",
+"K 	c #B5B2B5",
+"L 	c #9C9E9C",
+"M 	c #7B7D7B",
+"N 	c #393C39",
+"O 	c #9C9A9C",
+"P 	c #848684",
+"Q 	c #313031",
+"R 	c #636563",
+"S 	c #292C29",
+"T 	c #F7F3F7",
+"U 	c #949694",
+"V 	c #5A595A",
+"W 	c #EFEBEF",
+"X 	c #737173",
+"Y 	c #000000",
+"Z 	c #ADAEAD",
+"` 	c #BDBABD",
+" .	c #D6D7FF",
+"..	c #5A59FF",
+"+.	c #CECFFF",
+"@.	c #B5B2FF",
+"#.	c #DEDBFF",
+"$.	c #A5A2A5",
+"%.	c #C6C3C6",
+"&.	c #ADA6AD",
+"*.	c #7371FF",
+"=.	c #6B6DFF",
+"-.	c #5A5D5A",
+";.	c #BDB6BD",
+">.	c #CECBC6",
+",.	c #BDBAB5",
+"                                                                ",
+"                                                                ",
+"                                                                ",
+". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ",
+"@ # $ $ $ % & * = - ; > , ' ) ! ~ ~ ~ ~ { ~ ~ ~ ~ ] ^ ~ ~ ~ / ( ",
+"@ _ : : : < & * = - ; > , ' ) [ } } } } | 1 2 2 3 4 @ 1 5 1 6 ( ",
+"@ _ 7 7 7 8 9 0 a b ; > c d ) [ } } } } | e } } e 4 @ f g h 6 ( ",
+"@ i j j j k & * = - ; > , ' ) [ } 2 l } | e 1 1 3 4 @ 1 5 1 6 ( ",
+"@ m n n n o & * = - ; > , ' ) p q q q q r q q q q s t q q q u ( ",
+"@ v v v v v v v v v v v v v v v v v v v v v v v v v v w x y z A ",
+"@ B B B B B B B B B B B B B B B B B C B B B B B B B B D E F | + ",
+"@ B D G H H B H B B H G D B B w G I J I I B B B B B B D F K L + ",
+"@ B M J z N B z O H P B Q v B R B O N O O B B B B B B D M y L + ",
+"@ B M I B B B B J S T B L K I z B B R B B B B B B B B D P U F + ",
+"@ B M I B B B C J V H B T V J W B B R B B B B B B B B D P U F + ",
+"@ B M I B B B V G G J G B X M B B B X S N B B B B B B D P U F + ",
+"@ B B B B B B B B B B B B B B B B B B B B B B B B B B D P U F + ",
+"@ B B B B B B B B B B B B B B B . H H H H C B B B B B D P U F + ",
+"@ B B B B B B B B B B B B B B B M Y Y Y Y R B B B B B D P U F + ",
+"@ B B B B B B v B B B B B B B B M Y Y Y Y R B B B B B D P U F + ",
+"@ B B B B B B J L B B B B B B B M Y Y Y Y R B B B B B D O Z ` + ",
+"@  .....+.@.#.B K R $.B B B B B M Y Y Y Y R B B B B B D %.%.&.+ ",
+"@ +.B B *.=.B B L -.H B B B B B M Y Y Y Y R B B B B B D %.K L + ",
+"@ B B B B B B R K B B B B B B B M Y Y Y Y R B B B B B D %.K L + ",
+"@ B B B B B B B B B B B B B B B M Y Y Y Y R B B B B B D ;.O O + ",
+"@ B B B B B B B B B B B B B B B O Q Q Q Q P B B B B B D $.F F + ",
+"@ B B B B B B B B B B B B B B B B B B B B B B B B B B D | K L + ",
+"@ B B B B B B B B B B B B B B B B B B B B B B B B B B D O Z j + ",
+"H >.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.>.7 >.>.>.,.",
+"                                                                ",
+"                                                                ",
+"                                                                "};
--- rxvt-unicode-9.07.orig/debian/README.devanagari
+++ rxvt-unicode-9.07/debian/README.devanagari
@@ -0,0 +1,98 @@
+There are natural problems with Indic fonts like those with devanagari
+characters. You may need manual work to make them appear correctly, follow the
+documentation about font (lists).
+
+Upstream author speaks:
+======================
+
+Well, devanagari works "fine" *iff* you hapen to have exactly the font
+that rxvt-unicode looks for. But you are right that, if that is lacking,
+the old code would find your font, while the new code wouldn't.
+
+rxvt-unicode contains special code for many languages that the author has
+tested.
+
+devanagari however has no special support because I couldn't (and still
+cannot) imagine that anybody would be ok with the extremely miserable indic
+rendering that rxvt-unicode currently does.
+
+In my opinion, the devanagari rendering is currently completely unsuable,
+as the font shaping is nonexistant. It gets worse with other indic
+languages.
+
+So adding special support for finding fonts that would look broken in
+rxvt-unicode didn't seem to be a particularly important goal :)
+
+However, if you think that devanagiri rendering is good enough one could talk
+about that. adding ti is relatively difficult, though, as there is currently
+no framework to distinguish indic languages/characters from others in
+rxvt-unicode.
+
+In any case, if you don't know which font to use, then
+
+   fc-list ":lang=hi"
+
+will output a (non-exhaustive) list of fonts supporting devanagiri. You
+can add one of these to your font list. I would be happy to hear about
+your setup, btw., so I can understand how people would use devanagiri with
+rxvt-unicode, and improve the situation.
+
+> > Thus, as far as I can see, in the view of the upstream developer:
+> > 
+> > 1. The older way of displaying these fonts was too slow.
+> > 
+> > 2. For people who want this slow mechanism some solution is being
+> >    examined.
+> > 
+> > Personally, I did not find the lookup too slow but that may just be me
+> > :-)
+> 
+> Maybe. But I do not think he meant the reason of your problem. 3.7 had
+> an experimental method of font detection, which was applied for every
+> (!) available font and every char - this made urxvt unuseable ("freeze")
+> for several minutes when it has hit few lines with glyphs that were not
+> covered by any font.
+
+Well, it took only less than one second normally, but it was too
+slow because rxvt-unicode did it for every character, so some people
+experienced minutes of delay.
+
+Today one could probably get away with it, as rxvt-unicode caches negative
+hits (i..e "no font found") for every character, so the number of lookups
+would eventually be much smaller. It would still be slow, though, as many
+alphabets contain more than one character to be looked up.. :)
+
+One way to reduce that would be to classify characters into languages and
+just look for them. However, the average font quality is too low for this
+to work reliably: for example, none of the fonts in the ttf-indic-fonts
+package claim to support hindi (one claims guam support, though...).
+
+> > > Okay, let's see... 
+> > > what is the particular charset that you use?
+> > > Apparently the UTF-8 encoding but which chars?
+> > 
+> > Sorry. I should have said that. These are devanagari characters (used in
+> > Hindi, Sanskrit, Marathi ... ) the corresponding fonts on Debian are to
+> > be found in ttf-indic-fonts.
+> 
+> Not sure how to deal with it... I hope Marc has an advise.
+
+Well: "put it in your font list" :) My actual advise is always the same:
+you need to customize your font list anyways. For example, right now
+rxvt-unicode prefers japanese over chinese, which would cetrainly piss me
+off if I were chinese and had to bear these ugly japanese characters :)
+So the solution is to specify your preference of languages indirectly by
+giving a list of fonts to use. Chinese people will use a chinese font and
+be fine.
+
+With devanagari, the problem is more difficult, as I explained above, and in
+general rxvt-unicode will most often pick a rather ugly font, so the solution
+to make people pick their font is apealing a lot to me.
+
+It boils all down to my philosophy, which makes me change utilities to my
+liking, instead of relying on default or auto configuration.
+
+If font technology within and outside of rxvt-unicode improves and
+rxvt-unicode is able to adequately render devanagari, rxvt-unicode's
+default config will doubtlessly improve, also. I'd be happy to hear if you
+find devanagari rendering adqeuate, of course.
--- rxvt-unicode-9.07.orig/debian/home/decklin/Debian/rxvt-unicode/rxvt-unicode-7.7/debian/rxvt-unicode/usr/share/man/man1/urxvtcd.1
+++ rxvt-unicode-9.07/debian/home/decklin/Debian/rxvt-unicode/rxvt-unicode-7.7/debian/rxvt-unicode/usr/share/man/man1/urxvtcd.1
@@ -0,0 +1,23 @@
+.TH rxvt-unicode 1 "2006-04-27"
+.SH NAME
+urxvtcd \- start a urxvtc and/or urxvtd
+.SH SYNOPSIS
+.B urxvtcd
+.RI [ options ]
+.SH DESCRIPTION
+The
+.B urxvtcd
+script automatically starts
+.BR urxvtd (1)
+if it is not running, and then runs
+.BR urxvtc (1)
+with the specified arguments.
+.SH OPTIONS
+All options are passed to
+.BR urxvtc (1)
+as-is.
+.SH AUTHOR
+rxvt\-unicode was written by Marc Alexander Lehmann <rxvt\-unicode@schmorp.de>.
+.PP
+This manual page was written by Decklin Foster <decklin@red\-bean.com>,
+for the Debian project (but may be used by others).
--- rxvt-unicode-9.07.orig/debian/home/decklin/Debian/rxvt-unicode/rxvt-unicode-7.7/debian/rxvt-unicode-lite/usr/share/man/man1/urxvtcd.1
+++ rxvt-unicode-9.07/debian/home/decklin/Debian/rxvt-unicode/rxvt-unicode-7.7/debian/rxvt-unicode-lite/usr/share/man/man1/urxvtcd.1
@@ -0,0 +1,23 @@
+.TH rxvt-unicode 1 "2006-04-27"
+.SH NAME
+urxvtcd \- start a urxvtc and/or urxvtd
+.SH SYNOPSIS
+.B urxvtcd
+.RI [ options ]
+.SH DESCRIPTION
+The
+.B urxvtcd
+script automatically starts
+.BR urxvtd (1)
+if it is not running, and then runs
+.BR urxvtc (1)
+with the specified arguments.
+.SH OPTIONS
+All options are passed to
+.BR urxvtc (1)
+as-is.
+.SH AUTHOR
+rxvt\-unicode was written by Marc Alexander Lehmann <rxvt\-unicode@schmorp.de>.
+.PP
+This manual page was written by Decklin Foster <decklin@red\-bean.com>,
+for the Debian project (but may be used by others).
--- rxvt-unicode-9.07.orig/debian/home/decklin/Debian/rxvt-unicode/rxvt-unicode-7.7/debian/rxvt-unicode-ml/usr/share/man/man1/urxvtcd.1
+++ rxvt-unicode-9.07/debian/home/decklin/Debian/rxvt-unicode/rxvt-unicode-7.7/debian/rxvt-unicode-ml/usr/share/man/man1/urxvtcd.1
@@ -0,0 +1,23 @@
+.TH rxvt-unicode 1 "2006-04-27"
+.SH NAME
+urxvtcd \- start a urxvtc and/or urxvtd
+.SH SYNOPSIS
+.B urxvtcd
+.RI [ options ]
+.SH DESCRIPTION
+The
+.B urxvtcd
+script automatically starts
+.BR urxvtd (1)
+if it is not running, and then runs
+.BR urxvtc (1)
+with the specified arguments.
+.SH OPTIONS
+All options are passed to
+.BR urxvtc (1)
+as-is.
+.SH AUTHOR
+rxvt\-unicode was written by Marc Alexander Lehmann <rxvt\-unicode@schmorp.de>.
+.PP
+This manual page was written by Decklin Foster <decklin@red\-bean.com>,
+for the Debian project (but may be used by others).
